/* ═══════════════════════════════════════════════════════════════════
   SAAVANI GLOBAL — Design System & Core Styles
   Brand: Navy Blue (#1E3A8A) & Gold (#D4A851)
   Font: Inter + Playfair Display
   ═══════════════════════════════════════════════════════════════════ */

/* ── Google Fonts Import ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Brand Colors */
  --navy-900: #0F1D45;
  --navy-800: #152555;
  --navy-700: #1A2F6A;
  --navy-600: #1E3A8A;
  --navy-500: #2B4DAA;
  --navy-400: #3B63C4;
  --navy-300: #6B8CD9;
  --navy-200: #A3B8E8;
  --navy-100: #D6DEFA;
  --navy-50:  #EEF1FC;

  --gold-600: #B8872E;
  --gold-500: #D4A851;
  --gold-400: #E0BD6E;
  --gold-300: #EBD38F;
  --gold-200: #F2E4B5;
  --gold-100: #FAF2DB;
  --gold-50:  #FDFAEF;

  /* Neutral */
  --white: #FFFFFF;
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Semantic */
  --success: #22C55E;
  --warning: #F59E0B;
  --error:   #EF4444;
  --info:    #3B82F6;

  /* Gradients */
  --gradient-navy: linear-gradient(135deg, #0A1435 0%, var(--navy-600) 100%);
  --gradient-gold: linear-gradient(135deg, #B58421 0%, #E6C57A 100%);
  --gradient-navy-gold: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 40%, var(--gold-500) 100%);
  --gradient-hero: linear-gradient(160deg, #050A1F 0%, #0F1D45 40%, #1A2F6A 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(10, 20, 53, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 20, 53, 0.08);
  --shadow-lg: 0 16px 48px rgba(10, 20, 53, 0.12);
  --shadow-xl: 0 24px 80px rgba(10, 20, 53, 0.18);
  --shadow-gold: 0 12px 40px rgba(212, 168, 81, 0.15);
  --shadow-glow: 0 0 50px rgba(59, 99, 196, 0.25);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-base: 350ms var(--ease-out);
  --transition-slow: 600ms var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--navy-900);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-family: var(--font-sans);
  font-weight: 700;
}

p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 1.05rem;
}

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

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

.text-white {
  color: var(--white);
}

.font-serif {
  font-family: var(--font-serif);
}

/* ── Layout ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section-dark {
  background: var(--gradient-navy);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: var(--navy-200);
}

.section-light {
  background-color: var(--gray-50);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
}

.grid {
  display: grid;
  gap: 30px;
}

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

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(15, 29, 69, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo img {
  height: 42px;
  width: auto;
}

.navbar-logo .brand-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-500);
  letter-spacing: 0.04em;
}

.navbar-logo .brand-sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--navy-200);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.navbar-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.navbar-cta {
  background: var(--gradient-gold) !important;
  color: var(--navy-900) !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-full) !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-fast) !important;
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 168, 81, 0.35) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-300) 100%) !important;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(212, 168, 81, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  background: rgba(212, 168, 81, 0.1);
}

.btn-navy {
  background: var(--gradient-navy);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-navy:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-outline {
  background: transparent;
  color: var(--navy-600);
  border: 2px solid var(--navy-200);
}

.btn-outline:hover {
  border-color: var(--navy-600);
  background: var(--navy-50);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 180px;
  padding-bottom: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 81, 0.08) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 99, 196, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

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

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 81, 0.15);
  border: 1px solid rgba(212, 168, 81, 0.3);
  color: var(--gold-400);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-label svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero h1 .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--navy-200);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat h3 {
  color: var(--gold-500);
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 800;
}

.hero-stat p {
  font-size: 0.9rem;
  color: var(--navy-300);
  margin-bottom: 0;
}

/* Decorative grid pattern */
.hero-grid-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

/* ── Service Cards ── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--gray-200);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

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

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

.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--navy-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-base);
}

.service-card:hover .service-card-icon {
  background: var(--gradient-navy);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--navy-600);
  transition: color var(--transition-fast);
}

.service-card:hover .service-card-icon svg {
  color: var(--gold-400);
}

.service-card h4 {
  margin-bottom: 12px;
  color: var(--navy-900);
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-600);
  transition: all var(--transition-fast);
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card-link {
  color: var(--gold-600);
}

.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 50px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
  margin-top: -60px;
  z-index: 10;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--gray-200);
}

.stat-number {
  font-family: var(--font-sans);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy-600);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .counter-suffix {
  color: var(--gold-500);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ── About / Feature Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-image .accent-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--gold-500);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about-content .label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-item .check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feature-item .check svg {
  width: 14px;
  height: 14px;
}

.feature-item span {
  font-weight: 500;
  color: var(--gray-700);
}

/* ── Testimonials ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
  fill: var(--gold-500);
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ── CTA Section ── */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: var(--gradient-navy);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 81, 0.12) 0%, transparent 70%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  color: var(--navy-200);
  font-size: 1.15rem;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--navy-900);
  color: var(--navy-200);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .brand-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--navy-300);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-brand .social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-brand .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-300);
  transition: all var(--transition-fast);
}

