/* ===================================================================
   Learner Care — Redesign
   Design system: variables, base, components, sections, utilities
=================================================================== */

:root{
  --navy: #0d2438;
  --navy-2: #123049;
  --navy-soft: #f2f6f9;
  --teal: #1fa8a3;
  --teal-dark: #167a77;
  --teal-light: #e7f7f6;
  --gold: #f0a93a;
  --text: #3d4954;
  --text-light: #74818c;
  --white: #ffffff;
  --border: #e6ecf1;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 4px 14px rgba(13,36,56,.06);
  --shadow-md: 0 12px 32px rgba(13,36,56,.10);
  --shadow-lg: 0 24px 60px rgba(13,36,56,.16);
  --transition: all .3s ease;
}

/* ---------- Base ---------- */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family:'Plus Jakarta Sans', sans-serif;
  color:var(--text);
  font-size:1rem;
  line-height:1.75;
  background:var(--white);
  overflow-x:hidden;
}
h1,h2,h3,h4,h5,h6{
  font-family:'Poppins', sans-serif;
  color:var(--navy);
  font-weight:700;
  line-height:1.25;
  margin-bottom:0;
}
p{ margin-bottom:1rem; }
a{ text-decoration:none; color:var(--teal); transition:var(--transition); }
a:hover{ color:var(--teal-dark); }
img{ max-width:100%; }
::selection{ background:var(--teal); color:#fff; }
.bg-navy-soft{ background:var(--navy-soft); }
.text-teal{ color:var(--teal) !important; }
.section{ padding:5.5rem 0; }
.section-sm{ padding:3.5rem 0; }
@media (max-width:767.98px){
  .section{ padding:3.5rem 0; }
}

/* ---------- Section heading ---------- */
.kicker{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  color:var(--teal-dark);
  background:var(--teal-light);
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:.4rem 1rem;
  border-radius:50px;
  margin-bottom:1rem;
}
.kicker::before{
  content:"";
  width:7px; height:7px;
  border-radius:50%;
  background:var(--gold);
  display:inline-block;
}
.section-title{
  font-size:2.3rem;
  margin-bottom:1rem;
}
.section-title span{ color:var(--teal); }
.section-sub{
  color:var(--text-light);
  max-width:640px;
}
.mx-auto-sub{ margin-left:auto; margin-right:auto; }

/* ---------- Buttons ---------- */
.btn{
  font-weight:600;
  border-radius:50px;
  padding:.75rem 1.7rem;
  font-size:.95rem;
  transition:var(--transition);
}
.btn-brand{
  background:var(--teal);
  border:2px solid var(--teal);
  color:#fff;
}
.btn-brand:hover{
  background:var(--teal-dark);
  border-color:var(--teal-dark);
  color:#fff;
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
}
.btn-outline-navy{
  background:transparent;
  border:2px solid rgba(13,36,56,.18);
  color:var(--navy);
}
.btn-outline-navy:hover{
  background:var(--navy);
  border-color:var(--navy);
  color:#fff;
  transform:translateY(-3px);
}
.btn-outline-white{
  background:transparent;
  border:2px solid rgba(255,255,255,.55);
  color:#fff;
}
.btn-outline-white:hover{
  background:#fff;
  color:var(--navy);
  border-color:#fff;
  transform:translateY(-3px);
}
.btn-navy{
  background:var(--navy);
  border:2px solid var(--navy);
  color:#fff;
}
.btn-navy:hover{
  background:var(--navy-2);
  border-color:var(--navy-2);
  color:#fff;
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
}
.btn-sm-pill{ padding:.5rem 1.2rem; font-size:.85rem; }

/* ---------- Topbar ---------- */
.topbar{
  background:var(--navy);
  color:rgba(255,255,255,.85);
  font-size:.86rem;
  padding:.55rem 0;
}
.topbar a{ color:rgba(255,255,255,.85); }
.topbar a:hover{ color:var(--gold); }
.topbar .divider{ opacity:.25; margin:0 .9rem; }
.topbar .social-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px; height:30px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  margin-left:.4rem;
  color:#fff;
}
.topbar .social-links a:hover{ background:var(--teal); }

