:root {
  --brand-navy: #10284f;
  --brand-navy-deep: #0b1d39;
  --brand-gold: #caa255;
  --brand-gold-soft: #ead8af;
  --brand-cream: #f8f5ee;
  --brand-ink: #22304a;
  --brand-muted: #667085;
  --brand-border: rgba(16, 40, 79, 0.12);
  --shadow-soft: 0 24px 60px rgba(16, 40, 79, 0.12);
  --shadow-card: 0 16px 40px rgba(16, 40, 79, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--brand-ink);
  background:
    radial-gradient(circle at top left, rgba(202, 162, 85, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f9fafc 100%);
}

h1,
h2,
h3,
h4,
.brand-title {
  font-family: "Cormorant Garamond", serif;
}

a {
  text-decoration: none;
}

.text-brand {
  color: var(--brand-navy);
}

.text-gold {
  color: var(--brand-gold);
}

.bg-cream {
  background-color: var(--brand-cream);
}

.section-pad {
  padding: 5rem 0;
}

.topbar {
  background: var(--brand-navy-deep);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.topbar a {
  color: #fff;
}

.navbar {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(16, 40, 79, 0.08);
  z-index: 1045;
}

.navbar-brand {
  color: var(--brand-navy);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-gold), #f1dfb2);
  color: var(--brand-navy);
  box-shadow: inset 0 0 0 1px rgba(16, 40, 79, 0.12);
}

.brand-logo {
  height: 5.75rem;
  width: auto;
  object-fit: contain;
}

.nav-link {
  color: var(--brand-ink);
  font-weight: 600;
}

.nav-link.active,
.nav-link:hover {
  color: var(--brand-navy);
}

.btn-brand {
  background: linear-gradient(135deg, var(--brand-navy), #21457e);
  color: #fff;
  border: none;
  box-shadow: 0 14px 28px rgba(16, 40, 79, 0.18);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  background: linear-gradient(135deg, #21457e, var(--brand-navy));
}

.btn-outline-brand {
  border: 1px solid rgba(16, 40, 79, 0.16);
  color: var(--brand-navy);
  background: #fff;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  color: var(--brand-navy);
  background: rgba(202, 162, 85, 0.12);
  border-color: rgba(202, 162, 85, 0.55);
}

.hero {
  position: relative;
  padding: 7rem 0 6rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 29, 57, 0.9) 0%, rgba(11, 29, 57, 0.82) 42%, rgba(11, 29, 57, 0.55) 100%),
    url("../images/page-hero-default.jpg") center/cover;
  color: #fff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.hero::before {
  width: 28rem;
  height: 28rem;
  right: -8rem;
  top: -6rem;
  background: radial-gradient(circle, rgba(202, 162, 85, 0.3), transparent 62%);
}

.hero::after {
  width: 20rem;
  height: 20rem;
  left: -7rem;
  bottom: -8rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  background: rgba(202, 162, 85, 0.14);
  color: var(--brand-navy);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel {
  max-width: 46rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.hero .lead,
.hero .mini-note {
  color: rgba(255, 255, 255, 0.78) !important;
}

.hero .text-brand {
  color: #fff;
}

.hero .hero-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero .metric-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
}

.hero .metric-card .text-brand {
  color: #fff;
}

.hero .btn-outline-brand {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: transparent;
}

.hero .btn-outline-brand:hover,
.hero .btn-outline-brand:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.metric-card,
.service-card,
.testimonial-card,
.contact-card,
.value-card,
.info-card {
  height: 100%;
  border: 1px solid var(--brand-border);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.metric-card {
  padding: 1.4rem;
}

.service-card,
.testimonial-card,
.contact-card,
.value-card,
.info-card {
  padding: 1.8rem;
}

.icon-chip {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(202, 162, 85, 0.16), rgba(16, 40, 79, 0.08));
  color: var(--brand-navy);
  font-size: 1.35rem;
}

.service-list,
.contact-list,
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li,
.contact-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  color: var(--brand-muted);
}

.service-list li::before,
.contact-list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(202, 162, 85, 0.18);
}

.section-title {
  max-width: 42rem;
}

