/* === CSS Variables & Base Styles === */
:root {
  --primary: #3a6b52;
  --primary-foreground: #f5f0eb;
  --secondary: #c8922a;
  --background: #ffffff;
  --foreground: #1a1a1a;
  --card: #f9f7f4;
  --border: #e5e0da;
  --muted-foreground: #757064;
  --input: #f0ebe5;
  --accent: #e8a357;
  --accent-foreground: #5d4e1f;

  --transition: all 0.2s ease-in-out;
  --transition-slow: all 0.3s ease-in-out;
  --radius: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

/* === Container === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--foreground);
  transition: var(--transition);
  font-size: 1.25rem;
  font-weight: 600;
}

.navbar-logo:active {
  transform: scale(0.95);
}

.logo-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.logo-text {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  color: var(--foreground);
}

.desktop-menu {
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-link {
  position: relative;
  text-decoration: none;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--foreground);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:active {
  transform: scale(0.95);
}

.mobile-toggle {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  transition: var(--transition);
  padding: 0.5rem;
}

.mobile-toggle:active {
  transform: scale(0.9);
}

.menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--background);
  border-top: 1px solid var(--border);
  animation: slideDown 0.3s ease-out;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  padding: 1rem 1.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  border-radius: 0.5rem;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  background: var(--card);
  color: var(--foreground);
}

@media (min-width: 768px) {
  .mobile-toggle {
    display: none;
  }

  .desktop-menu {
    display: block;
  }
}

/* === Animations === */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fade-in-up {
  animation: fadeInUp 0.7s ease-out forwards;
  opacity: 0;
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 4rem;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.5)), url('/images/hero-church.jpg');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.5rem;
  text-align: center;
}

.hero-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.7);
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-family: Georgia, serif;
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
  word-spacing: 100vw;

  @media (min-width: 768px) {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(245, 240, 235, 0.8);
  max-width: 28rem;
  margin: 1.5rem auto;
}

.hero-message {
  max-width: 46rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(245, 240, 235, 0.25);
  border-radius: 0.9rem;
  background: rgba(20, 26, 23, 0.28);
  backdrop-filter: blur(2px);
}

.hero-message .hero-description {
  max-width: none;
  margin: 0;
}

.hero-message .hero-description + .hero-description {
  margin-top: 1rem;
}

.hero-reference {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.7);
}

.hero-highlight {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 240, 235, 0.2);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #f2ddba;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 240, 235, 0.6);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  animation: bounce 2s infinite;
  animation-delay: 800ms;
}

.scroll-indicator:hover {
  color: var(--primary-foreground);
}

.chevron-down {
  width: 2rem;
  height: 2rem;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-foreground);
  border: 1px solid rgba(245, 240, 235, 0.3);
}

.btn-secondary:hover {
  background: rgba(245, 240, 235, 0.1);
}

.btn-secondary:active {
  transform: scale(0.95);
}

/* === Section Styling === */
.about-section,
.community-section,
.contact-section {
  padding: 6rem 0;
}

.services-section,
.events-section {
  padding: 6rem 0;
  background: var(--card);
}

.belief-section {
  padding: 6rem 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(58, 107, 82, 0.14), transparent 32%),
    linear-gradient(180deg, #f7fbf8 0%, #edf5ef 100%);
}

.belief-header {
  max-width: 54rem;
  margin-bottom: 2rem;
}

.belief-accordion {
  border: 1px solid rgba(58, 107, 82, 0.25);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 58, 40, 0.12);
  overflow: hidden;
}

.belief-accordion summary {
  cursor: pointer;
  list-style: none;
  font-family: Georgia, serif;
  font-size: 1.15rem;
  color: var(--foreground);
  padding: 1rem 1.25rem;
  background: linear-gradient(90deg, rgba(58, 107, 82, 0.17), rgba(58, 107, 82, 0.08));
  border-bottom: 1px solid transparent;
}

.belief-accordion summary:hover {
  background: linear-gradient(90deg, rgba(58, 107, 82, 0.24), rgba(58, 107, 82, 0.11));
}

.belief-accordion[open] summary {
  border-bottom-color: rgba(58, 107, 82, 0.22);
}