/* ---------- Navbar ---------- */
.navbar-brand{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-family:'Poppins',sans-serif;
  font-weight:800;
  font-size:1.4rem;
  color:var(--navy);
}
.navbar-brand .logo-mark{
  width:42px; height:42px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--teal),var(--navy));
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:1.2rem;
}
.navbar-brand small{
  display:block;
  font-family:'Plus Jakarta Sans',sans-serif;
  font-weight:600;
  font-size:.68rem;
  letter-spacing:.12em;
  color:var(--teal-dark);
  text-transform:uppercase;
}
.main-nav{
  background:#fff;
  padding:.6rem 0;
  transition:var(--transition);
  box-shadow:0 2px 18px rgba(13,36,56,.05);
  position:sticky;
  top:0;
  z-index:1030;
}
.main-nav.scrolled{ padding:.35rem 0; box-shadow:0 8px 24px rgba(13,36,56,.10); }
.main-nav .nav-link{
  font-weight:600;
  color:var(--navy);
  font-size:.95rem;
  padding:.6rem 1rem !important;
  position:relative;
}
.main-nav .nav-link.active,
.main-nav .nav-link:hover{ color:var(--teal); }
.main-nav .nav-item.dropdown:hover .dropdown-menu{
  display:block;
  margin-top:0;
}
.dropdown-menu{
  border:none;
  box-shadow:var(--shadow-md);
  border-radius:var(--radius-sm);
  padding:.6rem;
}
.dropdown-menu li a{
  border-radius:6px;
  font-weight:500;
  font-size:.9rem;
  color:var(--text);
  padding:.5rem .8rem;
}
.dropdown-menu li a:hover{ background:var(--teal-light); color:var(--teal-dark); }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:88vh;
  color:#fff;
  overflow:hidden;
}
.hero > .carousel{
  position:absolute;
  inset:0;
}
.hero .carousel-inner,
.hero .carousel-item{
  height:100%;
}
.hero-slide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
}
.hero-slide::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(13,36,56,.92) 10%, rgba(13,36,56,.72) 45%, rgba(13,36,56,.45) 100%);
}
.hero .container{ position:relative; z-index:2; }
.hero-eyebrow{
  color:#7fe0da;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-size:.85rem;
}
.hero h1{
  color:#fff;
  font-size:3.4rem;
  margin:1rem 0 1.2rem;
}
.hero p.lead{
  color:rgba(255,255,255,.82);
  font-size:1.15rem;
  max-width:560px;
}
.hero-badges{ gap:.75rem; }
.hero-badge{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(6px);
  border-radius:50px;
  padding:.5rem 1rem;
  font-size:.85rem;
  font-weight:600;
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:.5rem;
}
.hero-badge i{ color:var(--gold); }
@media (max-width:991.98px){
  .hero h1{ font-size:2.4rem; }
  .hero{ min-height:100vh; }
  .hero .container{ padding-top:6rem; padding-bottom:4rem; }
}

/* Page header (inner pages) */
.page-header{
  position:relative;
  padding:7.5rem 0 4rem;
  margin-top:0;
  color:#fff;
  background:linear-gradient(120deg, rgba(13,36,56,.94), rgba(18,48,73,.88)), url('https://images.unsplash.com/photo-1544531586-fde5298cdd40?auto=format&fit=crop&w=1600&q=60') center/cover no-repeat;
}
.page-header h1{ color:#fff; font-size:2.6rem; }
.breadcrumb{ background:transparent; padding:0; margin-top:.75rem; }
.breadcrumb-item, .breadcrumb-item a{ color:rgba(255,255,255,.75); font-weight:500; }
.breadcrumb-item.active{ color:var(--gold); }
.breadcrumb-item+.breadcrumb-item::before{ color:rgba(255,255,255,.5); }

/* ---------- Feature / icon cards ---------- */
.feature-card{
  background:#fff;
  border-radius:var(--radius);
  padding:2.2rem 1.8rem;
  border:1px solid var(--border);
  height:100%;
  transition:var(--transition);
}
.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
  border-color:transparent;
}
.icon-box{
  width:62px; height:62px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  background:var(--teal-light);
  color:var(--teal-dark);
  margin-bottom:1.3rem;
  transition:var(--transition);
}
.feature-card:hover .icon-box{
  background:var(--teal);
  color:#fff;
}
.icon-box.navy{ background:var(--navy-soft); color:var(--navy); }

