/* =========================================================
   BBFA - Blossom Buds Foundation Academy
   Main Stylesheet
   ========================================================= */

:root{
  --burgundy: #8b1538;
  --burgundy-dark: #5c0c24;
  --burgundy-light: #b8305c;
  --gold: #f7b538;
  --gold-light: #ffd873;
  --orange: #f08035;
  --green: #4a9d55;
  --purple: #7c4da0;
  --blue: #3a7abd;
  --cream: #fff8eb;
  --cream-2: #fef2e2;
  --ink: #2b2130;
  --ink-soft: #5a4f5f;
  --white: #ffffff;

  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(92,12,36,0.08);
  --shadow-md: 0 12px 32px rgba(92,12,36,0.14);
  --shadow-lg: 0 24px 60px rgba(92,12,36,0.20);

  --header-h: 78px;
  --topbar-h: 38px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color: inherit; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
h1,h2,h3,h4,h5{ font-family: var(--font-display); color: var(--burgundy-dark); margin:0 0 .5em; line-height:1.25; }
p{ margin:0 0 1em; color: var(--ink-soft); line-height:1.75; }

.container{
  width:100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link{
  position:absolute; left:-999px; top:0; background:var(--burgundy); color:#fff;
  padding:10px 16px; z-index:10000; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight:600;
  font-family: var(--font-body);
  border:2px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
  font-size: 15px;
}
.btn-primary{
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--burgundy-dark);
  box-shadow: 0 10px 24px rgba(240,128,53,.35);
}
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 16px 30px rgba(240,128,53,.45); }
.btn-outline{
  background: transparent;
  border-color: currentColor;
  color: var(--burgundy);
}
.btn-outline:hover{ background: var(--burgundy); color:#fff; border-color: var(--burgundy); transform: translateY(-3px); }
.btn-white{ background:#fff; color: var(--burgundy); }
.btn-white:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-block{ width:100%; }
.btn-lg{ padding:16px 36px; font-size:16px; }
.btn-sm{ padding:10px 20px; font-size:13px; }

.section-tag{
  display:inline-flex; align-items:center; gap:8px;
  background: var(--cream-2); color: var(--orange); font-weight:700;
  padding:8px 18px; border-radius: var(--radius-pill); font-size:13px;
  letter-spacing:.5px; text-transform:uppercase; margin-bottom:16px;
}
.section-head{ text-align:center; max-width: 700px; margin: 0 auto 48px; }
.section-head h2{ font-size: clamp(28px, 4vw, 42px); }
.section{ padding: 90px 0; }
.section.bg-cream{ background: var(--cream); }
.section.bg-burgundy{ background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy)); color:#fff; }
.section.bg-burgundy h2, .section.bg-burgundy h3{ color:#fff; }
.section.bg-burgundy p{ color: rgba(255,255,255,.85); }

/* ---------------- Top bar ---------------- */
.top-bar{
  background: var(--burgundy-dark);
  color: rgba(255,255,255,.9);
  font-size: 13.5px;
  height: var(--topbar-h);
}
.top-bar-inner{ display:flex; align-items:center; justify-content:space-between; height:100%; }
.top-bar a{ color: rgba(255,255,255,.9); display:inline-flex; align-items:center; gap:6px; }
.top-bar a:hover{ color: var(--gold-light); }
.top-bar-left{ display:flex; align-items:center; gap:14px; }
.top-bar-sep{ opacity:.4; }
.top-bar-location{ display:inline-flex; align-items:center; gap:6px; }

/* ---------------- Header / Nav ---------------- */
.site-header{
  position: sticky; top:0; z-index: 999;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled{ box-shadow: var(--shadow-md); }
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height: var(--header-h);
  gap: 20px;
}
.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand-logo{ height: 54px; width:54px; object-fit:contain; border-radius:50%; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text strong{ font-family: var(--font-display); color: var(--burgundy); font-size: 19px; }
.brand-text small{ color: var(--orange); font-weight:600; font-size:12px; letter-spacing:.3px; }

.main-nav{ flex:1; display:flex; justify-content:center; }
.main-nav ul{ display:flex; align-items:center; gap:6px; }
.main-nav a{
  padding: 10px 16px; font-weight:600; font-size:15px; color: var(--ink);
  border-radius: var(--radius-pill); transition: all .2s ease; position:relative;
}
.main-nav a:hover, .main-nav a.active{ background: var(--cream-2); color: var(--burgundy); }
.nav-cta-desktop{ flex-shrink:0; }
.nav-close{ display:none; }
.nav-cta-mobile{ display:none; }

.hamburger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:44px; height:44px; background: var(--cream-2); border:none; border-radius:12px;
  flex-shrink:0;
}
.hamburger span{
  width:22px; height:2.5px; background: var(--burgundy); margin:0 auto; border-radius:2px;
  transition: all .3s ease;
}
.hamburger.active span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity:0; }
.hamburger.active span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

.nav-overlay{
  display:none; position:fixed; inset:0; background: rgba(43,33,48,.55);
  z-index: 997; opacity:0; transition: opacity .3s ease;
}
.nav-overlay.active{ display:block; opacity:1; }

@media (max-width: 991px){
  .top-bar-location{ display:none; }
  .main-nav{
    position: fixed; top:0; right:0; height:100dvh; width: min(320px, 85vw);
    background:#fff; z-index:998; flex-direction:column; justify-content:flex-start;
    padding: 24px 22px; transform: translateX(100%); transition: transform .35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.15); overflow-y:auto;
  }
  .main-nav.active{ transform: translateX(0); }
  .main-nav ul{ flex-direction:column; align-items:stretch; gap:4px; margin-top: 40px; width:100%; }
  .main-nav a{ display:block; padding:14px 16px; font-size:16px; }
  .nav-close{
    display:flex; align-items:center; justify-content:center;
    position:absolute; top:16px; right:16px; width:40px; height:40px;
    background: var(--cream-2); border:none; border-radius:50%; color: var(--burgundy); font-size:18px;
  }
  .nav-cta-desktop{ display:none; }
  .nav-cta-mobile{ display:block; margin-top:20px; }
  .hamburger{ display:flex; }
}

