/* ============================================================
   NLF Coimbatore – Mobile-First Responsive Stylesheet
   ============================================================
   Breakpoints:
     sm  : 640px   (large phone / small tablet)
     md  : 768px   (tablet portrait)
     lg  : 1024px  (tablet landscape / laptop)
     xl  : 1280px  (desktop)
     2xl : 1536px  (large monitors)
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cardo:ital,wght@0,400;0,700;1,400&display=swap");

/* ---------- CSS Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  background: #010d4d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ---------- CSS Variables ---------- */
:root {
  /* Colors */
  --navy: #010d4d;
  --navy-70: rgba(1, 13, 77, 0.7);
  --royal: #2155cd;
  --blue: #4f63c9;
  --bright-blue: #0028ed;
  --dark: #1b1c24;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --light-gray: #eaeaea;
  --gray: #b0b2b8;
  --muted: #9b9eac;
  --dark-text: #2c2d2e;
  --dark-blue: #354286;
  --red: #ff4040;

  /* Belief card colors */
  --card-salmon: rgb(251, 131, 104);
  --card-blue: rgb(10, 161, 221);
  --card-green: rgb(27, 191, 105);
  --card-gray: rgb(176, 178, 184);
  --card-pink: rgb(242, 102, 143);
  --card-gold: rgb(203, 175, 18);
  --card-lavender: rgb(153, 163, 219);
  --card-bright-blue: rgb(0, 138, 252);

  /* Schedule card colors */
  --sched-sun: rgba(0, 138, 252, 0.5);
  --sched-wed: rgba(53, 66, 134, 0.5);
  --sched-thu: rgba(115, 195, 255, 0.5);
  --sched-fri: rgba(115, 195, 255, 0.5);

  /* Fonts */
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-accent: "Playfair Display", serif;
  --font-scripture: "Cardo", serif;

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  /* Layout */
  --max-width: 980px;
  --container-padding: 20px;
}

@media (min-width: 768px) {
  :root {
    --container-padding: 32px;
  }
}

@media (min-width: 1280px) {
  :root {
    --container-padding: 40px;
  }
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}

/* ---------- Fluid Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

/* Mobile-first sizes, scaled up at breakpoints */
h1 {
  font-size: clamp(36px, 8vw, 75px);
  letter-spacing: -0.06em;
}
h2 {
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.3;
}
h3 {
  font-size: clamp(24px, 4vw, 40px);
}
h4 {
  font-size: clamp(18px, 3vw, 26px);
  letter-spacing: normal;
  text-transform: none;
}
h5 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.4;
}
h6 {
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: -0.02em;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 5vw, 40px);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.body-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 1.7;
}

.body-text--small {
  font-size: 15px;
  line-height: 1.5;
}