/* ---------- About split ---------- */
.about-media{ position:relative; }
.about-media img{
  border-radius:var(--radius);
  box-shadow:var(--shadow-md);
}
.about-media .experience-badge{
  position:absolute;
  bottom:-1.5rem; right:-1.5rem;
  background:var(--teal);
  color:#fff;
  border-radius:var(--radius);
  padding:1.4rem 1.6rem;
  box-shadow:var(--shadow-lg);
  text-align:center;
  min-width:150px;
}
.about-media .experience-badge .num{
  font-family:'Poppins',sans-serif;
  font-size:2.1rem;
  font-weight:800;
  line-height:1;
}
.about-media .experience-badge .lbl{ font-size:.8rem; opacity:.9; }
@media (max-width:767.98px){
  .about-media .experience-badge{ right:.5rem; bottom:-1rem; padding:1rem 1.2rem; }
}

/* ---------- About showcase (layered photo collage) ---------- */
.about-showcase{
  position:relative;
  max-width:460px;
  margin:0 auto;
  padding:2.75rem 1.25rem 3.25rem 4.75rem;
}
.about-showcase .dot-pattern{
  position:absolute;
  top:0; left:0;
  width:90px; height:90px;
  color:var(--teal);
  opacity:.35;
  z-index:0;
}
.about-img-main{
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  position:relative;
  z-index:1;
}
.about-img-main img{
  width:100%;
  height:480px;
  object-fit:cover;
  display:block;
}
.about-img-left{
  position:absolute;
  left:0; top:3rem;
  width:145px; height:180px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow-md);
  border:6px solid #fff;
  z-index:2;
}
.about-img-left img{ width:100%; height:100%; object-fit:cover; display:block; }
.about-img-bottom{
  position:absolute;
  right:.5rem; bottom:0;
  width:190px; height:220px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:6px solid #fff;
  z-index:2;
}
.about-img-bottom img{ width:100%; height:100%; object-fit:cover; display:block; }
@media (max-width:575.98px){
  .about-showcase{ padding-left:2.5rem; max-width:340px; }
  .about-img-main img{ height:380px; }
  .about-img-left{ width:105px; height:135px; top:1.5rem; }
  .about-img-bottom{ width:145px; height:170px; }
}

.about-wave{
  position:absolute;
  top:1rem; right:2%;
  color:var(--gold);
  opacity:.5;
  z-index:0;
}