.section-kicker {
  color: var(--brand-gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.breadcrumb-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.breadcrumb-wrap a {
  color: #fff;
}

.breadcrumb-sep {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: rgba(202, 162, 85, 0.9);
}

.page-hero {
  position: relative;
  padding: 2.75rem 0;
  background:
    linear-gradient(120deg, rgba(11, 29, 57, 0.94), rgba(16, 40, 79, 0.82)),
    var(--page-hero-image, url("../images/page-hero-default.jpg")) center/cover;
  color: #fff;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(202, 162, 85, 0.22), transparent 28%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.floating-panel {
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  right: 1.2rem;
  color: rgba(202, 162, 85, 0.3);
  font-size: 4.5rem;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
}

.cta-band {
  background: linear-gradient(135deg, var(--brand-navy), #21457e);
  color: #fff;
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
}

.free-service-banner {
  display: flex;
  justify-content: center;
}

.free-service-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(202, 162, 85, 0.16), rgba(16, 40, 79, 0.08));
  border: 1px solid rgba(202, 162, 85, 0.28);
  color: var(--brand-navy);
  font-weight: 700;
  box-shadow: var(--shadow-card);
}

.free-service-highlight i {
  color: var(--brand-gold);
}

.footer {
  background: var(--brand-navy-deep);
  color: rgba(255, 255, 255, 0.76);
}

.footer a {
  color: #fff;
}

.footer-list li + li {
  margin-top: 0.7rem;
}

.footer-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-list i {
  font-size: 0.85rem;
}

.footer-socials,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-socials a,
.social-links a {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-socials a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer-socials a:hover,
.footer-socials a:focus,
.social-links a:hover,
.social-links a:focus {
  transform: translateY(-2px);
}

.social-links-light a {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.mini-note {
  color: var(--brand-muted);
  font-size: 0.95rem;
}

.form-control,
.form-select {
  border-radius: 0.9rem;
  border-color: rgba(16, 40, 79, 0.14);
  padding: 0.85rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(202, 162, 85, 0.7);
  box-shadow: 0 0 0 0.25rem rgba(202, 162, 85, 0.18);
}

.map-card {
  min-height: 100%;
  background:
    linear-gradient(160deg, rgba(16, 40, 79, 0.95), rgba(33, 69, 126, 0.82)),
    radial-gradient(circle at top left, rgba(202, 162, 85, 0.35), transparent 30%);
  color: #fff;
}

@media (max-width: 991.98px) {
  .hero {
    padding: 5.5rem 0 4.5rem;
  }

  .floating-panel {
    margin-top: -1rem;
  }
}

@media (max-width: 575.98px) {
  .section-pad {
    padding: 4rem 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.4rem;
  }

  .service-card,
  .testimonial-card,
  .contact-card,
  .value-card,
  .info-card {
    padding: 1.4rem;
  }
}

.top-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
}

.top-pill::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(202, 162, 85, 0.12);
}

.top-pill + .top-pill {
  margin-left: 1.25rem;
}

.top-pill-orange,
.top-pill-blue,
.top-pill-slate {
  background: transparent;
}

.topbar-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.topbar-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar-contacts i {
  font-size: 0.78rem;
}

.topbar-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.offcanvas-title {
  color: var(--brand-navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
}

.mobile-nav-list .nav-link {
  padding: 0.85rem 0;
  font-size: 1.08rem;
}

.homepage-shell {
  overflow: hidden;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7.5rem 0 5rem;
  background:
    linear-gradient(90deg, rgba(10, 32, 66, 0.92) 0%, rgba(10, 32, 66, 0.82) 48%, rgba(10, 32, 66, 0.88) 100%),
    url("../images/home-hero.jpg") center/cover;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 19, 41, 0.12) 0%, rgba(5, 19, 41, 0.28) 100%);
}

.home-hero .container {
  z-index: 1;
}

.hero-copy {
  max-width: 40rem;
  color: #fff;
}

.hero-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-feature-list span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.hero-feature-list span::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 0 5px rgba(202, 162, 85, 0.16);
}

.home-hero-title {
  color: #fff;
  font-size: clamp(2.8rem, 4.8vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.home-hero .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.home-hero .lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 37rem;
  font-size: 1rem;
  line-height: 1.75;
}

.hero-side-stack {
  display: grid;
  gap: 1rem;
}

.hero-stat-card,
.hero-mini-stat,
.hero-highlight-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(9, 22, 44, 0.26);
}

.hero-stat-card,
.hero-highlight-card {
  padding: 1.65rem;
}

.hero-side-card {
  padding: 1.9rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(9, 22, 44, 0.28);
}

.hero-side-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-side-kicker::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(202, 162, 85, 0.18);
}

.hero-side-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-side-text {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
  font-size: 0.98rem;
}

.hero-side-points {
  display: grid;
  gap: 0.8rem;
}

.hero-side-points span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.hero-side-points i {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-gold);
  font-size: 0.9rem;
}

.hero-side-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-side-metric {
  display: flex;
  flex-direction: column;
}

.hero-side-metric strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.hero-side-metric span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-mini-stat {
  padding: 1.2rem;
}

.hero-stat-number,
.hero-mini-number {
  font-family: "Cormorant Garamond", serif;
  font-weight: 800;
  line-height: 1;
}

