/* ══════════════════════════════════════════════════════════
   JOHANNES ENTERPRISE — styles.css
   Fonts: Cormorant Garamond (display) + DM Sans (body)
══════════════════════════════════════════════════════════ */

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  /* Brand */
  --primary:           #1A1A1A;
  --primary-dark:      #000000;
  --primary-light:     #2E2E2E;
  --accent-red:        #C62828;
  --accent-red-dark:   #8E1C1C;
  --accent-red-light:  #E57373;
  --accent-green:      #2E7D32;

  /* Neutrals */
  --white:       #FFFFFF;
  --light:       #F7F6F4;
  --light-mid:   #EEECE9;
  --text-dark:   #1A1A1A;
  --text-mid:    #444444;
  --text-muted:  #777777;
  --border:      #E0DEDA;
  --shadow-sm:   rgba(0,0,0,0.06);
  --shadow-md:   rgba(0,0,0,0.11);
  --shadow-lg:   rgba(0,0,0,0.18);

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-py: 90px;

  /* Motion */
  --ease:       cubic-bezier(.25,.46,.45,.94);
  --ease-out:   cubic-bezier(0,.6,.4,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
p { color: var(--text-mid); }

/* ── Scroll Reveal Animations ────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

/* ── Section Layout Helpers ──────────────────────────────── */
.section-header {
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 12px;
}

.section-eyebrow.light {
  color: var(--accent-red-light);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--accent-red);
}

.section-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--accent-red), transparent);
  border: none;
  width: 72px;
  margin-bottom: 20px;
}

.section-divider.mx-auto {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.section-subtext {
  color: var(--text-muted);
  max-width: 580px;
  margin: 12px auto 0;
  font-size: 16px;
}

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.navbar {
  padding: 14px 0;
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all .35s var(--ease);
}

.navbar.scrolled {
  padding: 9px 0;
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px var(--shadow-sm);
}

/* Brand */
.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: 6px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
  letter-spacing: 2px;
}

.brand-sub {
  font-size: 10px;
  color: var(--accent-red);
  letter-spacing: 4.5px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Nav links */
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-mid) !important;
  margin: 0 8px;
  padding: 6px 2px !important;
  position: relative;
  letter-spacing: .3px;
  transition: color .25s;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  background: var(--accent-red);
  transition: width .3s var(--ease);
  border-radius: 2px;
}

.nav-link:hover { color: var(--primary) !important; }
.nav-link:hover::after { width: 100%; }

.nav-link.active {
  color: var(--accent-red-dark) !important;
  font-weight: 600;
}

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

/* Mobile hamburger */
.navbar-toggler {
  border: none;
  padding: 6px;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: .3s;
}

.navbar-toggler:focus { box-shadow: none; }

/* CTA Button */
.btn-work {
  background: var(--accent-red);
  color: white !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .3px;
  transition: .3s var(--ease);
  border: none;
}

.btn-work:hover {
  background: var(--accent-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(198,40,40,.3);
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  width: 100%;
  overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-item { height: 100%; }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s linear;
}

.carousel-item.active .hero-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(20,20,20,.88) 0%,
    rgba(20,20,20,.55) 60%,
    rgba(20,20,20,.35) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  color: white;
  max-width: 820px;
  width: 90%;
  padding: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(198,40,40,.18);
  border: 1px solid rgba(198,40,40,.45);
  color: #ffcccc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5.5vw, 58px);
  line-height: 1.15;
  margin-bottom: 22px;
  color: white;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-red-light);
}

.hero-subtext {
  color: rgba(255,255,255,.85);
  font-size: clamp(15px, 1.8vw, 18px);
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.hero-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* Scroll Cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-cue span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-cue span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  animation: scrollCue 1.8s infinite;
}