.about-feature-list{ margin-top:2rem; }
.about-feature-item{
  display:flex;
  gap:1.1rem;
  margin-bottom:1.75rem;
}
.about-feature-item:last-child{ margin-bottom:0; }
.about-feature-item .icon-circle{
  width:56px; height:56px;
  border-radius:50%;
  flex:0 0 56px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.35rem;
}
.about-feature-item:nth-child(1) .icon-circle{ background:#fff1dc; color:var(--gold); }
.about-feature-item:nth-child(2) .icon-circle{ background:var(--teal-light); color:var(--teal-dark); }
.about-feature-item:nth-child(3) .icon-circle{ background:var(--navy-soft); color:var(--navy); }
.about-feature-item h6{ font-size:1.08rem; margin-bottom:.35rem; }
.about-feature-item p{ color:var(--text-light); font-size:.92rem; margin-bottom:0; }

.btn-icon-end{
  display:inline-flex;
  align-items:center;
  gap:.9rem;
  padding-right:.4rem;
}
.btn-icon-end .icon-bubble{
  width:38px; height:38px;
  border-radius:50%;
  background:rgba(255,255,255,.2);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 38px;
  transition:var(--transition);
}
.btn-icon-end:hover .icon-bubble{ background:#fff; color:var(--teal-dark); }

.check-list{ list-style:none; padding:0; margin:0; }
.check-list li{
  display:flex;
  align-items:flex-start;
  gap:.65rem;
  margin-bottom:.85rem;
  font-weight:600;
  color:var(--navy);
  font-size:.95rem;
}
.check-list li i{
  color:var(--teal);
  background:var(--teal-light);
  border-radius:50%;
  width:24px; height:24px;
  min-width:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.75rem;
  margin-top:.15rem;
}

/* ---------- Stats ---------- */
.stats-strip{
  background:linear-gradient(120deg,var(--navy),var(--navy-2));
  border-radius:var(--radius);
  color:#fff;
  padding:3rem 2rem;
  position:relative;
  overflow:hidden;
}
.stats-strip::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(circle at 90% 10%, rgba(31,168,163,.35), transparent 55%);
}
.stat-item{ position:relative; z-index:1; text-align:center; }
.stat-item .num{
  font-family:'Poppins',sans-serif;
  font-size:2.6rem;
  font-weight:800;
  color:#fff;
  display:flex;
  justify-content:center;
  align-items:baseline;
  gap:.15rem;
}
.stat-item .lbl{ color:rgba(255,255,255,.75); font-weight:600; font-size:.9rem; }

/* ---------- Course cards ---------- */
.course-card{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  height:100%;
  transition:var(--transition);
}
.course-card:hover{ box-shadow:var(--shadow-lg); transform:translateY(-6px); }
.course-card .course-img{
  position:relative;
  height:190px;
  overflow:hidden;
}
.course-card .course-img img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s ease;
}
.course-card:hover .course-img img{ transform:scale(1.08); }
.course-card .badge-level{
  position:absolute; top:.9rem; left:.9rem;
  background:var(--teal);
  color:#fff;
  font-weight:600;
  font-size:.72rem;
  padding:.35rem .75rem;
  border-radius:50px;
}
.course-card .badge-duration{
  position:absolute; top:.9rem; right:.9rem;
  background:rgba(13,36,56,.75);
  color:#fff;
  font-weight:600;
  font-size:.72rem;
  padding:.35rem .7rem;
  border-radius:50px;
}
.course-card .course-body{ padding:1.4rem; }
.course-card .course-meta{
  font-size:.8rem;
  color:var(--text-light);
  font-weight:600;
  display:flex;
  gap:1rem;
  margin-bottom:.6rem;
}
.course-card .course-meta i{ color:var(--teal); margin-right:.3rem; }
.course-card h5{ font-size:1.08rem; margin-bottom:.6rem; }
.course-card h5 a{ color:var(--navy); }
.course-card h5 a:hover{ color:var(--teal); }
.course-card .course-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px dashed var(--border);
  padding-top:.9rem;
  margin-top:.9rem;
}
.course-card .read-more{
  font-weight:700;
  font-size:.85rem;
  color:var(--navy);
  display:inline-flex;
  align-items:center;
  gap:.35rem;
}
.course-card .read-more:hover{ color:var(--teal); gap:.55rem; }

