/* ===== ROOT VARIABLES ===== */
:root {
  --navy: #1B3080;
  --navy-dark: #101e52;
  --navy-light: #2a4199;
  --gold: #C9A227;
  --gold-light: #e0b83a;
  --gold-dark: #a8881a;
  --white: #ffffff;
  --light-bg: #f8f9fc;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --border-light: #e5e7eb;
  --shadow-sm: 0 2px 8px rgba(11, 42, 91, 0.08);
  --shadow-md: 0 8px 30px rgba(11, 42, 91, 0.12);
  --shadow-lg: 0 20px 60px rgba(11, 42, 91, 0.15);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.95s cubic-bezier(0.76, 0, 0.24, 1);
}

#preloader.hide { transform: translateY(-100%); }

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.preloader-logo {
  height: 300px;
  width: auto;
  opacity: 0;
  animation: pl-in 0.9s 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             pl-glow 2.5s 1.2s ease-in-out infinite alternate;
}

@keyframes pl-glow {
  from { filter: drop-shadow(0 0 6px rgba(212,175,55,0.4)) drop-shadow(0 0 2px rgba(212,175,55,0.6)); }
  to   { filter: drop-shadow(0 0 22px rgba(212,175,55,0.85)) drop-shadow(0 0 8px rgba(255,220,100,0.5)); }
}

.preloader-tagline {
  font-size: 1.02rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: -1.5rem;
  opacity: 0;
  animation: pl-in 0.9s 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: pl-in 0.1s 0.75s forwards;
}

.preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: pl-bar 1.7s 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes pl-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pl-bar {
  0%   { width: 0%; }
  65%  { width: 80%; }
  100% { width: 100%; }
}

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

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

::selection { background: var(--gold); color: var(--navy); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== NAVBAR ===== */
#mainNav {
  background: rgba(30, 58, 138, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
  padding: 0.25rem 0;
  z-index: 1000;
}

#mainNav.scrolled {
  padding: 0.15rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-brand img {
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.65))
          drop-shadow(0 0 3px rgba(212, 175, 55, 0.9));
  transition: filter 0.35s ease;
}

.navbar-brand:hover img {
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.85))
          drop-shadow(0 0 5px rgba(255, 220, 100, 0.6));
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.9rem !important;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover { color: var(--gold) !important; }
.navbar-nav .nav-link:hover::after { width: 70%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 50px;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  transition: var(--transition) !important;
  margin-left: 0.5rem;
}

.nav-cta::after { display: none; }
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.navbar-toggler {
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.3rem 0.6rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 75% 35%, rgba(212, 175, 55, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 15% 55%, rgba(212, 175, 55, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 90%, rgba(7, 16, 42, 0.55) 0%, transparent 40%),
    linear-gradient(115deg, rgba(7, 16, 42, 0.97) 0%, rgba(11, 42, 91, 0.90) 52%, rgba(7, 27, 60, 0.78) 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: -300px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1920&q=85') center/cover no-repeat;
  will-change: transform;
  transform: translateY(var(--parallax, 0px));
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-title .gold-text {
  color: transparent;
  background: linear-gradient(90deg,
    var(--gold-dark) 0%,
    var(--gold) 30%,
    #f7e07a 48%,
    var(--gold) 58%,
    var(--gold-dark) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gold-shimmer 5s 2.8s ease-in-out infinite;
}

@keyframes gold-shimmer {
  0%   { background-position: 100% center; }
  100% { background-position: -200% center; }
}

.hero-title.fade-up {
  filter: blur(12px);
  transition: opacity 1.1s ease, transform 1.1s ease, filter 1.1s ease;
}
.hero-title.fade-up.visible { filter: blur(0); }

.hero-subtitle.fade-up {
  filter: blur(6px);
  transition: opacity 1s 0.2s ease, transform 1s 0.2s ease, filter 1s 0.2s ease;
}
.hero-subtitle.fade-up.visible { filter: blur(0); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
}

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

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.stat-item { text-align: left; }

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Hero particles canvas */
#hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Hero decorative rings */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-deco-1 {
  width: 620px;
  height: 620px;
  top: -160px;
  right: -160px;
  border: 1px solid rgba(212, 175, 55, 0.07);
}

.hero-deco-2 {
  width: 360px;
  height: 360px;
  bottom: 4%;
  left: -100px;
  border: 1px solid rgba(212, 175, 55, 0.05);
}

/* Hero floating services card */
.hero-float-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem 1.75rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.08);
  width: 100%;
  max-width: 320px;
}

.hfc-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hfc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.hfc-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  transition: var(--transition);
}

.hfc-item:hover { background: rgba(255, 255, 255, 0.05); }