.footer-brand .social-links a:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-3px);
}

.footer-brand .social-links a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 0.92rem;
  color: var(--navy-300);
  transition: all var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--gold-400);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--navy-400);
}

.footer-bottom a {
  color: var(--gold-500);
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-fast);
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

.whatsapp-float a svg {
  width: 30px;
  height: 30px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--gray-800);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ── Contact Form ── */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: all var(--transition-fast);
  background: var(--gray-50);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy-400);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Breadcrumb ── */
.page-header {
  background: var(--gradient-navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-header p {
  color: var(--navy-200);
  font-size: 1.1rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--gold-400);
}

.breadcrumb span {
  color: var(--navy-300);
}

.breadcrumb .separator {
  color: var(--navy-400);
}

/* ── Glass Card ── */
.glass-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* ── Process Steps ── */
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.process-number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy-900);
}

.process-content h4 {
  margin-bottom: 8px;
}

.process-content p {
  font-size: 0.95rem;
}

/* ── Pricing Cards ── */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  border: 2px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold-500);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 20px;
  border-radius: var(--radius-full);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

/* ── Team Cards ── */
.team-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

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

.team-card .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-navy);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold-400);
  font-weight: 700;
  border: 4px solid var(--gold-200);
}

.team-card h4 {
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.9rem;
}

/* ── Scroll to Top ── */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-fast);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ── Utilities ── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mt-5 { margin-top: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.d-flex { display: flex; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════
   NEW COMPONENTS — Phase 1 Upgrade
   ═══════════════════════════════════════════════════════════════════ */

/* ── Trust Bar (Logos/Badges) ── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 0;
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.trust-bar:hover {
  opacity: 1;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  filter: grayscale(100%);
  transition: filter var(--transition-base);
}

.trust-badge:hover {
  filter: grayscale(0%);
}

.trust-badge svg {
  width: 40px;
  height: 40px;
  color: var(--navy-400);
}

.trust-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Guarantee Cards ── */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .guarantee-grid {
    grid-template-columns: 1fr;
  }
}

.guarantee-card {
  text-align: center;
  padding: 36px 20px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 2px solid var(--navy-100);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 0 0 4px 4px;
}

.guarantee-card:hover {
  border-color: var(--gold-300);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.guarantee-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all var(--transition-base);
}

.guarantee-card:hover .guarantee-icon {
  background: var(--gradient-gold);
}

.guarantee-icon svg {
  width: 26px;
  height: 26px;
  color: var(--navy-600);
  transition: color var(--transition-base);
}

.guarantee-card:hover .guarantee-icon svg {
  color: var(--white);
}

.guarantee-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--navy-800);
}

.guarantee-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ── Pricing Badge ── */
.pricing-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

/* ── Enhanced Testimonials ── */
.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
  margin-top: 4px;
}

.testimonial-verified svg {
  width: 14px;
  height: 14px;
}

.testimonial-date {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ── FAQ Accordion ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-800);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--gold-500);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--gold-500);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── Interactive Order Wizard ── */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-300);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: rgba(0,0,0,0.4);
  box-shadow: 0 0 0 2px rgba(212, 168, 81, 0.2);
}

.form-group select option {
  background: var(--navy-800);
  color: var(--white);
}

.wizard-progress .progress-step.active {
  background: rgba(212, 168, 81, 0.05);
}

.wizard-step {
  animation: fadeIn 0.4s ease forwards;
}

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