.scripture-text {
  font-family: var(--font-scripture);
  font-style: italic;
  font-size: clamp(18px, 3vw, 25px);
  line-height: 1.6;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid var(--light-gray);
  color: var(--light-gray);
  background: transparent;
  border-radius: 4px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn--blue {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.btn--blue:hover {
  background: var(--muted);
  border-color: var(--muted);
}

.btn--small {
  padding: 10px 24px;
  font-size: 12px;
}

/* ---------- Background Helpers ---------- */
.bg-video-wrapper {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.bg-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-video-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.bg-image-wrapper {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-image-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
}

/* Content wrappers */
.content-wrapper--navy-70 {
  background: var(--navy-70);
  position: relative;
  z-index: 0;
}

.content-wrapper--white {
  background: var(--white);
  position: relative;
  z-index: 0;
}

.content-wrapper--gray {
  background: var(--light-gray);
  position: relative;
  z-index: 0;
}

/* Video gap */
.video-gap {
  height: 120px;
  background: transparent;
  position: relative;
  z-index: 0;
}

@media (min-width: 768px) {
  .video-gap {
    height: 200px;
  }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(1, 13, 77, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

@media (min-width: 768px) {
  .site-header .container {
    height: 64px;
    justify-content: flex-end;
  }
}

/* Nav list */
.nav-list {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 13, 77, 0.97);
  padding: var(--space-lg) var(--container-padding);
  gap: 4px;
}

.nav-list.open {
  display: flex;
}

.nav-list a {
  display: block;
  padding: 14px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .nav-list {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    gap: 4px;
  }

  .nav-list a {
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 6px;
  }
}

@media (min-width: 1024px) {
  .nav-list a {
    font-size: 15px;
    padding: 8px 18px;
  }
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 80px var(--container-padding) 60px;
  position: relative;
}

.hero > div {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero--short {
  min-height: 60svh;
}

@media (min-width: 768px) {
  .hero--short {
    min-height: 50vh;
  }
}

.hero-logo {
  width: 50px;
  height: 50px;
  margin: 0 0 var(--space-sm);
  display: block;
}

@media (min-width: 768px) {
  .hero-logo {
    width: 65px;
    height: 65px;
  }
}

.hero h4 {
  font-size: clamp(16px, 2.5vw, 22px);
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1 {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  max-width: 900px;
  margin: 0;
  letter-spacing: 0.04em;
}

.hero h2 {
  font-size: clamp(32px, 6vw, 50px);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.04em;
}

.hero-divider {
  width: 60px;
  height: 4px;
  background: var(--white);
  margin: var(--space-md) 0;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .hero-divider {
    width: 80px;
    height: 6px;
  }
}

.scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: float 2.5s ease-in-out infinite;
  opacity: 0.7;
}

.scroll-arrow svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
}

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

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: var(--space-xl) 0;
  position: relative;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }
}

.section--transparent {
  background: transparent;
}
.section--overlay {
  background: var(--navy-70);
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .two-col {
    gap: var(--space-xl);
  }
}

/* ============================================================
   SLIDESHOW (Home)
   ============================================================ */
.slideshow {
  position: relative;
  overflow: hidden;
}

.slideshow-slide {
  min-height: 300px;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--container-padding);
  position: relative;
}

@media (min-width: 768px) {
  .slideshow-slide {
    min-height: auto;
    height: 489px;
    padding: var(--space-lg) var(--container-padding);
  }
}

.slideshow-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(325deg, #0028ed 0%, #ed1566 100%);
  opacity: 0.82;
}

.slideshow-slide > * {
  position: relative;
  z-index: 1;
}

.slideshow-content {
  text-align: center;
  max-width: 700px;
  width: 100%;
}

.slideshow-content .service-heading {
  font-family: sans-serif;
  font-size: clamp(22px, 4vw, 35px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-xl);
  letter-spacing: normal;
}

.slideshow-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  text-align: left;
}

@media (min-width: 640px) {
  .slideshow-services {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg) 80px;
  }
}

.slideshow-services .service-item {
  padding: 0;
}

.slideshow-services .service-title {
  font-family: sans-serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2px;
}

.slideshow-services .service-time {
  font-family: sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.3;
  opacity: 0.85;
}

/* Carousel dots (decorative) */
.slideshow-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: var(--space-md);
}

.slideshow-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.slideshow-dots span.active {
  background: var(--white);
}

/* ============================================================
   SCHEDULE CARDS
   ============================================================ */
.schedule-cards {
  display: grid;
  grid-template-columns: 1fr;
}

.home-shared-bg .schedule-cards {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.schedule-card {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  color: var(--white);
  transition: all 0.25s ease;
  display: block;
}

.schedule-card:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.schedule-card--sun {
  background: var(--sched-sun);
}
.schedule-card--wed {
  background: var(--sched-wed);
}
.schedule-card--thu {
  background: var(--sched-thu);
}
.schedule-card--fri {
  background: var(--sched-fri);
}

.schedule-card h2 {
  margin-bottom: var(--space-xs);
  font-size: clamp(32px, 5vw, 40px);
}

.schedule-card h5 {
  margin-bottom: var(--space-sm);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: none;
  font-size: clamp(18px, 2.5vw, 24px);
}

.schedule-card .arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.2s ease;
}

.schedule-card:hover .arrow-btn {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ============================================================
   SCRIPTURE SECTION (Home)
   ============================================================ */
.scripture-section {
  padding: var(--space-xl) var(--container-padding);
  text-align: center;
  background: var(--light-gray);
}

@media (min-width: 768px) {
  .scripture-section {
    padding: var(--space-2xl) var(--container-padding);
  }
}

.scripture-section .decorative-gif {
  width: 50px;
  height: auto;
  margin: 0 auto var(--space-md);
}

.scripture-section blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 4.5vw, 42px);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto var(--space-sm);
  color: var(--gray);
}

