/* =====================
   Edugram  – STYLE.CSS
   ===================== */

:root {
  --navy: #0a1628;
  --navy-mid: #142240;
  --navy-light: #1e3a5f;
  --gold: #c9a84c;
  --gold-light: #e8cc80;
  --gold-pale: #fdf5e0;
  --cream: #faf8f3;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(10,22,40,0.1);
  --shadow-hover: 0 12px 40px rgba(10,22,40,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

em { color: var(--gold); font-style: italic; }

/* =====================
   TOPBAR
   ===================== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  letter-spacing: 0.02em;
}
.topbar span { display: inline-flex; align-items: center; }
.topbar a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.topbar a:hover { color: var(--gold); }

/* =====================
   NAVBAR
   ===================== */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  box-shadow: 0 2px 16px rgba(10,22,40,0.07);
  z-index: 999;
}
.navbar-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}
.brand-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.brand-sub {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
}
.main-nav .nav-link {
  color: var(--text) !important;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem !important;
  border-radius: 6px;
  transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--gold) !important; }
.main-nav .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem;
}
.main-nav .dropdown-item {
  border-radius: 8px;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  color: var(--text);
}
.main-nav .dropdown-item:hover { background: var(--gold-pale); color: var(--navy); }
.navbar-toggler { border: 1px solid var(--border); }
.navbar-toggler:focus { box-shadow: none; }

/* =====================
   BUTTONS
   ===================== */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-outline-navy {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* =====================
   HERO
   ===================== */
.hero-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(30,58,95,0.8) 0%, transparent 50%);
  pointer-events: none;
}
.min-vh-80 { min-height: 70vh; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
  font-weight: 700;
}
.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 500px;
  font-weight: 300;
}
.text-gold { color: var(--gold) !important; }

/* Hero Stats Bar */
.hero-stats-bar {
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4rem;
}
.stat-item {
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.35rem;
}

/* =====================
   SECTIONS
   ===================== */
.section-pad { padding: 5rem 0; }
.bg-light-cream { background: var(--cream); }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 520px;
  font-weight: 300;
}
.mb-6 { margin-bottom: 4rem; }
.letter-spacing { letter-spacing: 0.08em; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }

/* =====================
   FEATURE CARDS
   ===================== */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,0.3);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.feature-card h5 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* =====================
   DESTINATION CARDS
   ===================== */
.dest-card-link { text-decoration: none; }
.dest-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  color: var(--white);
  cursor: pointer;
  transition: all 0.25s;
  border: 1px solid rgba(255,255,255,0.05);
  height: 100%;
}
.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,22,40,0.25);
  border-color: rgba(201,168,76,0.3);
}
.dest-flag { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.dest-card h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.dest-card p { color: rgba(255,255,255,0.55); font-size: 0.83rem; margin: 0; }
.dest-arrow {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-top: 0.75rem;
  transition: transform 0.2s;
}
.dest-card:hover .dest-arrow { transform: translateX(4px); }
.dest-card-more { border: 1px dashed rgba(201,168,76,0.3); }

/* =====================
   SERVICES STRIP
   ===================== */
.services-strip { background: var(--navy-mid); }
.svc-item {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.2s;
}
.svc-item:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.35); }
.svc-item i {
  font-size: 1.5rem;
  color: var(--gold);
  min-width: 28px;
  margin-top: 2px;
}
.svc-item h6 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.25rem; font-family: 'Outfit', sans-serif; }
.svc-item p { color: rgba(255,255,255,0.45); font-size: 0.82rem; margin: 0; line-height: 1.55; }

/* =====================
   STEPS
   ===================== */
.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 auto;
  background: var(--gold-pale);
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.25s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.95rem; }
.test-quote { font-style: italic; color: var(--muted); font-size: 0.88rem; line-height: 1.7; }
.test-author { display: flex; align-items: center; gap: 0.75rem; }
.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

/* =====================
   CTA BANNER
   ===================== */
.cta-banner {
  background: var(--gold);
  padding: 5rem 0;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.cta-banner p { color: rgba(10,22,40,0.65); font-size: 1rem; margin: 0; }

/* =====================
   FOOTER
   ===================== */
.main-footer { background: var(--navy); }
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}
.footer-brand span { color: var(--white); font-weight: 400; }
.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
}
.social-icons a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
  background: var(--navy);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.page-hero-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* =====================
   ABOUT PAGE
   ===================== */
