/* ============================================================
   BNS CONSULTANCY — Public Style System
   Design: Premium Corporate Immigration/Travel Consultancy
   Colors: Deep Navy #0f2b48 | Teal #00ced1 | Gold #f0a500
   Fonts: Outfit (headings) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  --navy:        #0f2b48;
  --navy-mid:    #1a3d5c;
  --navy-light:  #1e4d72;
  --teal:        #00ced1;
  --teal-dark:   #009ea0;
  --gold:        #f0a500;
  --gold-light:  #ffc72c;
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --grey-light:  #e8edf3;
  --grey-mid:    #c5d0dc;
  --grey-text:   #6b7c93;
  --dark-text:   #1a2535;

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(15,43,72,.07);
  --shadow-md:  0 6px 24px rgba(15,43,72,.12);
  --shadow-lg:  0 16px 48px rgba(15,43,72,.18);
  --shadow-teal: 0 8px 32px rgba(0,206,209,.25);

  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }

.text-teal  { color: var(--teal);  }
.text-gold  { color: var(--gold);  }
.text-navy  { color: var(--navy);  }
.text-grey  { color: var(--grey-text); }
.text-center { text-align: center; }

/* ─── LAYOUT UTILITIES ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-wide {
  max-width: 1440px;
}

.section {
  padding: 5rem 0;
}
.section-sm {
  padding: 3rem 0;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ─── SECTION HEADERS ────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.section-header {
  margin-bottom: 3rem;
}
.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: var(--shadow-teal);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(240,165,0,.35);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.9);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(15,43,72,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 32px rgba(0,0,0,.25);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.navbar-logo img {
  height: 52px;
  width: auto;
}
.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar-logo-text .brand-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.navbar-logo-text .brand-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar-nav a {
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7em;
  opacity: .7;
  transition: transform var(--transition);
  display: inline-block;
}
.nav-dropdown.open > a::after,
.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  /* No gap — use padding-top as a transparent hover bridge */
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: transparent;
  padding-top: 8px;  /* bridge so mouse can travel to menu */
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  pointer-events: none;
  z-index: 2000;
}
.dropdown-menu-inner {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  border: 1px solid rgba(0,0,0,.06);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: var(--dark-text) !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: var(--off-white) !important;
  color: var(--teal) !important;
}
.dropdown-menu a .dm-icon {
  width: 18px;
  text-align: center;
  color: var(--teal);
  flex-shrink: 0;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO SECTION ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(10,30,52,0.92) 0%, rgba(10,30,52,0.82) 50%, rgba(10,30,52,0.72) 100%), url('/assets/images/home_hero.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero::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='%2300ced1' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(0,206,209,.15);
  top: -150px;
  right: -100px;
}
.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(240,165,0,.1);
  bottom: -100px;
  left: 100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,206,209,.15);
  border: 1px solid rgba(0,206,209,.3);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 1.5rem;
  animation: fadeSlideDown 0.8s ease both;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  animation: fadeSlideUp 0.9s 0.15s ease both;
}
.hero h1 span { color: var(--teal); }

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  animation: fadeSlideUp 0.9s 0.3s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  animation: fadeSlideUp 0.9s 0.45s ease both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  animation: fadeSlideUp 0.9s 0.6s ease both;
}
.hero-stat .stat-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat .stat-val span {
  color: var(--teal);
}
.hero-stat .stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
/* ─── PAGE HERO (photo background variant) ───────────────── */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}

/* When used with a photo bg image set via inline style or data-bg */
.page-hero.has-photo {
  min-height: 460px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Dark gradient overlay over the photo */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,30,52,.55) 0%,
    rgba(10,30,52,.80) 60%,
    rgba(10,30,52,.92) 100%
  );
  z-index: 1;
}

/* Fallback for no-photo pages: solid gradient */
.page-hero:not(.has-photo) {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  align-items: center;
  padding: 8rem 0 4rem;
}
.page-hero:not(.has-photo)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300ced1' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}
.page-hero:not(.has-photo) .page-hero-overlay { display: none; }

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 3.5rem;
  width: 100%;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,.8); font-size: 1.1rem; }
.page-hero .section-label { color: rgba(255,255,255,.7); }

/* Navbar always dark — add class "navbar-dark-init" to body on photo-hero pages */
body.navbar-dark-init #navbar {
  background: rgba(15,43,72,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 32px rgba(0,0,0,.25);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.5);
  margin-top: 1rem;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* ─── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--grey-light);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(0,206,209,.2);
}

.service-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
}
.service-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(0,206,209,.12), rgba(0,206,209,.06));
  color: var(--teal);
  transition: all var(--transition);
}
.card:hover .service-icon {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.08);
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--grey-text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}
.card:hover .service-link { gap: 0.6rem; }

/* ─── FEATURE STRIP ──────────────────────────────────────── */
.feature-strip {
  background: var(--navy);
  padding: 2rem 0;
}
.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  divide-color: rgba(255,255,255,.08);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.feature-item:last-child { border-right: none; }
.feature-item-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}
.feature-item-text .title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.feature-item-text .sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
}