.hero-stat-number {
  font-size: 2.8rem;
}

.hero-mini-number {
  font-size: 2rem;
}

.hero-stat-label,
.hero-mini-label {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 0.45rem;
}

.hero-highlight-card {
  position: relative;
  overflow: hidden;
}

.hero-highlight-card::before {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 162, 85, 0.22), transparent 70%);
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-note i {
  color: var(--brand-gold);
}

.hero-services-panel {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background:
    linear-gradient(180deg, rgba(10, 32, 66, 0.06) 0%, rgba(10, 32, 66, 0) 100%);
}

.hero-services-panel .row {
  margin-top: 0;
}

.quick-card {
  height: 100%;
  border-radius: 1.6rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 50px rgba(16, 40, 79, 0.12);
}

.quick-card-media {
  height: 9rem;
  background-size: cover;
  background-position: center;
}

.quick-card-body {
  padding: 1.4rem;
}

.quick-card-body h3,
.value-card h3,
.service-box h3,
.service-box h2 {
  letter-spacing: -0.02em;
}

.quick-card-accent {
  background: linear-gradient(135deg, #10284f, #29508f);
}

.quick-link {
  color: var(--brand-navy);
  font-weight: 700;
  font-size: 0.95rem;
}

.destinations-section {
  padding-top: 8rem;
}

.why-section {
  padding-top: 5rem;
}

.destination-card,
.event-card,
.service-box {
  height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--brand-border);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.destination-image {
  height: 13rem;
  background-size: cover;
  background-position: center;
}

.destination-body,
.event-body,
.service-box {
  padding: 1.35rem;
}

.event-poster {
  height: 13rem;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1.05;
}

.event-poster-purple {
  background: linear-gradient(135deg, #6d3bb4, #f45aa8);
}

.event-poster-red {
  background: linear-gradient(135deg, #bf2b2b, #f18729);
}

.event-poster-blue {
  background: linear-gradient(135deg, #1c5fb8, #28b4d8);
}

.event-poster-gold {
  background: linear-gradient(135deg, #7d5b13, #f1ab27);
}

.event-meta {
  color: var(--brand-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.testimonials-split {
  background:
    radial-gradient(circle at left center, rgba(202, 162, 85, 0.11), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f5f7fb 100%);
}

.video-promo-card {
  position: relative;
  min-height: 26rem;
  border-radius: 1.8rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.video-promo-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(16, 40, 79, 0.28), rgba(16, 40, 79, 0.18)),
    url("../images/video-promo.jpg") center/cover;
}

.video-play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f44336;
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 16px 36px rgba(244, 67, 54, 0.35);
}

.featured-testimonial {
  background: #fff;
}

.testimonial-carousel-shell {
  padding: 2rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.testimonial-slide {
  position: relative;
  min-height: 100%;
  padding: 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(16, 40, 79, 0.08);
}

.testimonial-quote-icon {
  width: 3.4rem;
  height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
  background: rgba(202, 162, 85, 0.16);
  color: var(--brand-navy);
  font-size: 1.25rem;
}

.testimonial-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.carousel-indicators.testimonial-indicators {
  position: static;
  margin: 1.5rem 0 0;
  justify-content: flex-start;
}

.carousel-indicators.testimonial-indicators [data-bs-target] {
  width: 0.7rem;
  height: 0.7rem;
  margin: 0 0.35rem 0 0;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 40, 79, 0.18);
  opacity: 1;
}

.carousel-indicators.testimonial-indicators .active {
  width: 2rem;
  border-radius: 999px;
  background: var(--brand-gold);
}

.carousel-control-prev.testimonial-control,
.carousel-control-next.testimonial-control {
  position: static;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(16, 40, 79, 0.08);
  color: var(--brand-navy);
  opacity: 1;
  box-shadow: var(--shadow-card);
}

.carousel-control-prev.testimonial-control span,
.carousel-control-next.testimonial-control span {
  background-image: none;
  width: auto;
  height: auto;
  font-size: 1rem;
}

.testimonial-controls {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.avatar-chip {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold), #f2d18c);
  color: var(--brand-navy);
  font-weight: 800;
}

.testimonial-dots {
  display: flex;
  gap: 0.45rem;
}

.testimonial-dots span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(16, 40, 79, 0.18);
}

.testimonial-dots .active {
  width: 1.75rem;
  border-radius: 999px;
  background: var(--brand-gold);
}

.about-bullets {
  display: grid;
  gap: 0.9rem;
}

.about-bullet {
  padding-left: 1.5rem;
  position: relative;
  color: var(--brand-muted);
}

.about-bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(202, 162, 85, 0.16);
}

.about-photo {
  border-radius: 1.5rem;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}

.about-photo.tall {
  min-height: 27rem;
}

.about-photo.short {
  min-height: 12.75rem;
}

.founder-profile {
  padding: 2.25rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top left, rgba(202, 162, 85, 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid var(--brand-border);
  box-shadow: var(--shadow-card);
}

.founder-photo-frame {
  padding: 1rem;
  border-radius: 1.75rem;
  background: linear-gradient(145deg, rgba(202, 162, 85, 0.18), rgba(16, 40, 79, 0.08));
  box-shadow: var(--shadow-card);
}

.founder-photo {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
}

.founder-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.2rem 1.5rem;
}

.stats-ribbon-wrap {
  margin-top: -1.25rem;
  margin-bottom: 1rem;
}

.stats-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 1.8rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.stats-item {
  text-align: center;
}

.stats-number {
  color: var(--brand-navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.stats-label {
  color: var(--brand-muted);
  font-size: 0.95rem;
}

.services-grid-section {
  background:
    radial-gradient(circle at right top, rgba(16, 40, 79, 0.05), transparent 24%),
    linear-gradient(180deg, #fbfcfe 0%, #fff 100%);
}

.service-box-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(202, 162, 85, 0.16), rgba(16, 40, 79, 0.08));
  color: var(--brand-navy);
  font-weight: 800;
}

.service-box-icon i,
.icon-chip i {
  font-size: 1.1rem;
}

.academy-band {
  padding: 1.5rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3fa 100%);
  box-shadow: var(--shadow-card);
}

.academy-photo {
  min-height: 24rem;
  border-radius: 1.5rem;
  background:
    linear-gradient(0deg, rgba(16, 40, 79, 0.28), rgba(16, 40, 79, 0.18)),
    url("../images/academy-photo.jpg") center/cover;
}

.exam-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.exam-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6rem;
  border-radius: 1.25rem;
  border: 1px solid var(--brand-border);
  background: #fff;
  color: var(--brand-navy);
  font-weight: 800;
  font-size: 1.25rem;
}

.partners-section {
  background: #fff;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.partner-logos span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid var(--brand-border);
  background: #fff;
  color: var(--brand-navy);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.final-cta {
  padding: 2.25rem;
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(11, 29, 57, 0.95), rgba(32, 69, 124, 0.88)),
    url("../images/home-hero.jpg") center/cover;
  box-shadow: var(--shadow-soft);
}

.footer-tagline {
  max-width: 42rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-subline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.contact-icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-icon-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}

.contact-icon-list i {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.spam-trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1055;
  width: 3.9rem;
  height: 3.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #149c4b);
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 18px 40px rgba(20, 156, 75, 0.32);
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .offcanvas.offcanvas-start {
    width: min(22rem, 88vw);
    height: 100vh;
    max-height: 100vh;
    z-index: 1060;
    background: #fff;
    border-right: 1px solid rgba(16, 40, 79, 0.08);
    box-shadow: 0 24px 60px rgba(16, 40, 79, 0.18);
  }

  .offcanvas-header {
    border-bottom: 1px solid rgba(16, 40, 79, 0.08);
    background: #fff;
  }

  .offcanvas-backdrop {
    z-index: 1055;
  }

  .offcanvas-body {
    background: #fff;
    min-height: calc(100vh - 88px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .mobile-nav-list {
    width: 100%;
    align-items: flex-start !important;
    text-align: left;
  }

  .mobile-nav-list .nav-item {
    width: 100%;
    margin-left: 0 !important;
  }

  .mobile-nav-list .nav-link {
    width: 100%;
    text-align: left;
  }

  .mobile-nav-list .btn {
    align-self: flex-start;
  }

  .home-hero {
    min-height: auto;
    padding-top: 6rem;
  }

  .destinations-section {
    padding-top: 4rem;
  }

  .stats-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .founder-list {
    grid-template-columns: 1fr;
  }

  .topbar {
    font-size: 0.82rem;
  }

  .topbar-services {
    display: none;
  }

  .topbar-contacts {
    gap: 0.85rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 767.98px) {
  .hero-stat-grid,
  .exam-tiles,
  .partner-logos {
    grid-template-columns: 1fr;
  }

  .hero-feature-list {
    grid-template-columns: 1fr;
  }

  .stats-ribbon {
    grid-template-columns: 1fr;
  }

  .academy-band,
  .final-cta {
    padding: 1.5rem;
  }

  .founder-profile {
    padding: 1.5rem;
  }

  .testimonial-carousel-shell,
  .testimonial-slide {
    padding: 1.4rem;
  }

  .hero-side-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