/* Filter buttons */
.filter-bar{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.6rem;
}
.filter-btn{
  border:1px solid var(--border);
  background:#fff;
  color:var(--navy);
  font-weight:600;
  font-size:.88rem;
  padding:.55rem 1.3rem;
  border-radius:50px;
  transition:var(--transition);
  cursor:pointer;
}
.filter-btn:hover{ border-color:var(--teal); color:var(--teal-dark); }
.filter-btn.active{ background:var(--teal); border-color:var(--teal); color:#fff; }

/* ---------- Process steps ---------- */
.process-step{
  text-align:center;
  position:relative;
  padding:0 1rem;
}
.process-step .step-num{
  width:70px; height:70px;
  border-radius:50%;
  background:var(--navy-soft);
  color:var(--navy);
  font-family:'Poppins',sans-serif;
  font-weight:800;
  font-size:1.4rem;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 1.3rem;
  border:2px dashed var(--teal);
}
.process-row{ position:relative; }

/* ---------- Testimonials ---------- */
.testimonial-card{
  background:#fff;
  border-radius:var(--radius);
  padding:2.2rem;
  border:1px solid var(--border);
  height:100%;
}
.testimonial-card .quote-icon{ color:var(--teal-light); font-size:2.4rem; line-height:1; }
.testimonial-card .stars{ color:var(--gold); font-size:.85rem; margin-bottom:.6rem; }
.testimonial-card .author{
  display:flex;
  align-items:center;
  gap:.8rem;
  margin-top:1.3rem;
}
.testimonial-card .author img{
  width:52px; height:52px;
  border-radius:50%;
  object-fit:cover;
}
.testimonial-card .author h6{ margin-bottom:0; font-size:.95rem; }
.testimonial-card .author span{ font-size:.8rem; color:var(--text-light); }
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next{
  position:static;
  width:44px; height:44px;
  border-radius:50%;
  background:var(--navy-soft);
  opacity:1;
  margin:0 .4rem;
}
#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover{ background:var(--teal); }
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon{ filter:invert(1) grayscale(100); width:1rem; height:1rem; }
#testimonialCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next:hover .carousel-control-next-icon{ filter:none; }

/* ---------- CTA banner ---------- */
.cta-banner{
  background:linear-gradient(120deg,var(--teal-dark),var(--teal));
  border-radius:var(--radius);
  padding:3.2rem;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.cta-banner::after{
  content:"";
  position:absolute; right:-60px; top:-60px;
  width:220px; height:220px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
}
.cta-banner h2{ color:#fff; }

/* ---------- Blog cards ---------- */
.blog-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  height:100%;
  transition:var(--transition);
}
.blog-card:hover{ box-shadow:var(--shadow-lg); transform:translateY(-6px); }
.blog-card .blog-img{ height:210px; overflow:hidden; }
.blog-card .blog-img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.blog-card:hover .blog-img img{ transform:scale(1.08); }
.blog-card .blog-body{ padding:1.5rem; }
.blog-card .blog-meta{
  font-size:.78rem;
  color:var(--text-light);
  font-weight:600;
  display:flex;
  gap:1rem;
  margin-bottom:.7rem;
}
.blog-card .blog-meta i{ color:var(--teal); margin-right:.3rem; }
.blog-card h5{ font-size:1.05rem; }
.blog-card h5 a{ color:var(--navy); }
.blog-card h5 a:hover{ color:var(--teal); }

/* Sidebar */
.widget{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.6rem;
  margin-bottom:1.6rem;
}
.widget h5{
  font-size:1.05rem;
  margin-bottom:1.1rem;
  padding-bottom:.8rem;
  border-bottom:2px solid var(--teal-light);
}
.widget .search-form{ position:relative; }
.widget .search-form input{
  border-radius:50px;
  padding:.7rem 3rem .7rem 1.2rem;
  border:1px solid var(--border);
}
.widget .search-form button{
  position:absolute; right:5px; top:5px;
  width:38px; height:38px;
  border-radius:50%;
  border:none;
  background:var(--teal);
  color:#fff;
}
.widget .cat-list li{
  display:flex;
  justify-content:space-between;
  padding:.55rem 0;
  border-bottom:1px dashed var(--border);
  font-weight:600;
  font-size:.92rem;
  color:var(--navy);
}
.widget .cat-list li:last-child{ border-bottom:none; }
.widget .cat-list li span{ color:var(--text-light); font-weight:500; }
.widget .post-mini{ display:flex; gap:.8rem; margin-bottom:1rem; }
.widget .post-mini img{ width:64px; height:64px; border-radius:10px; object-fit:cover; }
.widget .post-mini h6{ font-size:.86rem; margin-bottom:.25rem; }
.widget .post-mini h6 a{ color:var(--navy); }
.widget .tag-list{ display:flex; flex-wrap:wrap; gap:.5rem; }
.widget .tag-list a{
  border:1px solid var(--border);
  border-radius:50px;
  padding:.35rem .9rem;
  font-size:.8rem;
  font-weight:600;
  color:var(--navy);
}
.widget .tag-list a:hover{ background:var(--teal); border-color:var(--teal); color:#fff; }

/* ---------- FAQ Accordion ---------- */
.accordion-item{
  border:1px solid var(--border);
  border-radius:var(--radius-sm) !important;
  margin-bottom:1rem;
  overflow:hidden;
}
.accordion-button{
  font-weight:700;
  color:var(--navy);
  font-family:'Poppins',sans-serif;
  font-size:.98rem;
}
.accordion-button:not(.collapsed){
  background:var(--teal-light);
  color:var(--teal-dark);
  box-shadow:none;
}
.accordion-button:focus{ box-shadow:none; border-color:var(--border); }
.accordion-button::after{ background-size:1.1rem; }

/* ---------- Contact ---------- */
.contact-info-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.8rem;
  text-align:center;
  height:100%;
  transition:var(--transition);
}
.contact-info-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.contact-form .form-control, .contact-form .form-select{
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  padding:.85rem 1.1rem;
  font-size:.95rem;
}
.contact-form .form-control:focus, .contact-form .form-select:focus{
  border-color:var(--teal);
  box-shadow:0 0 0 4px var(--teal-light);
}
.contact-form label{ font-weight:600; color:var(--navy); font-size:.88rem; margin-bottom:.4rem; }
.map-frame{ border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-md); border:1px solid var(--border); }

/* ---------- Registration / questionnaire form ---------- */
.form-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2.75rem;
  box-shadow:var(--shadow-sm);
}
@media (max-width:575.98px){
  .form-card{ padding:1.6rem; }
}
.form-section-title{
  font-family:'Poppins',sans-serif;
  font-weight:700;
  color:var(--navy);
  font-size:1.05rem;
  margin:2.25rem 0 1.3rem;
  padding-bottom:.7rem;
  border-bottom:2px solid var(--teal-light);
  display:flex;
  align-items:center;
  gap:.6rem;
}
.form-section-title:first-of-type{ margin-top:0; }
.form-section-title .step-badge{
  width:28px; height:28px;
  border-radius:50%;
  background:var(--teal);
  color:#fff;
  font-size:.8rem;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 28px;
}
.question-block{ margin-bottom:1.5rem; }
.question-block:last-child{ margin-bottom:0; }
.question-block label{
  font-weight:600;
  color:var(--navy);
  font-size:.92rem;
  margin-bottom:.55rem;
  display:block;
}
.question-block label .q-num{ color:var(--teal-dark); margin-right:.35rem; }
.map-frame iframe{ width:100%; height:100%; min-height:380px; display:block; border:0; }