@keyframes scrollCue {
  0%   { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

/* Hero carousel indicators */
.carousel-indicators {
  bottom: 60px;
}

.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  transition: .3s;
}

.carousel-indicators .active {
  background: white;
  width: 24px;
  border-radius: 4px;
}

/* Hero reveal animations (triggered on load) */
.reveal-up { transition: opacity .8s var(--ease), transform .8s var(--ease); }

/* ══════════════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════════════ */
.stats-strip {
  background: var(--primary);
  padding: 0;
}

.stats-row { border-top: 0; }

.stat-item {
  padding: 36px 20px;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: white;
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent-red-light);
  font-weight: 700;
  vertical-align: super;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
  margin-bottom: 0;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   ABOUT / WHO WE ARE
══════════════════════════════════════════════════════════ */
.who-we-are {
  background: var(--light);
  padding: var(--section-py) 0;
}

.who-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.highlight {
  color: var(--primary);
  font-weight: 600;
}

/* Image with floating badge */
.who-image-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.who-image {
  border-radius: 14px;
  box-shadow: 0 24px 56px var(--shadow-lg);
  transition: transform .5s var(--ease);
  width: 100%;
  object-fit: cover;
  max-height: 460px;
}

.who-image:hover { transform: scale(1.02); }

.who-image-badge {
  position: absolute;
  bottom: 20px;
  left: -18px;
  background: var(--accent-red);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(198,40,40,.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Value Cards */
.value-card {
  background: white;
  padding: 36px 28px;
  border-radius: 14px;
  box-shadow: 0 8px 28px var(--shadow-sm);
  transition: all .35s var(--ease);
  height: 100%;
  border: 1px solid var(--border);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px var(--shadow-md);
  border-color: transparent;
}

.value-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(198,40,40,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background .3s;
}

.value-card:hover .value-icon-wrap {
  background: var(--accent-red);
}

.value-icon {
  font-size: 26px;
  color: var(--accent-red);
  transition: color .3s;
}

.value-card:hover .value-icon { color: white; }

.value-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.btn-primary-custom {
  background: var(--accent-red);
  border: 2px solid var(--accent-red);
  padding: 12px 28px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3px;
  transition: all .3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  background: var(--accent-red-dark);
  border-color: var(--accent-red-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(198,40,40,.35);
}

.btn-outline-custom {
  border: 2px solid rgba(255,255,255,.7);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: all .3s var(--ease);
}

.btn-outline-custom:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

.btn-outline-dark-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: .3s var(--ease);
}

.btn-outline-dark-custom:hover {
  background: var(--primary);
  color: white;
}

/* ══════════════════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════════════════ */
.services-section {
  background: white;
  padding: var(--section-py) 0;
}

.service-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px var(--shadow-sm);
  transition: all .38s var(--ease);
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 52px var(--shadow-md);
  border-color: transparent;
}

.card-top {
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-red));
  flex-shrink: 0;
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.service-card:hover .service-img { transform: scale(1.06); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,.45), transparent);
  opacity: 0;
  transition: opacity .38s;
}

.service-card:hover .service-img-overlay { opacity: 1; }

.service-body {
  padding: 24px 22px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(198,40,40,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background .3s;
}

.service-card:hover .service-icon-wrap { background: var(--accent-red); }

.service-icon {
  font-size: 22px;
  color: var(--accent-red);
  transition: color .3s;
}

.service-card:hover .service-icon { color: white; }

.service-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.service-body p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex: 1;
  line-height: 1.65;
}

.btn-service {
  background: var(--primary);
  color: white;
  border-radius: 25px;
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: all .3s var(--ease);
  margin-top: auto;
  cursor: pointer;
}

.btn-service:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: white;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   FORM MODALS (Booking + Get Involved)
══════════════════════════════════════════════════════════ */
.service-form-container,
.involved-form-container {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: backdropIn .3s var(--ease);
}

@keyframes backdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.service-form-box,
.involved-form-box {
  background: white;
  padding: 36px 32px;
  border-radius: 16px;
  width: 92%;
  max-width: 440px;
  position: relative;
  animation: modalSlideIn .35s var(--ease-out);
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

.service-form-box h4,
.involved-form-box h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 22px;
}

/* Form Groups with labels */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.form-group label span { color: var(--accent-red); }

.service-form-box input,
.service-form-box textarea,
.involved-form-box input,
.involved-form-box textarea,
.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-dark);
  background: var(--light);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}

.service-form-box input:focus,
.service-form-box textarea:focus,
.involved-form-box input:focus,
.involved-form-box textarea:focus,
.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(198,40,40,.12);
  background: white;
}

.service-form-box input[readonly] {
  background: var(--light-mid);
  color: var(--text-muted);
  cursor: not-allowed;
}

textarea { resize: vertical; min-height: 90px; }

.form-message,
.form-success {
  font-size: 14px;
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
  min-height: 20px;
  color: var(--accent-green);
}

/* Bootstrap form-control override */
.form-control {
  border: 1.5px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 11px 14px !important;
  font-family: var(--font-body) !important;
  font-size: 14.5px !important;
  background: var(--light) !important;
  transition: border-color .25s, box-shadow .25s !important;
}

.form-control:focus {
  border-color: var(--accent-red) !important;
  box-shadow: 0 0 0 3px rgba(198,40,40,.12) !important;
  background: white !important;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s, color .2s;
}

.close-modal:hover {
  background: var(--light);
  color: var(--primary);
}

/* ══════════════════════════════════════════════════════════
   PROGRAMS SECTION
══════════════════════════════════════════════════════════ */
.programs-section {
  background: var(--light);
  padding: var(--section-py) 0;
}

.program-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px var(--shadow-sm);
  transition: all .4s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 52px var(--shadow-md);
  border-color: transparent;
}

.program-img-wrap { overflow: hidden; }

.program-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.program-card:hover .program-img { transform: scale(1.07); }

.program-content {
  padding: 22px 20px 26px;
  flex: 1;
}

.program-content h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.program-icon {
  color: var(--accent-red);
  font-size: 18px;
}

