:root {
  --ki-navy: #061426;
  --ki-deep-navy: #0B2545;
  --ki-royal-blue: #0E4BA8;
  --ki-sky-blue: #155EEF;
  --ki-indigo: #071B33;
  --ki-premium-gold: #D6A84F;
  --ki-soft-gold: #F2C76E;
  --ki-ivory: #F8F3E8;
  --ki-ivory-light: #FFF9EE;
  --ki-white: #FFFFFF;
  --ki-charcoal: #101828;
  --ki-muted: #667085;
  --ki-border: #E6EAF0;
  --ki-success: #0E9F6E;
  --ki-warning: #F59E0B;
  --ki-error: #D92D20;
}

body {
  font-family: 'Inter', 'Noto Sans Gujarati', 'Noto Sans Devanagari', sans-serif;
  color: var(--ki-charcoal);
  background: var(--ki-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
  color: var(--ki-navy);
}

.premium-heading {
  font-family: 'Playfair Display', serif;
}

/* Header Design */
.site-header {
    background: rgba(6, 20, 38, 0.90);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(10, 31, 68, 0.35);
    position: sticky;
    top: 0;
    z-index: 999;
  }
  .site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: -1;
  }

.nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Inter', sans-serif;
}

.nav-link:hover {
  color: var(--ki-soft-gold);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ki-soft-gold), var(--ki-premium-gold));
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Mega Menu */
.mega-menu {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(214, 168, 79, 0.18);
  box-shadow: 0 30px 80px rgba(10, 31, 68, 0.18);
  border-radius: 24px;
  padding: 24px;
}

.mega-menu-title {
  color: var(--ki-navy);
  font-weight: 800;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.mega-menu a {
  color: var(--ki-charcoal);
  font-weight: 500;
  transition: all 0.25s ease;
  display: block;
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
}

.mega-menu a:hover {
  color: var(--ki-royal-blue);
  background: linear-gradient(90deg, rgba(214,168,79,0.12), rgba(14,75,168,0.06));
  border-radius: 12px;
  padding-left: 16px;
}

/* Mobile Menu */
.mobile-menu {
  background: linear-gradient(180deg, #061426, #071B33);
  color: white;
  border-top: 1px solid rgba(214, 168, 79, 0.18);
}

.mobile-menu a {
  color: rgba(255,255,255,0.84);
  padding: 14px 0;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu a:hover {
  color: var(--ki-soft-gold);
}

/* Premium Gradient Hero & Sections */
.hero-premium {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(21, 94, 239, 0.25), transparent 35%),
    radial-gradient(circle at bottom left, rgba(214, 168, 79, 0.18), transparent 30%),
    linear-gradient(135deg, #061426, #0B2545);
  overflow: hidden;
  color: white;
}

.section-blue-gold {
  background:
    radial-gradient(circle at top left, rgba(214,168,79,0.18), transparent 30%),
    linear-gradient(135deg, #061426, #0E4BA8);
  color: white;
  position: relative;
  overflow: hidden;
}

.section-navy {
  background: linear-gradient(135deg, #061426, #0B2545);
  color: white;
}

.section-ivory { 
  background: var(--ki-ivory); 
}
.section-ivory-light { 
  background: var(--ki-ivory-light); 
}
.section-light { 
  background: #FFFFFF; 
}

/* Buttons */
.btn-primary, .btn-gold {
  background: linear-gradient(135deg, #F2C76E, #D6A84F);
  color: var(--ki-navy);
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 10px 25px rgba(214,168,79,0.35);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before, .btn-gold::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.btn-primary:hover::before, .btn-gold:hover::before {
  left: 150%;
}

.btn-primary:hover, .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(214,168,79,0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--ki-white);
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--ki-white);
  transform: translateY(-2px);
}

/* Cards */
.luxury-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF8 100%);
  border: 1px solid rgba(214, 168, 79, 0.18);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(10, 31, 68, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.luxury-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top left, rgba(214, 168, 79, 0.05), transparent 40%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.luxury-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(10, 31, 68, 0.12);
  border-color: rgba(214, 168, 79, 0.38);
}

.luxury-card:hover::after {
  opacity: 1;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.20);
  color: white;
}

.dark-premium-card {
  background: linear-gradient(145deg, rgba(6,20,38,0.96), rgba(14,75,168,0.72));
  border: 1px solid rgba(214, 168, 79, 0.24);
  border-radius: 26px;
  color: white;
  box-shadow: 0 28px 80px rgba(10, 31, 68, 0.35);
  transition: all 0.35s ease;
}

.dark-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(10, 31, 68, 0.45);
  border-color: var(--ki-soft-gold);
}


/* Text Contrast */
.dark-section h1, .dark-section h2, .dark-section h3 { color: #FFFFFF; }
.dark-section p { color: rgba(255,255,255,0.76); }
.dark-section .highlight { color: var(--ki-soft-gold); }

.light-section h1, .light-section h2, .light-section h3 { color: var(--ki-navy); }
.light-section p { color: var(--ki-muted); }
.light-section .highlight { color: var(--ki-royal-blue); }

/* Animation Effects */
.growth-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawLine 3s ease forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.animate-pulse-glow {
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  from { opacity: 0.3; transform: scale(0.95); }
  to { opacity: 0.7; transform: scale(1.05); }
}

.icon-premium {
  background: linear-gradient(135deg, rgba(214,168,79,0.18), rgba(21,94,239,0.12));
  color: var(--ki-royal-blue);
  border-radius: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-premium:hover {
  color: var(--ki-premium-gold);
  transform: translateY(-2px) scale(1.05);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Premium */
.footer-premium {
  background:
    radial-gradient(circle at top right, rgba(214,168,79,0.12), transparent 30%),
    linear-gradient(135deg, #061426, #071B33);
  color: white;
}

.footer-premium a {
  color: rgba(255,255,255,0.72);
  transition: all 0.25s ease;
}

.footer-premium a:hover {
  color: var(--ki-soft-gold);
  padding-left: 4px;
}

/* Forms */
.form-control {
  width: 100%;
  border: 1px solid var(--ki-border);
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 16px;
  color: var(--ki-charcoal);
  background: #FFFFFF;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: var(--ki-royal-blue);
  box-shadow: 0 0 0 4px rgba(14, 75, 168, 0.12);
}

.form-label {
  font-weight: 600;
  color: var(--ki-navy);
  margin-bottom: 8px;
  display: block;
}

/* Background Animated Elements */
.bg-animated-dots {
  background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  animation: floatBackground 30s linear infinite;
}

@keyframes floatBackground {
  from { background-position: 0 0; }
  to { background-position: 40px 40px; }
}

.chart-line-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.15;
}