/* ---------- Regions ---------- */
.region-card{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  height:260px;
}
.region-card img{ width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.region-card:hover img{ transform:scale(1.1); }
.region-card .overlay{
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(13,36,56,.9), rgba(13,36,56,.1) 60%);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:1.4rem;
  color:#fff;
}
.region-card h5{ color:#fff; margin-bottom:.2rem; }
.region-card span{ font-size:.82rem; color:rgba(255,255,255,.8); }
.region-card .count-badge{
  position:absolute; top:1rem; right:1rem;
  background:var(--teal);
  color:#fff;
  font-weight:700;
  font-size:.78rem;
  padding:.3rem .7rem;
  border-radius:50px;
}

/* ---------- Team ---------- */
.team-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  text-align:center;
  transition:var(--transition);
}
.team-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.team-card .team-img{ height:260px; overflow:hidden; }
.team-card .team-img img{ width:100%; height:100%; object-fit:cover; }
.team-card .team-body{ padding:1.3rem; }
.team-card .role{ color:var(--teal-dark); font-size:.85rem; font-weight:600; }
.team-card .social-links{ margin-top:.8rem; }
.team-card .social-links a{
  width:32px; height:32px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--navy-soft);
  color:var(--navy);
  margin:0 .2rem;
}
.team-card .social-links a:hover{ background:var(--teal); color:#fff; }

/* ---------- Footer ---------- */
.site-footer{
  background:var(--navy);
  color:rgba(255,255,255,.72);
  padding-top:4.5rem;
}
.site-footer h5{ color:#fff; font-size:1.05rem; margin-bottom:1.3rem; }
.site-footer .footer-brand{
  display:flex; align-items:center; gap:.6rem;
  font-family:'Poppins',sans-serif; font-weight:800; font-size:1.3rem; color:#fff;
  margin-bottom:1rem;
}
.site-footer p{ font-size:.92rem; }
.site-footer .footer-links{ list-style:none; padding:0; margin:0; }
.site-footer .footer-links li{ margin-bottom:.7rem; }
.site-footer .footer-links a{ color:rgba(255,255,255,.72); font-size:.92rem; }
.site-footer .footer-links a::before{ content:"\f105"; font-family:"bootstrap-icons"; margin-right:.5rem; color:var(--teal); }
.site-footer .footer-links a:hover{ color:var(--gold); padding-left:.25rem; }
.site-footer .contact-line{ display:flex; gap:.7rem; margin-bottom:1rem; font-size:.92rem; }
.site-footer .contact-line i{ color:var(--teal); margin-top:.2rem; }
.site-footer .social-links a{
  width:36px; height:36px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:#fff;
  margin-right:.5rem;
}
.site-footer .social-links a:hover{ background:var(--teal); }
.footer-newsletter{
  background:var(--navy-2);
  border-radius:var(--radius);
  padding:2.4rem;
  margin-top:1rem;
}
.footer-newsletter .form-control{
  border-radius:50px;
  border:none;
  padding:.85rem 1.3rem;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:3rem;
  padding:1.3rem 0;
  font-size:.85rem;
}
.footer-bottom a{ color:rgba(255,255,255,.8); }

/* Back to top */
#backToTop{
  position:fixed;
  right:1.6rem; bottom:1.6rem;
  width:46px; height:46px;
  border-radius:50%;
  background:var(--teal);
  color:#fff;
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  box-shadow:var(--shadow-md);
  opacity:0;
  visibility:hidden;
  transform:translateY(15px);
  transition:var(--transition);
  z-index:1050;
}
#backToTop.show{ opacity:1; visibility:visible; transform:translateY(0); }
#backToTop:hover{ background:var(--teal-dark); }

/* Preloader */
#preloader{
  position:fixed; inset:0;
  background:var(--navy);
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:opacity .4s ease, visibility .4s ease;
}
#preloader .spinner{
  width:52px; height:52px;
  border-radius:50%;
  border:4px solid rgba(255,255,255,.2);
  border-top-color:var(--teal);
  animation:spin 1s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