.program-content p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   GET INVOLVED
══════════════════════════════════════════════════════════ */
.get-involved-section {
  padding: var(--section-py) 0;
  background: linear-gradient(145deg, var(--primary) 0%, #2a0a0a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.get-involved-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}

.cta-subtext {
  max-width: 600px;
  margin: 0 auto 8px;
  color: rgba(255,255,255,.75);
  font-size: 16px;
}

.cta-card {
  background: white;
  color: var(--text-dark);
  padding: 36px 30px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
  transition: all .38s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 28px 60px rgba(0,0,0,.35);
}

.cta-icon-wrap {
  width: 68px;
  height: 68px;
  background: rgba(198,40,40,.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background .3s;
}

.cta-card:hover .cta-icon-wrap { background: var(--accent-red); }

.cta-icon {
  font-size: 30px;
  color: var(--accent-red);
  transition: color .3s;
}

.cta-card:hover .cta-icon { color: white; }

.cta-card-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.cta-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
  flex: 1;
}

.cta-btn {
  background: var(--primary);
  color: white;
  border-radius: 25px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: .3s var(--ease);
  border: none;
  cursor: pointer;
  margin-top: auto;
}

.cta-btn:hover {
  background: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(198,40,40,.3);
  color: white;
}

/* ══════════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════════ */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--light);
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
}

.contact-form-box {
  background: white;
  padding: 38px 36px;
  border-radius: 16px;
  box-shadow: 0 12px 40px var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form-box .form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon-wrap {
  width: 46px;
  height: 46px;
  background: rgba(198,40,40,.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrap i {
  font-size: 20px;
  color: var(--accent-red);
}

.contact-item-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item address {
  font-style: normal;
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.6;
}

.contact-item a {
  color: var(--accent-red);
  transition: color .2s;
}

.contact-item a:hover { color: var(--accent-red-dark); }

.social-media a {
  font-size: 20px;
  margin: 0 10px;
  color: var(--primary);
  transition: color .3s, transform .3s;
  display: inline-flex;
}

.social-media a:hover {
  color: var(--accent-red);
  transform: translateY(-3px);
}

.map-container {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 36px var(--shadow-md);
  border: 1px solid var(--border);
}

.map-container iframe { display: block; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,.8);
  padding: 72px 0 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  border-radius: 6px;
  object-fit: contain;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: .5px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
  line-height: 1.7;
}

.footer-address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.9;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-address i { color: var(--accent-red-light); margin-right: 6px; }
.footer-address a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-address a:hover { color: var(--accent-red-light); }

.footer-heading {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 9px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
}

.footer-links a {
  color: rgba(255,255,255,.55);
  transition: color .2s, padding-left .2s;
}

.footer-links a:hover {
  color: var(--accent-red-light);
  padding-left: 4px;
}

.footer-social a {
  color: rgba(255,255,255,.6);
  font-size: 18px;
  margin-right: 14px;
  transition: color .2s, transform .2s;
  display: inline-flex;
}

.footer-social a:hover {
  color: var(--accent-red-light);
  transform: translateY(-3px);
}

.footer hr {
  border-color: rgba(255,255,255,.1);
  margin: 40px 0 20px;
}

.footer-bottom .copyright {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   FLOATING BUTTONS + SCROLL TOP
══════════════════════════════════════════════════════════ */
.float-whatsapp,
.float-email {
  position: fixed;
  right: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
  transition: transform .3s var(--ease), box-shadow .3s;
}

.float-whatsapp { bottom: 90px; background: #25D366; }
.float-email    { bottom: 30px; background: var(--accent-red); }

.float-whatsapp:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(37,211,102,.4); color: white; }
.float-email:hover    { transform: scale(1.1); box-shadow: 0 10px 28px rgba(198,40,40,.4); color: white; }

.scroll-top {
  position: fixed;
  bottom: 158px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
  transition: background .3s, transform .3s;
}

.scroll-top:hover {
  background: var(--accent-red);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  :root { --section-py: 70px; }

  .navbar-collapse {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 10px;
    box-shadow: 0 12px 36px var(--shadow-md);
  }

  .nav-link { margin: 4px 0; padding: 8px 0 !important; }

  .who-image-badge { left: 10px; }
}

@media (max-width: 767px) {
  :root { --section-py: 56px; }

  .hero-title  { font-size: 28px; }
  .hero-subtext { font-size: 15px; }
  .hero-content { width: 92%; }

  .brand-icon  { height: 38px; width: 38px; }
  .brand-main  { font-size: 17px; }
  .brand-sub   { font-size: 9px; }

  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.08); }
  .stat-item:last-child      { border-bottom: none; }

  .service-img  { height: 170px; }
  .program-img  { height: 180px; }

  .contact-form-box { padding: 28px 22px; }

  .who-image-badge { display: none; }

  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; text-align: center; justify-content: center; }

  .service-form-box,
  .involved-form-box { padding: 28px 20px; }
}