.hfc-icon {
  width: 38px;
  height: 38px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}

.hfc-item:hover .hfc-icon {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
}

.hfc-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
  margin-bottom: 0.1rem;
}

.hfc-text span {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.45);
}

.hfc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.hfc-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  gap: 0.75rem;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}

.hero-scroll-indicator span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
}

.hero-scroll-chevron {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  animation: bounce-down 2.5s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ===== SECTIONS ===== */
.section-padding { padding: 6rem 0; }
.section-padding-lg { padding: 8rem 0; }

/* ===== WHY US ===== */
#why-us { background: var(--light-bg); }

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  height: 100%;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.06));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
  color: var(--gold);
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  transform: scale(1.05);
}

.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ===== SERVICES ===== */
#services { background: var(--white); }

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrap img { transform: scale(1.08); }

.service-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 42, 91, 0.85);
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.service-body {
  padding: 1.75rem;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1rem;
  margin-top: -2.5rem;
  position: relative;
  box-shadow: 0 4px 15px rgba(11, 42, 91, 0.3);
}

.service-body h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.service-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.service-link:hover { color: var(--gold-dark); gap: 0.7rem; }

/* ===== BOOKING STEPS ===== */
#booking { background: var(--navy); position: relative; overflow: hidden; }

#booking::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.booking-flow {
  display: flex;
  align-items: flex-start;
  position: relative;
}

/* Connecting line through bubble centers */
.booking-flow::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(212, 175, 55, 0.22);
}

.bflow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
  z-index: 1;
}

.bflow-head { margin-bottom: 0.9rem; }

.bflow-bubble {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--gold);
  transition: var(--transition);
}

.bflow-step:hover .bflow-bubble {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: scale(1.1);
}

.bflow-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bflow-num {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.4);
  letter-spacing: 0.2em;
  margin-bottom: 0.4rem;
}

.bflow-step h5 {
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.bflow-step p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 767.98px) {
  .booking-flow {
    flex-direction: column;
    gap: 0;
    padding-left: 1.5rem;
  }

  .booking-flow::before {
    top: 0;
    bottom: 0;
    left: 25px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .bflow-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    padding: 0 0 1.75rem 0;
  }

  .bflow-step:last-child { padding-bottom: 0; }

  .bflow-head { margin-bottom: 0; flex-shrink: 0; }

  .bflow-body {
    align-items: flex-start;
    padding-top: 0.3rem;
  }
}

/* ===== ABOUT ===== */
#about { background: var(--light-bg); }

.about-img-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.about-badge-float {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
}

.about-badge-float .number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.about-badge-float .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.value-item:last-child { border-bottom: none; }

.value-check {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 0.1rem;
}

.value-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ===== CTA BANNER ===== */
#cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

#cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* ===== FAQ ===== */
#faq { background: var(--white); }

.accordion-item {
  border: 1px solid var(--border-light) !important;
  border-radius: 12px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy) !important;
  background: var(--white) !important;
  padding: 1.25rem 1.5rem;
  border-radius: 12px !important;
}

.accordion-button:not(.collapsed) {
  color: var(--gold) !important;
  background: var(--light-bg) !important;
  box-shadow: none !important;
}

.accordion-button:focus { box-shadow: none !important; }

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B2A5B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 0 1.5rem 1.25rem;
}

/* ===== CONTACT ===== */
#contact { background: var(--light-bg); }

.contact-info-card {
  background: var(--navy);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-value {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}

.contact-value:hover { color: var(--gold); }

.contact-form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.form-control, .form-select {
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus, .form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 42, 91, 0.08);
  outline: none;
}

textarea.form-control { resize: none; }

/* ===== FOOTER ===== */
#footer {
  background: #1e3a8a;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-logo .brand-name { font-size: 1rem; }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 0.5rem; line-height: 1.65; }

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: var(--gold); padding-left: 0.3rem; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
}

.footer-contact-item a { color: inherit; text-decoration: none; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 1.25rem 0 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-cvr {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-policy-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-policy-link:hover {
  color: var(--gold);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

#scrollTop.show { opacity: 1; pointer-events: auto; }
#scrollTop:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5); }

/* ===== DIVIDER ===== */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.gold-divider-left { margin: 0 0 1.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .navbar-collapse { background: rgba(30, 58, 138, 0.98); padding: 1rem; border-radius: 0 0 12px 12px; margin-top: 0.5rem; }
}

@media (max-width: 767.98px) {
  .section-padding { padding: 4rem 0; }
  .hero-stats { display: none; }
  .hero-scroll-indicator { display: none; }
  .about-img-container img { height: 320px; }
  .contact-info-card, .contact-form-card { padding: 2rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

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