body.loaded #preloader{ opacity:0; visibility:hidden; }

/* Scroll reveal */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.reveal.active{ opacity:1; transform:translateY(0); }
.reveal-delay-1.active{ transition-delay:.1s; }
.reveal-delay-2.active{ transition-delay:.2s; }
.reveal-delay-3.active{ transition-delay:.3s; }
.reveal-delay-4.active{ transition-delay:.4s; }

/* Utilities */
.shadow-soft{ box-shadow:var(--shadow-sm); }
.rounded-xl{ border-radius:var(--radius) !important; }
.z-1{ position:relative; z-index:1; }
.divider-dot{ width:6px; height:6px; border-radius:50%; background:var(--teal); display:inline-block; }

/* WhatsApp float */
.whatsapp-float{
  position:fixed;
  left:1.6rem; bottom:1.6rem;
  width:52px; height:52px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  box-shadow:var(--shadow-md);
  z-index:1050;
}

/* ---------- Cookie consent ---------- */
.cookie-consent-banner{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:1080;
  background:var(--navy);
  color:rgba(255,255,255,.88);
  padding:1.3rem 0;
  box-shadow:0 -8px 30px rgba(0,0,0,.25);
  transform:translateY(100%);
  transition:transform .45s ease;
}
.cookie-consent-banner.show{ transform:translateY(0); }
.cookie-consent-banner .cookie-icon{
  width:44px; height:44px;
  border-radius:50%;
  background:var(--teal-light);
  color:var(--teal-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.3rem;
  flex:0 0 44px;
}
.cookie-consent-banner p{ font-size:.9rem; margin-bottom:0; }
.cookie-consent-banner a{ color:var(--gold); text-decoration:underline; }
.cookie-consent-banner .btn{ white-space:nowrap; }

.cookie-toggle-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:1rem;
  padding:1rem 0;
  border-bottom:1px solid var(--border);
}
.cookie-toggle-row:last-child{ border-bottom:none; }
.cookie-toggle-row h6{ font-size:.98rem; margin-bottom:.3rem; }
.cookie-toggle-row p{ font-size:.85rem; color:var(--text-light); margin-bottom:0; }
.cookie-toggle-row .form-check-input{
  width:2.75rem; height:1.5rem;
  flex:0 0 2.75rem;
  margin-top:.15rem;
}
.cookie-toggle-row .form-check-input:checked{ background-color:var(--teal); border-color:var(--teal); }
.cookie-toggle-row .form-check-input:disabled{ opacity:.55; }
.whatsapp-float:hover{ color:#fff; transform:scale(1.08); }

/* ---------- Blog post rich-text content ---------- */
.blog-post-content{ color:var(--text); font-size:1.02rem; line-height:1.85; }
.blog-post-content h1, .blog-post-content h2, .blog-post-content h3,
.blog-post-content h4, .blog-post-content h5, .blog-post-content h6{
  margin-top:1.8rem;
  margin-bottom:.9rem;
}
.blog-post-content p{ margin-bottom:1.2rem; }
.blog-post-content ul, .blog-post-content ol{ margin-bottom:1.2rem; padding-left:1.4rem; }
.blog-post-content li{ margin-bottom:.4rem; }
.blog-post-content a{ color:var(--teal-dark); text-decoration:underline; }
.blog-post-content img{ max-width:100%; height:auto; border-radius:var(--radius-sm); margin:1.2rem 0; }
.blog-post-content blockquote{
  border-left:4px solid var(--teal);
  background:var(--teal-light);
  padding:1rem 1.4rem;
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  margin:1.4rem 0;
  color:var(--navy);
  font-style:italic;
}