/* ---------------- Hero Slider ---------------- */
.hero-slider{
  position: relative; overflow:hidden; height: min(78vh, 720px); min-height:460px;
}
.hero-slide{
  position:absolute; inset:0; opacity:0; visibility:hidden; transition: opacity .9s ease;
  background-size:cover; background-position:center;
}
.hero-slide.active{ opacity:1; visibility:visible; z-index:2; }
.hero-slide::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(43,20,30,.35) 0%, rgba(43,12,24,.72) 100%);
}
.hero-slide-content{
  position:relative; z-index:3; height:100%; display:flex; flex-direction:column;
  align-items:flex-start; justify-content:center; color:#fff; max-width: 680px;
  padding: 0 20px; margin:0 auto; text-align:left;
}
.hero-slider .container{ height:100%; display:flex; align-items:center; }
.hero-slide-inner{ max-width:680px; color:#fff; }
.hero-eyebrow{
  display:inline-block; background: rgba(255,255,255,.18); backdrop-filter: blur(6px);
  padding:8px 18px; border-radius: var(--radius-pill); font-weight:600; font-size:13px;
  margin-bottom:18px; letter-spacing:.5px; text-transform:uppercase;
}
.hero-slide h1{
  color:#fff; font-size: clamp(30px, 5.2vw, 58px); margin-bottom:18px;
  opacity:0; transform: translateY(30px); transition: all .8s ease .15s;
}
.hero-slide p{
  color: rgba(255,255,255,.92); font-size: clamp(16px, 2vw, 20px); max-width:520px;
  opacity:0; transform: translateY(30px); transition: all .8s ease .3s;
}
.hero-slide .btn{
  opacity:0; transform: translateY(30px); transition: all .8s ease .45s;
}
.hero-slide.active h1, .hero-slide.active p, .hero-slide.active .btn{ opacity:1; transform:none; }

.hero-nav-btn{
  position:absolute; top:50%; transform: translateY(-50%); z-index:5;
  width:48px; height:48px; border-radius:50%; background: rgba(255,255,255,.25);
  border: 1.5px solid rgba(255,255,255,.6); color:#fff; display:flex; align-items:center; justify-content:center;
  font-size:20px; backdrop-filter: blur(6px); transition: all .25s ease;
}
.hero-nav-btn:hover{ background:#fff; color: var(--burgundy); }
.hero-prev{ left:24px; } .hero-next{ right:24px; }

.hero-dots{
  position:absolute; bottom:26px; left:0; right:0; z-index:5;
  display:flex; align-items:center; justify-content:center; gap:10px;
}
.hero-dot{ width:10px; height:10px; border-radius:50%; background: rgba(255,255,255,.5); border:none; transition: all .25s ease; }
.hero-dot.active{ background:#fff; width:28px; border-radius: var(--radius-pill); }

@media (max-width: 767px){
  .hero-slider{ height: 88vh; min-height:520px; }
  .hero-nav-btn{ width:38px; height:38px; font-size:16px; }
  .hero-prev{ left:10px; } .hero-next{ right:10px; }
}

/* ---------------- Welcome / Intro section ---------------- */
.welcome-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:center; }
.welcome-media{ position:relative; }
.welcome-media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.welcome-badge{
  position:absolute; bottom:-24px; left:-24px; background:#fff; padding:16px 22px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-md); display:flex; align-items:center; gap:12px;
}
.welcome-badge i{ font-size:30px; color: var(--gold); }
.welcome-badge strong{ display:block; font-family: var(--font-display); color:var(--burgundy); font-size:20px; }
.welcome-badge span{ font-size:12px; color: var(--ink-soft); }

@media (max-width: 900px){
  .welcome-grid{ grid-template-columns: 1fr; gap:36px; }
  .welcome-badge{ left:12px; bottom:-18px; }
}

/* ---------------- Why choose cards ---------------- */
.why-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:26px; }
.why-card{
  background:#fff; border-radius: var(--radius-lg); padding: 34px 28px; box-shadow: var(--shadow-sm);
  transition: all .3s ease; border: 1px solid rgba(139,21,56,.06); text-align:center;
}
.why-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-md); }
.why-icon{
  width:70px; height:70px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:30px; color:#fff; margin: 0 auto 20px;
}
.why-card h3{ font-size:20px; margin-bottom:10px; }
.why-card p{ font-size:14.5px; margin-bottom:0; }
@media (max-width: 900px){ .why-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .why-grid{ grid-template-columns: 1fr; } }