/* ─── PACKAGES ───────────────────────────────────────────── */
.package-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.package-img {
  height: 220px;
  overflow: hidden;
}
.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.package-card:hover .package-img img {
  transform: scale(1.06);
}
.package-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.package-body { padding: 1.75rem; }
.package-body h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.package-body p  { font-size: 0.875rem; color: var(--grey-text); margin-bottom: 1.25rem; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--teal);
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-text  { font-size: 0.93rem; color: var(--grey-text); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.testimonial-name  { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.testimonial-role  { font-size: 0.78rem; color: var(--grey-text); }

/* ─── CONTACT STRIP ──────────────────────────────────────── */
.contact-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.contact-strip::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(0,206,209,.08);
  border-radius: 50%;
  top: -200px;
  right: -100px;
}
.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0,206,209,.15);
  border: 1px solid rgba(0,206,209,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--teal);
}
.contact-item-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 0.25rem;
}
.contact-item-val {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ─── FORMS ──────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group label .req { color: #e53e3e; margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--dark-text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,206,209,.12);
}
.form-control::placeholder { color: var(--grey-mid); }

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7c93' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-error {
  font-size: 0.8rem;
  color: #e53e3e;
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.alert {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.alert-success { background: #f0fff4; color: #276749; border: 1px solid #9ae6b4; }
.alert-error   { background: #fff5f5; color: #c53030; border: 1px solid #feb2b2; }
.alert-info    { background: #ebf8ff; color: #2b6cb0; border: 1px solid #90cdf4; }

/* Multi-step form */
.form-steps-nav {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--grey-light);
  padding: 4px;
  border-radius: 999px;
}
.step-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-text);
  cursor: default;
  border-radius: 999px;
  transition: all var(--transition);
}
.step-btn.active {
  background: var(--navy);
  color: var(--white);
}
.step-btn.done {
  color: var(--teal);
}
.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--grey-light);
  flex-shrink: 0;
}
.step-btn.active .step-num { background: var(--teal); }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.4s ease; }

/* ─── FAQ ACCORDION ──────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.75rem;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: rgba(0,206,209,.25); }
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.faq-item.open .faq-question { background: var(--off-white); }
.faq-icon { transition: transform var(--transition); font-style: normal; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--teal); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--grey-text);
  line-height: 1.7;
}

/* ─── BLOG ───────────────────────────────────────────────── */
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--grey-light);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.blog-img { height: 200px; overflow: hidden; background: var(--grey-light); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; font-size: 0.78rem; color: var(--grey-text); margin-bottom: 0.75rem; }
.blog-cat { background: rgba(0,206,209,.12); color: var(--teal); font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 999px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.blog-body p { font-size: 0.875rem; color: var(--grey-text); }

/* ─── EVENTS ─────────────────────────────────────────────── */
.event-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.event-date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  width: 68px;
  height: 72px;
  flex-shrink: 0;
}
.event-date-box .day { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; line-height: 1; }
.event-date-box .month { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--teal); }
.event-info h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.event-info .event-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--grey-text); margin-bottom: 0.6rem; }
.event-info p { font-size: 0.875rem; color: var(--grey-text); }

/* ─── TEAM GRID ──────────────────────────────────────────── */
.team-card { text-align: center; }
.team-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--teal), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  border: 4px solid var(--off-white);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
  overflow: hidden;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.card:hover .team-avatar { transform: scale(1.06); }
.team-card h4 { margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.82rem; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.team-card p { font-size: 0.875rem; color: var(--grey-text); margin-top: 0.5rem; }

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-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='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section > .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-section p  { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #07192c;
  padding: 4rem 0 0;
  color: rgba(255,255,255,.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand img { height: 52px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: var(--teal); }
.footer-links a::before { content: '›'; color: var(--teal); font-size: 1rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.footer-contact-icon { color: var(--teal); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,.3);
}

/* ─── WHATSAPP FAB ───────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.35);
  animation: pulse-ring 2s ease-out infinite;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── UTILITY ────────────────────────────────────────────── */
.bg-white   { background: var(--white); }
.bg-offwhite{ background: var(--off-white); }
.bg-navy    { background: var(--navy); }
.bg-teal    { background: var(--teal); }

.rounded-lg { border-radius: var(--radius-lg); }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-teal  { background: rgba(0,206,209,.12); color: var(--teal); }
.badge-gold  { background: rgba(240,165,0,.12);  color: var(--gold); }
.badge-navy  { background: rgba(15,43,72,.08);   color: var(--navy); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4             { grid-template-columns: repeat(2, 1fr); }
  .feature-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar-nav,
  .navbar-cta { display: none; }

  .navbar-nav.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(15,43,72,.98);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.08);
    z-index: 999;
  }
  .navbar-nav.mobile-open a {
    width: 100%;
    padding: 0.75rem 1rem;
  }
  .navbar-nav.mobile-open .dropdown-menu {
    position: static;
    display: none;
    transform: none;
    background: rgba(255,255,255,.04);
    box-shadow: none;
    padding: 0.25rem 0;
    border-radius: var(--radius-sm);
    margin-top: 0.25rem;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    width: 100%;
  }
  .navbar-nav.mobile-open .nav-dropdown.open .dropdown-menu {
    display: block;
  }
  .navbar-nav.mobile-open .dropdown-menu-inner {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  .navbar-nav.mobile-open .dropdown-menu a {
    color: rgba(255,255,255,.8) !important;
    padding: 0.5rem 1.5rem !important;
  }
  .navbar-nav.mobile-open .dropdown-menu a:hover {
    color: var(--teal) !important;
    background: transparent !important;
  }
  .navbar-nav.mobile-open + .navbar-cta {
    display: flex;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,.06);
    background: rgba(15,43,72,.98);
    position: fixed;
    bottom: 0;
    left: 0; right: 0;
    z-index: 999;
  }

  .menu-toggle { display: flex; }

  .hero { min-height: auto; padding: 7rem 0 4rem; }
  .hero-image { display: none; }

  .grid-2             { grid-template-columns: 1fr; }
  .grid-3             { grid-template-columns: 1fr; }
  .feature-strip-grid { grid-template-columns: 1fr; }
  .contact-strip-grid { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }

  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 0.875rem 1.5rem; font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