.scripture-section cite {
  font-size: 15px;
  color: var(--muted);
  font-style: normal;
  font-family: var(--font-body);
}

/* Scripture block (service pages) */
.scripture-block {
  padding: var(--space-xl) var(--container-padding);
  text-align: center;
}

@media (min-width: 768px) {
  .scripture-block {
    padding: var(--space-2xl) var(--container-padding);
  }
}

.scripture-block blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 4vw, 38px);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto var(--space-sm);
}

.scripture-block cite {
  font-size: 16px;
  font-style: normal;
  opacity: 0.7;
}

/* ============================================================
   BELIEFS GRID (About Us)
   ============================================================ */
.beliefs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

@media (min-width: 640px) {
  .beliefs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .beliefs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.belief-card {
  padding: var(--space-md);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .belief-card {
    padding: 28px 24px;
    min-height: 200px;
  }
}

.belief-card h4 {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 10px;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 800;
}

.belief-card p {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.95;
}

.belief-card--salmon {
  background: var(--card-salmon);
}
.belief-card--blue {
  background: var(--card-blue);
}
.belief-card--green {
  background: var(--card-green);
}
.belief-card--gray {
  background: var(--card-gray);
}
.belief-card--pink {
  background: var(--card-pink);
}
.belief-card--gold {
  background: var(--card-gold);
}
.belief-card--lavender {
  background: var(--card-lavender);
}
.belief-card--bright {
  background: var(--card-bright-blue);
}

/* ============================================================
   VISION / MISSION (About Us)
   ============================================================ */
.vision-mission {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--container-padding);
}

.vision-mission h3 {
  margin-bottom: var(--space-lg);
}

.vision-mission .vision-label,
.vision-mission .mission-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: var(--space-xs);
}

.vision-mission p {
  margin-bottom: var(--space-md);
  font-size: 16px;
}

.vision-mission .mission-list {
  text-align: left;
  margin: var(--space-sm) auto;
  max-width: 520px;
}

.vision-mission .mission-list li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 16px;
}

.vision-mission .mission-list li::before {
  content: "\2026";
  position: absolute;
  left: 0;
}

/* ============================================================
   SERVICE PAGES (English / Hindi / Tamil)
   ============================================================ */
.service-hero {
  min-height: 80svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px var(--container-padding) 60px;
  position: relative;
}

@media (min-width: 768px) {
  .service-hero {
    min-height: 85vh;
  }
}

.service-hero h4 {
  font-size: clamp(16px, 3vw, 26px);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.service-hero h1 {
  font-size: clamp(48px, 10vw, 80px);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  line-height: 1.1;
}

.service-hero .lang-text {
  font-weight: 800;
  display: block;
}

/* Scripture slideshow */
.service-scripture {
  padding: var(--space-xl) var(--container-padding);
  text-align: center;
}

.service-scripture .container {
  max-width: 700px;
}

.service-scripture blockquote {
  font-family: var(--font-scripture);
  font-style: italic;
  font-size: clamp(18px, 3vw, 25px);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.service-scripture .description {
  font-family: var(--font-scripture);
  font-size: clamp(16px, 2.5vw, 22px);
  line-height: 1.6;
  margin-top: var(--space-md);
  opacity: 0.9;
}

.service-scripture cite {
  font-family: var(--font-scripture);
  font-style: italic;
  font-size: 18px;
  opacity: 0.7;
}

/* Service info */
.service-info {
  padding: var(--space-xl) var(--container-padding);
  text-align: center;
}

.service-info .container {
  max-width: 700px;
}

.service-info .day-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 40px);
  text-transform: none;
  margin-bottom: var(--space-md);
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.service-info p {
  margin-bottom: var(--space-sm);
}

/* ============================================================
   SERVICES & MINISTRIES PAGE
   ============================================================ */
.ministry-section {
  padding: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .ministry-section {
    padding: var(--space-xl) 0;
  }
}

.ministry-section .two-col {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.ministry-section--reverse .two-col {
  direction: rtl;
}
.ministry-section--reverse .two-col > * {
  direction: ltr;
}

.ministry-img {
  width: 100%;
  max-width: 488px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto;
}

.ministry-text h3 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

.ministry-text p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.ministry-text .schedule {
  font-weight: 600;
  margin-top: 10px;
}

.ministry-text .youtube-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.ministry-text .youtube-link:hover {
  opacity: 0.7;
}

.ministry-text .youtube-link img {
  width: 40px;
  height: auto;
}

/* Dark text on white bg */
.content-wrapper--white .ministry-text h3,
.content-wrapper--white .ministry-text p,
.content-wrapper--white .ministry-text .youtube-link,
.content-wrapper--white .intro-section p,
.content-wrapper--white .intro-section .heart-icon {
  color: var(--dark-blue);
}

.content-wrapper--white .hero h2 {
  color: var(--white);
}

/* ============================================================
   VISIT US PAGE
   ============================================================ */
.directions-section {
  padding: var(--space-lg) var(--container-padding);
}

@media (min-width: 768px) {
  .directions-section {
    padding: var(--space-xl) var(--container-padding);
  }
}

.directions-section .container {
  max-width: 700px;
}

.directions-section h6.directions-label {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--bright-blue);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
}

.directions-section h6.directions-question {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--blue);
  text-shadow: 0 0 6px #fff;
  margin-bottom: var(--space-sm);
  text-transform: none;
}