@media (max-width: 600px) {
  .calculator-result {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* ── Pricing Tiers ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.pricing-tier {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.pricing-tier.featured {
  border-color: var(--gold-400);
  transform: scale(1.04);
  box-shadow: var(--shadow-gold);
}

.pricing-tier.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--navy-900);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-tier:hover {
  border-color: var(--gold-300);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-tier.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-tier h4 {
  font-size: 1.1rem;
  color: var(--navy-800);
  margin-bottom: 8px;
}

.pricing-tier .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-900);
  font-family: var(--font-serif);
  margin-bottom: 4px;
}

.pricing-tier .price-sub {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.pricing-tier ul {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-tier ul li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-tier ul li:last-child {
  border-bottom: none;
}

.pricing-tier ul li svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

/* ── Legal Pages ── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  color: var(--navy-800);
  margin: 32px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p, .legal-content li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-600);
}

.legal-content ul {
  padding-left: 20px;
  margin: 12px 0;
}

.legal-content ul li {
  margin-bottom: 6px;
}

/* ═══ SAAVANI ACADEMICS — Additional Styles ═══ */

/* Logo Icon */
.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(212, 168, 81, 0.15);
  border: 1px solid rgba(212, 168, 81, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  transition: all var(--transition-fast);
}

.navbar.scrolled .logo-icon {
  background: rgba(212, 168, 81, 0.2);
}

/* Process Cards (How It Works - Dark Section) */
.process-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-base);
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 168, 81, 0.3);
  transform: translateY(-6px);
}

.process-card .process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy-900);
  margin: 0 auto 20px;
}

.process-card h4 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.process-card p {
  color: var(--navy-300);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Pricing Enhancements */
.pricing-desc {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
}

.pricing-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-600);
}

.pricing-value {
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
}

.pricing-features {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--gray-700);
  font-weight: 500;
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  color: var(--success);
}

.pricing-card.featured .pricing-currency,
.pricing-card.featured .pricing-value {
  color: var(--gold-600);
}

.featured-badge {
  background: var(--gradient-gold) !important;
}

/* Quote Estimate Box */
.quote-estimate {
  background: rgba(212, 168, 81, 0.1);
  border: 1px solid rgba(212, 168, 81, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 12px;
}

/* ── Expert Cards ── */
.expert-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--gray-200);
  text-align: center;
}

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

.expert-header {
  margin-bottom: 20px;
}

.expert-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 2px solid var(--gold-400);
}

.expert-info h4 {
  margin-bottom: 4px;
  color: var(--navy-900);
}

.expert-degree {
  font-size: 0.85rem;
  color: var(--gold-600);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.expert-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  margin-bottom: 8px;
}

.expert-stat {
  font-size: 0.8rem;
  color: var(--gray-500);
  display: flex;
  flex-direction: column;
}

.expert-stat span {
  font-weight: 700;
  color: var(--navy-800);
  font-size: 1.1rem;
}

/* Footer Headings */
.footer-heading {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.92rem;
  color: var(--navy-300);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-400);
  padding-left: 6px;
}

.footer-links li {
  font-size: 0.92rem;
  color: var(--navy-300);
}

/* ── Sticky Promo Banner ── */
.promo-banner {
  background: var(--gradient-gold);
  color: var(--navy-900);
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
  text-align: center;
  box-shadow: 0 2px 12px rgba(212, 168, 81, 0.3);
  animation: slideDown 0.5s var(--ease-out);
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.promo-banner code {
  background: rgba(255,255,255,0.25);
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* ── Consultant Card Responsive ── */
@media (max-width: 768px) {
  .consultant-card {
    flex-direction: column !important;
    text-align: center;
    padding: 32px 24px !important;
    gap: 24px !important;
  }
  
  .consultant-card > div:last-child > div:last-child {
    justify-content: center;
  }
}

/* ── Order Wizard Mobile Responsive ── */
@media (max-width: 768px) {
  .order-wizard .wizard-body {
    padding: 24px 16px !important;
  }

  .calculator-result {
    flex-direction: column !important;
    text-align: center;
    gap: 16px !important;
  }

  .calculator-result .btn {
    width: 100%;
  }

  .wizard-progress {
    font-size: 0.75rem !important;
  }

  .wizard-progress .progress-step {
    padding: 12px 8px !important;
    font-size: 0.75rem !important;
  }

  .promo-box {
    flex-direction: column !important;
  }

  .promo-box input,
  .promo-box .btn {
    width: 100% !important;
  }

  .split-payment-banner {
    padding: 16px !important;
  }

  #step3 > div:last-child {
    flex-direction: column !important;
    gap: 12px;
  }

  #step3 > div:last-child .btn {
    width: 100%;
    justify-content: center;
  }

  .upsell-container label {
    padding: 12px 8px !important;
  }
}

@media (max-width: 480px) {
  .order-wizard .wizard-body {
    padding: 16px 12px !important;
  }

  #livePrice {
    font-size: 2rem !important;
  }

  .promo-banner {
    font-size: 0.82rem;
    padding: 8px 0;
  }

  .promo-banner code {
    font-size: 0.78rem;
  }
}