/* ---------------- Program cards ---------------- */
.program-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:28px; }
.program-card{
  border-radius: var(--radius-lg); overflow:hidden; background:#fff; box-shadow: var(--shadow-sm);
  transition: all .35s ease; position:relative;
}
.program-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.program-card-img{ position:relative; height:210px; overflow:hidden; }
.program-card-img img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.program-card:hover .program-card-img img{ transform: scale(1.08); }
.program-card-body{ padding: 24px; }
.program-age{
  display:inline-block; background: var(--cream-2); color: var(--orange); font-size:12px; font-weight:700;
  padding:5px 14px; border-radius: var(--radius-pill); margin-bottom:12px;
}
.program-card h3{ font-size:21px; margin-bottom:8px; }
.program-card p{ font-size:14.5px; }
.program-card-link{ font-weight:700; color: var(--burgundy); display:inline-flex; align-items:center; gap:6px; }
.program-card-link i{ transition: transform .2s ease; }
.program-card-link:hover i{ transform: translateX(4px); }
@media (max-width: 991px){ .program-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .program-grid{ grid-template-columns: 1fr; } }

/* ---------------- Day care highlight ---------------- */
.daycare-banner{
  background: linear-gradient(120deg, var(--orange), var(--gold));
  border-radius: var(--radius-lg); padding: 56px; display:grid; grid-template-columns: 1.2fr .8fr; gap:40px;
  align-items:center; overflow:hidden; position:relative; color: var(--burgundy-dark);
}
.daycare-banner::before{
  content:''; position:absolute; width:260px; height:260px; border-radius:50%;
  background: rgba(255,255,255,.18); top:-100px; right:-60px;
}
.daycare-banner h2{ color: var(--burgundy-dark); font-size: clamp(26px,3.4vw,38px); }
.daycare-fee{ display:flex; align-items:baseline; gap:10px; margin: 18px 0; }
.daycare-fee .amount{ font-family: var(--font-display); font-size:46px; color:#fff; text-shadow: 0 2px 10px rgba(0,0,0,.15); }
.daycare-fee .period{ font-weight:600; font-size:15px; color: var(--burgundy-dark); }
.daycare-features{ display:flex; flex-wrap:wrap; gap:10px 22px; margin-bottom:26px; }
.daycare-features li{ display:flex; align-items:center; gap:8px; font-weight:600; font-size:14.5px; }
.daycare-side{
  background: rgba(255,255,255,.55); border-radius: var(--radius-md); padding:28px; text-align:center;
  backdrop-filter: blur(4px);
}
.daycare-side img{ border-radius: var(--radius-md); margin-bottom:16px; height:180px; object-fit:cover; width:100%; }
@media (max-width: 900px){
  .daycare-banner{ grid-template-columns: 1fr; padding: 32px 24px; }
}

/* ---------------- Gallery preview / grid ---------------- */
.gallery-filter{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-bottom:40px; }
.gallery-filter button{
  padding:10px 22px; border-radius: var(--radius-pill); border:2px solid var(--cream-2);
  background:#fff; font-weight:600; font-size:14px; color: var(--ink-soft); transition: all .2s ease;
}
.gallery-filter button:hover{ border-color: var(--gold); }
.gallery-filter button.active{ background: var(--burgundy); border-color: var(--burgundy); color:#fff; }

.gallery-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:18px; }
.gallery-item{
  position:relative; border-radius: var(--radius-md); overflow:hidden; cursor:pointer; aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition: transform .45s ease; }
.gallery-item:hover img{ transform: scale(1.1); }
.gallery-item-overlay{
  position:absolute; inset:0; background: linear-gradient(0deg, rgba(43,12,24,.85), transparent 60%);
  display:flex; align-items:flex-end; padding:16px; opacity:0; transition: opacity .3s ease;
}
.gallery-item:hover .gallery-item-overlay{ opacity:1; }
.gallery-item-overlay span{ color:#fff; font-weight:600; font-size:14px; }
@media (max-width: 991px){ .gallery-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px){ .gallery-grid{ grid-template-columns: repeat(2, 1fr); gap:12px; } }

.lightbox{
  position:fixed; inset:0; background: rgba(20,10,15,.92); z-index:2000; display:none;
  align-items:center; justify-content:center; padding: 30px;
}
.lightbox.active{ display:flex; }
.lightbox img{ max-width: min(90vw, 900px); max-height:85vh; border-radius: var(--radius-md); }
.lightbox-close{
  position:absolute; top:22px; right:26px; color:#fff; font-size:30px; background:none; border:none;
}
.lightbox-nav{ position:absolute; top:50%; transform: translateY(-50%); color:#fff; font-size:30px; background:none; border:none; padding:14px; }
.lightbox-prev{ left:10px; } .lightbox-next{ right:10px; }
.lightbox-caption{ position:absolute; bottom:26px; left:0; right:0; text-align:center; color:#fff; font-weight:600; }

/* ---------------- Video section ---------------- */
.video-wrap{ max-width: 900px; margin: 0 auto; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; }
.video-wrap iframe, .video-wrap video{ width:100%; height:100%; border:0; }

/* ---------------- Forms ---------------- */
.form-card{ background:#fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 40px; }
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.form-group{ margin-bottom:18px; }
.form-group.full{ grid-column: 1 / -1; }
.form-group label{ display:block; font-weight:600; font-size:14px; margin-bottom:8px; color: var(--ink); }
.form-control{
  width:100%; padding:14px 16px; border-radius: var(--radius-sm); border:1.5px solid #ecdfe4;
  font-family: inherit; font-size:14.5px; background: #fdfaf6; transition: all .2s ease;
}
.form-control:focus{ outline:none; border-color: var(--gold); background:#fff; box-shadow: 0 0 0 4px rgba(247,181,56,.18); }
textarea.form-control{ resize:vertical; min-height:110px; }
.honeypot-field{ position:absolute; left:-9999px; opacity:0; height:0; }
.form-msg{ padding:14px 18px; border-radius: var(--radius-sm); margin-bottom:20px; font-weight:600; font-size:14px; }
.form-msg.success{ background:#e5f6ea; color:#276b39; }
.form-msg.error{ background:#fbe6e9; color:#a3283f; }
@media (max-width: 700px){ .form-grid{ grid-template-columns: 1fr; } .form-card{ padding:26px 20px; } }

/* ---------------- Contact section ---------------- */
.contact-grid{ display:grid; grid-template-columns: .9fr 1.1fr; gap:40px; align-items:start; }
.contact-info-card{ background:#fff; border-radius: var(--radius-lg); padding:32px; box-shadow: var(--shadow-sm); margin-bottom:20px; }
.contact-info-item{ display:flex; gap:16px; margin-bottom:22px; }
.contact-info-item:last-child{ margin-bottom:0; }
.contact-info-item i{
  width:46px; height:46px; border-radius:50%; background: var(--cream-2); color: var(--orange);
  display:flex; align-items:center; justify-content:center; font-size:19px; flex-shrink:0;
}
.contact-info-item strong{ display:block; color: var(--burgundy-dark); margin-bottom:3px; }
.map-embed{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-sm); }
.map-embed iframe{ width:100%; height:300px; border:0; display:block; }
@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }

/* ---------------- Stats ---------------- */
.stats-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; text-align:center; }
.stat-item .num{ font-family: var(--font-display); font-size: clamp(32px,4vw,46px); color: var(--gold); }
.stat-item span{ display:block; font-weight:600; opacity:.9; }
@media (max-width: 700px){ .stats-grid{ grid-template-columns: 1fr 1fr; } }

/* ---------------- FAQ ---------------- */
.faq-item{ background:#fff; border-radius: var(--radius-md); margin-bottom:14px; box-shadow: var(--shadow-sm); overflow:hidden; }
.faq-question{
  width:100%; text-align:left; padding:20px 24px; background:none; border:none; display:flex;
  justify-content:space-between; align-items:center; font-weight:700; color: var(--burgundy-dark); font-size:16px;
}
.faq-question i{ transition: transform .25s ease; color: var(--orange); }
.faq-item.active .faq-question i{ transform: rotate(45deg); }
.faq-answer{ max-height:0; overflow:hidden; transition: max-height .3s ease; }
.faq-answer-inner{ padding: 0 24px 20px; }
.faq-item.active .faq-answer{ max-height: 300px; }

/* ---------------- Page hero (inner pages) ---------------- */
.page-hero{
  background: linear-gradient(120deg, var(--burgundy-dark), var(--burgundy));
  padding: 70px 0 60px; text-align:center; color:#fff; position:relative; overflow:hidden;
}
.page-hero::after{
  content:''; position:absolute; width:340px; height:340px; border-radius:50%;
  background: rgba(255,255,255,.06); top:-160px; right:-80px;
}
.page-hero h1{ color:#fff; font-size: clamp(30px,4.4vw,48px); margin-bottom:12px; }
.page-hero p{ color: rgba(255,255,255,.85); max-width:600px; margin:0 auto; }
.breadcrumb{ display:flex; justify-content:center; gap:8px; font-size:13.5px; color: rgba(255,255,255,.7); margin-top:14px; }
.breadcrumb a{ color: rgba(255,255,255,.85); }

/* ---------------- Misc ---------------- */
.whatsapp-float{
  position: fixed; bottom: 24px; right: 22px; width:58px; height:58px; border-radius:50%;
  background: #25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  font-size:28px; box-shadow: 0 10px 26px rgba(37,211,102,.5); z-index: 900; animation: pulse 2.4s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.back-to-top{
  position:fixed; bottom:24px; left:22px; width:48px; height:48px; border-radius:50%;
  background: var(--burgundy); color:#fff; border:none; font-size:18px; box-shadow: var(--shadow-md);
  z-index:900; opacity:0; visibility:hidden; transform: translateY(10px); transition: all .3s ease;
}
.back-to-top.show{ opacity:1; visibility:visible; transform:none; }

.footer-cta-strip{
  background: linear-gradient(120deg, var(--gold), var(--orange)); padding: 40px 0; text-align:center;
}
.footer-cta-strip h3{ color: var(--burgundy-dark); margin-bottom:16px; font-size: clamp(20px,3vw,28px); }

/* ---------------- Footer ---------------- */
.site-footer{ background: var(--burgundy-dark); color: rgba(255,255,255,.8); padding-top: 70px; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap:36px; padding-bottom: 50px; }
.footer-logo{ height:60px; width:60px; border-radius:50%; margin-bottom:16px; background:#fff; padding:4px; }
.footer-col h4{ color:#fff; font-size:17px; margin-bottom:18px; }
.footer-col ul li{ margin-bottom:11px; }
.footer-col a{ color: rgba(255,255,255,.75); font-size:14.5px; transition: color .2s ease; }
.footer-col a:hover{ color: var(--gold-light); }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; }
.footer-contact i{ color: var(--gold); margin-top:3px; }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,.1); display:flex;
  align-items:center; justify-content:center; font-size:16px;
}
.footer-social a:hover{ background: var(--gold); color: var(--burgundy-dark); }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.12); padding:20px 0; }
.footer-bottom-inner{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:13px; }
.footer-bottom a{ color: rgba(255,255,255,.7); }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } .footer-bottom-inner{ flex-direction:column; text-align:center; } }

/* ---------------- Utility ---------------- */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; } .mb-0{ margin-bottom:0; }
.color-gold{ color: var(--gold); } .color-orange{ color: var(--orange); }
.color-green{ color: var(--green); } .color-purple{ color: var(--purple); } .color-blue{ color: var(--blue); }
.bg-icon-gold{ background: var(--gold); } .bg-icon-orange{ background: var(--orange); }
.bg-icon-green{ background: var(--green); } .bg-icon-purple{ background: var(--purple); } .bg-icon-blue{ background: var(--blue); } .bg-icon-burgundy{ background: var(--burgundy); }

[data-aos]{ opacity:0; transform: translateY(24px); transition: all .7s ease; }
[data-aos].aos-in{ opacity:1; transform:none; }

.badge-soft{
  display:inline-flex; align-items:center; gap:6px; background: rgba(255,255,255,.2); color:#fff;
  padding:6px 16px; border-radius: var(--radius-pill); font-size:13px; font-weight:600;
}

.field-error{ border-color:#c2364d !important; box-shadow: 0 0 0 4px rgba(194,54,77,.14) !important; }