.directions-section p {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.5;
}

.directions-section .directions-list {
  margin: var(--space-md) 0;
}

.directions-section .directions-list li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.5;
}

.directions-section .directions-list li::before {
  content: "\2026";
  position: absolute;
  left: 0;
}

.directions-section .btn {
  margin-bottom: var(--space-md);
}

/* Schedule */
.service-schedule {
  padding: var(--space-lg) var(--container-padding);
}

@media (min-width: 768px) {
  .service-schedule {
    padding: var(--space-xl) var(--container-padding);
  }
}

.service-schedule .container {
  max-width: 700px;
}

.service-schedule h6 {
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.service-schedule p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.7;
}

.cancelled {
  color: var(--red);
  font-weight: 600;
}

/* Gray wrapper text colors */
.content-wrapper--gray .directions-section h6.directions-label {
  color: var(--bright-blue);
}
.content-wrapper--gray .directions-section h6.directions-question {
  color: var(--blue);
}
.content-wrapper--gray .service-schedule h6,
.content-wrapper--gray .service-schedule p,
.content-wrapper--gray .section h6,
.content-wrapper--gray .section p,
.content-wrapper--gray .section a {
  color: var(--dark-blue);
}

/* ============================================================
   INSTAGRAM LINK
   ============================================================ */
.instagram-section {
  text-align: center;
  padding: var(--space-lg) var(--container-padding);
}

.instagram-section .btn {
  font-size: 14px;
  padding: 14px 36px;
}

/* ============================================================
   INTRO / HEART SECTION
   ============================================================ */
.intro-section {
  text-align: center;
  padding: var(--space-xl) var(--container-padding);
}

.intro-section p {
  max-width: 700px;
  margin: 0 auto var(--space-md);
  font-size: 16px;
  line-height: 1.7;
}

.heart-icon {
  display: inline-block;
  font-size: 24px;
  margin-top: var(--space-sm);
}

/* ============================================================
   "THE WORD" SECTION
   ============================================================ */
.word-section {
  background: rgb(79, 99, 201);
  padding: var(--space-xl) var(--container-padding);
  text-align: center;
}

/* Inside shared bg wrapper on home page, word-section is a centered blue box */
.home-shared-bg .word-section {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 768px) {
  .word-section {
    padding: var(--space-2xl) var(--container-padding);
  }
}

.home-shared-bg .word-section h5,
.home-shared-bg .word-section p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.word-section h2 {
  margin-bottom: 10px;
}

.word-section h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16px, 2.5vw, 22px);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
  text-transform: none;
}

.word-section p {
  margin-bottom: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   DIRECTIONS (Home)
   ============================================================ */
.home-directions {
  padding: var(--space-xl) var(--container-padding);
  background: var(--light-gray);
}

.home-directions .container {
  max-width: var(--max-width);
}

.home-directions h6.directions-label {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: var(--space-xs);
  color: var(--bright-blue);
  letter-spacing: 0.05em;
}

.home-directions h6.directions-question {
  font-size: clamp(15px, 1.8vw, 18px);
  margin-bottom: var(--space-lg);
  color: var(--blue);
  text-shadow: 0 0 6px #fff;
  text-transform: none;
}

.home-directions .directions-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 768px) {
  .home-directions .directions-body {
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-lg);
    align-items: center;
  }
}