.belief-body {
  padding: 1.25rem;
  max-height: 70vh;
  overflow: auto;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.belief-body h3 {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: #244836;
  margin: 1rem 0 0.35rem;
}

.belief-body p {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.belief-quote {
  color: var(--foreground) !important;
  background: #eef6f0;
  border-left: 4px solid #3a6b52;
  border-radius: 0.5rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}

.belief-closing {
  margin-top: 1.25rem;
  color: #244836 !important;
  font-weight: 600;
}

.section-label {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: Georgia, serif;
  font-size: 1.875rem;
  line-height: 1.3;
  color: var(--foreground);
  margin-bottom: 1rem;

  @media (min-width: 768px) {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* === About Section === */
.about-header {
  margin-bottom: 4rem;
  max-width: 42rem;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.value-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--background);
  transition: var(--transition);
  cursor: default;
}

.value-card:hover {
  border-color: rgba(58, 107, 82, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-card:active {
  transform: scale(0.98);
}

.value-icon {
  display: inline-flex;
  padding: 0.75rem;
  background: rgba(58, 107, 82, 0.1);
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: rgba(58, 107, 82, 0.2);
}

.value-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.value-title {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.value-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* === Services Section === */
.services-grid {
  display: grid;
  gap: 3rem;
  align-items: center;

  @media (min-width: 1024px) {
    grid-template-columns: 1fr 1fr;
  }
}

.services-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1rem;
  opacity: 1;
  transform: translateX(0);
  transition: var(--transition);
}

.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services-image:hover img {
  transform: scale(1.05);
}

.services-content {
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.service-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  background: var(--background);
  border-radius: 0.75rem;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(58, 107, 82, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card:active {
  transform: scale(0.98);
}

.service-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.service-day {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(58, 107, 82, 0.1);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-day {
  background: rgba(58, 107, 82, 0.2);
}

.service-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.service-time svg {
  width: 0.75rem;
  height: 0.75rem;
}

.service-title {
  font-family: Georgia, serif;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.service-description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

.service-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1.5rem;
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition);
}

.service-location svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

/* === Events Section === */
.events-header {
  margin-bottom: 4rem;
}

.events-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;

  @media (min-width: 1024px) {
    grid-template-columns: 2fr 3fr;
  }
}

.events-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition);
}

.events-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.events-image:hover img {
  transform: scale(1.05);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  background: var(--background);
  border-radius: 0.75rem;
  transition: var(--transition);
}

.event-item:hover {
  border-color: rgba(58, 107, 82, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.event-item:active {
  transform: scale(0.98);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: rgba(58, 107, 82, 0.1);
  border-radius: 0.5rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.event-item:hover .event-date {
  background: rgba(58, 107, 82, 0.2);
}

.event-date svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.event-day {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.event-month {
  font-size: 0.625rem;
  color: rgba(58, 107, 82, 0.7);
}

.event-details {
  flex: 1;
}

.event-header-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.event-title {
  font-family: Georgia, serif;
  font-size: 0.875rem;
  color: var(--foreground);
}

.event-tag {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background: rgba(232, 163, 87, 0.2);
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--accent-foreground);
}

.event-description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

.event-arrow {
  width: 1rem;
  height: 1rem;
  color: rgba(117, 112, 100, 0.4);
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.event-item:hover .event-arrow {
  color: var(--primary);
  transform: translateX(0.25rem);
}

/* === Community Section === */
.community-header {
  text-align: center;
  margin-bottom: 4rem;
}

.community-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  max-width: 28rem;
  margin: 1.5rem auto;
}

.community-grid {
  display: grid;
  gap: 3rem;
  align-items: center;

  @media (min-width: 1024px) {
    grid-template-columns: 1fr 1fr;
  }
}

.community-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1rem;
  opacity: 1;
  transform: scale(1);
  transition: var(--transition);
}

.community-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.community-image:hover img {
  transform: scale(1.05);
}

.community-calendar {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.events-calendar {
  background: linear-gradient(180deg, #fbf8f3 0%, #f4efe8 100%);
  border-color: rgba(58, 107, 82, 0.22);
  box-shadow: 0 14px 30px rgba(23, 35, 29, 0.08);
}

.community-calendar-head {
  margin-bottom: 0.9rem;
}

.calendar-chip {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(58, 107, 82, 0.12);
  border: 1px solid rgba(58, 107, 82, 0.2);
}

.community-calendar-title {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.community-calendar-subtitle {
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.community-calendar-frame {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(58, 107, 82, 0.25);
  background: #fff;
}

.calendar-embed {
  display: block;
  width: 100%;
  min-height: 620px;
  filter: saturate(0.98) contrast(1.02);
}

.groups-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-self: center;
}

.group-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 0.75rem;
  transition: var(--transition);
  cursor: default;
}

.group-card:hover {
  border-color: rgba(58, 107, 82, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.group-card:active {
  transform: scale(0.97);
}

.group-icon {
  display: inline-flex;
  padding: 0.625rem;
  background: rgba(58, 107, 82, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.group-card:hover .group-icon {
  background: rgba(58, 107, 82, 0.2);
}

.group-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.group-title {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.group-description {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

/* === Impulse Section === */
.impulse-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fcfbf9 0%, #f4efe8 100%);
}

.impulse-header {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.impulse-layout {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.impulse-note {
  background: var(--background);
  border: 1px solid var(--border);
  border-left: 4px solid var(--secondary);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.impulse-note-title {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.impulse-note-text {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.impulse-note-verse {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
}

.daily-verse-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9f7f3 100%);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
}

#dailyVersesWrapper {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #ffffff;
  font-family: Georgia, serif;
  text-align: center;
}

#dailyVersesWrapper a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.2s;
}

#dailyVersesWrapper a:hover {
  border-bottom-color: #ffffff;
}

#dailyVersesWrapper small,
#dailyVersesWrapper .dailyVerses.bibleVerse,
#dailyVersesWrapper .dailyVerses.bibleVerse a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  border-bottom: none;
}

/* verse reference link */
#dailyVersesWrapper .dailyVerses.bibleVerse a:hover {
  color: #ffffff;
}

.impulse-videos {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.video-container {
  flex: 0 0 560px;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(58, 107, 82, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #000;
}

.responsive-iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

@media (min-width: 992px) {
  .impulse-layout {
    grid-template-columns: 0.9fr 2fr;
  }
}

@media (max-width: 900px) {
  .responsive-iframe {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .hero-message {
    padding: 1rem;
  }

  .calendar-embed {
    min-height: 520px;
  }

  .responsive-iframe {
    height: 280px;
  }

  .impulse-section {
    padding: 3.5rem 0;
  }
}

/* === Verse Banner === */
.verse-banner {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 5rem 0;
}

.verse-title {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;

  @media (min-width: 768px) {
    font-size: 1.875rem;
  }
}

.verse-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.verse-text {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.verse-reference {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* === Contact Section === */
.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  max-width: 28rem;
  margin: 1.5rem auto;
}

.contact-grid {
  display: grid;
  gap: 3rem;

  @media (min-width: 1024px) {
    grid-template-columns: 2fr 3fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition);
}

.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 0.75rem;
  transition: var(--transition);
}

.info-card:hover {
  border-color: rgba(58, 107, 82, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-card:active {
  transform: scale(0.98);
}

.info-icon {
  display: inline-flex;
  padding: 0.625rem;
  background: rgba(58, 107, 82, 0.1);
  border-radius: 0.5rem;
  transition: var(--transition);
}

.info-card:hover .info-icon {
  background: rgba(58, 107, 82, 0.2);
}

.info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.info-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.info-content {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

/* === Contact Form === */
.contact-form {
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition);
}

.form-group-row {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;

  @media (min-width: 640px) {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--input);
  background: var(--background);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(58, 107, 82, 0.1);
}

.form-group textarea {
  resize: none;
  font-family: inherit;
}

.submit-icon {
  width: 1rem;
  height: 1rem;
}

.submit-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  display: none;
}

.submit-message.success {
  display: block;
  background: rgba(58, 107, 82, 0.1);
  color: var(--primary);
}

/* === Footer === */
.footer {
  border-top: 1px solid var(--border);
  background: var(--card);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;

  @media (min-width: 768px) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: var(--foreground);
}

.footer-logo svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.footer-description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
  max-width: 20rem;
}

.footer-links,
.footer-verse {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links h4,
.footer-verse h4 {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--foreground);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--foreground);
}

.footer-verse-text {
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
  border-left: 2px solid rgba(58, 107, 82, 0.3);
  padding-left: 1rem;
}

.footer-verse-ref {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* === Responsive Design === */
@media (max-width: 767px) {
  .navbar {
    padding-bottom: 0;
  }

  .services-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .events-image {
    aspect-ratio: 16 / 9;
  }

  .hero-title {
    font-size: 2rem;
  }
}