.about-stat-box {
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}
.about-stat-box .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.about-stat-box .stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-image-block {
  position: relative;
}
.about-img-placeholder {
  background: var(--navy);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  gap: 0.75rem;
  border: 1px solid rgba(201,168,76,0.15);
}
.about-img-placeholder i { font-size: 3rem; }
.about-img-placeholder p { font-size: 0.85rem; text-align: center; line-height: 1.5; }
.about-badge-float {
  position: absolute;
  bottom: -16px;
  left: 32px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow);
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all 0.25s;
}
.value-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 1.25rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all 0.25s;
}
.team-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0 auto;
  border: 3px solid var(--gold-pale);
}

/* =====================
   DESTINATIONS PAGE
   ===================== */
.dest-detail-flag { font-size: 3rem; margin-bottom: 1rem; }
.dest-fact {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
}
.dest-fact strong { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-family: 'Outfit', sans-serif; font-weight: 500; margin-bottom: 0.2rem; }
.dest-fact span { font-size: 0.9rem; color: var(--navy); font-weight: 500; }
.uni-list-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.uni-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text);
}
.uni-row:last-child { border-bottom: none; }
.uni-rank {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  min-width: 28px;
  font-weight: 700;
}
.uni-row span:nth-child(2) { flex: 1; }
.badge-subject {
  font-size: 0.68rem;
  background: var(--gold-pale);
  color: var(--navy);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
}
.mini-dest-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.mini-dest-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.mini-flag { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.mini-dest-card p { font-size: 0.82rem; color: var(--text); margin: 0; font-weight: 500; }

/* =====================
   SERVICES PAGE
   ===================== */
.svc-detail-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-list li {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  align-items: center;
}
.svc-illustration-box {
  background: var(--navy);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  gap: 1rem;
  border: 1px solid rgba(201,168,76,0.1);
}
.svc-illustration-box i { font-size: 4rem; color: rgba(201,168,76,0.25); }
.svc-illustration-box p { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.test-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all 0.25s;
}
.test-card:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.test-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
  line-height: 1;
}
.test-card h6 { color: var(--navy); margin-bottom: 0.75rem; font-family: 'Outfit', sans-serif; font-size: 1rem; }

/* =====================
   CONTACT PAGE
   ===================== */
.contact-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.consult-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-control, .form-select {
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  padding: 0.65rem 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  outline: none;
}
.form-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.35rem;
  font-family: 'Outfit', sans-serif;
}
.map-placeholder {
  background: var(--cream);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(0deg, rgba(10,22,40,0.03) 0px, rgba(10,22,40,0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(10,22,40,0.03) 0px, rgba(10,22,40,0.03) 1px, transparent 1px, transparent 40px);
}
.map-label {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.faq-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.accordion-button {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--white);
}
.accordion-button:not(.collapsed) {
  color: var(--gold);
  background: var(--gold-pale);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-button::after { filter: none; }

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
[data-aos="fade-up"] { animation: fadeUp 0.7s ease forwards; }

/* =====================
   RESPONSIVE TWEAKS
   ===================== */
@media (max-width: 768px) {
  .topbar {
    padding: 0.3rem 0;
    font-size: 0.72rem;
    line-height: 1.25;
  }
  .topbar .container > .d-flex {
    justify-content: center !important;
    text-align: center;
    gap: 0 !important;
  }
  .topbar .container > .d-flex > .d-flex:first-child {
    justify-content: center;
    gap: 0.35rem 0.85rem !important;
    width: 100%;
  }
  .topbar .container > .d-flex > .d-flex:last-child {
    display: none !important;
  }
  .topbar span,
  .topbar a {
    font-size: 0.78rem;
    line-height: 1.25;
  }
  .topbar i {
    display: none;
  }
  .main-nav {
    padding: 0.35rem 0;
  }
  .navbar-brand {
    flex-direction: row;
    align-items: center;
    gap: 0.55rem;
  }
  .navbar-brand img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain;
  }
  .brand-main {
    font-size: 1.15rem;
    line-height: 1;
  }
  .brand-sub {
    display: none;
  }
  .navbar-toggler {
    padding: 0.35rem 0.55rem;
  }
  .hero-stats-bar .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .hero-stats-bar .stat-item:last-child { border-bottom: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .consult-form-box { padding: 1.5rem; }
  .section-pad { padding: 3rem 0; }
}

/* =====================
   HERO IMAGE
   ===================== */
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  z-index: 0;
}
.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  display: block;
}

/* =====================
   NAVBAR LOGO
   ===================== */
.navbar-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

/* =====================
   FOOTER LOGO
   ===================== */
.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

@media (max-width: 991px) {
  .hero-img-wrap { max-width: 100%; }
}


.video-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