.home-directions .directions-body p {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 15px;
  line-height: 1.6;
}

.home-directions .directions-arrow {
  display: none;
  color: var(--blue);
}

@media (min-width: 768px) {
  .home-directions .directions-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.home-directions .directions-arrow svg {
  width: 40px;
  height: 40px;
  stroke: var(--blue);
  stroke-width: 2;
  fill: none;
}

.home-directions .btn {
  margin: var(--space-md) 0;
}

.home-directions .steps li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: var(--blue);
  font-size: 15px;
  line-height: 1.6;
}

.home-directions .steps li::before {
  content: "\2026";
  position: absolute;
  left: 0;
}

/* ============================================================
   SHARED BG WRAPPER (Home: stand-for + schedule + word)
   ============================================================ */
.home-shared-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-shared-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 13, 77, 0.15);
  z-index: 0;
}

.home-shared-bg > * {
  position: relative;
  z-index: 1;
}

/* ============================================================
   "WHAT WE STAND FOR" (Home)
   ============================================================ */
.stand-for-section {
  position: relative;
  min-height: auto;
}

.stand-for-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .stand-for-content {
    grid-template-columns: 1fr 1fr;
  }
}

.stand-for-left {
  background: rgb(33, 85, 205);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg) var(--container-padding);
}

@media (min-width: 768px) {
  .stand-for-left {
    padding: var(--space-xl) var(--space-lg);
  }
}

.stand-for-left h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.04em;
}

.stand-for-right {
  background: rgba(33, 85, 205, 0.88);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg) var(--container-padding);
}

@media (min-width: 768px) {
  .stand-for-right {
    padding: var(--space-xl) var(--space-lg);
  }
}

.stand-for-right p {
  margin-bottom: var(--space-sm);
  font-size: 15px;
  line-height: 1.7;
}

.stand-for-right .btn {
  align-self: flex-start;
  margin-top: var(--space-sm);
}

/* ============================================================
   "ONE BIG FAMILY" (Home)
   ============================================================ */
.family-section {
  padding: var(--space-xl) var(--container-padding);
  background: var(--white);
}

@media (min-width: 768px) {
  .family-section {
    padding: var(--space-2xl) var(--container-padding);
  }
}

.family-section .container {
  max-width: var(--max-width);
}

.family-section .family-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 768px) {
  .family-section .family-grid {
    grid-template-columns: 1fr 1.6fr;
    gap: var(--space-xl);
    align-items: center;
  }
}

.family-section h2 {
  color: var(--royal);
  margin-bottom: 0;
  font-size: clamp(36px, 6vw, 52px);
  line-height: 1.15;
}

.family-section .col-text p {
  margin-bottom: var(--space-sm);
  color: var(--dark-blue);
  font-size: 15px;
  line-height: 1.7;
}

.family-section .btn {
  border-color: var(--dark-blue);
  color: var(--dark-blue);
  margin-top: var(--space-sm);
}

.family-section .btn:hover {
  background: var(--dark-blue);
  color: var(--white);
  border-color: var(--dark-blue);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: var(--space-xl) 0 var(--space-md);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

.footer-info h6 {
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.footer-divider {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: var(--space-sm);
}

.footer-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  line-height: 1.5;
}

.footer-info a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-info a:hover {
  color: var(--white);
}

/* Social bar */
.social-bar {
  display: flex;
  gap: 12px;
  margin-top: var(--space-md);
}

.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.social-bar a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.social-bar img {
  width: 18px;
  height: 18px;
}

/* Footer form */
.footer-form h5 {
  font-size: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: none;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease;
}

.footer-form input:focus,
.footer-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-form textarea {
  height: 100px;
  resize: vertical;
}

.footer-form .btn {
  margin-top: 4px;
}

.footer-copyright {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */

/* Reverse layout only on tablet+ */
@media (max-width: 767px) {
  .ministry-section--reverse .two-col {
    direction: ltr;
  }
  .stand-for-content {
    grid-template-columns: 1fr;
  }

  .ministry-img {
    max-width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }

  /* Service page hero text scaling */
  .service-hero h1 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .service-hero .lang-text {
    font-size: clamp(40px, 12vw, 60px) !important;
  }
}

/* Large monitor adjustments */
@media (min-width: 1536px) {
  :root {
    --max-width: 1100px;
    --container-padding: 48px;
  }
}
