/* ═══════════════════════════════════════════════════════════════
   BIZ24 GeM Solutions Pvt. Ltd. — Corporate Design System
   Theme: Navy Blue (#0A2540) + Royal Blue (#1565C0) + Gold (#D4AF37)
   Style Reference: Tata Group / L&T / Adani / Reliance
═══════════════════════════════════════════════════════════════ */

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

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --navy:         #0A2540;
  --navy-light:   #0D3060;
  --royal:        #1565C0;
  --royal-light:  #1976D2;
  --gold:         #D4AF37;
  --gold-light:   #E8C84A;
  --gold-dark:    #B8961E;
  --white:        #FFFFFF;
  --off-white:    #F4F6F9;
  --light-gray:   #EEF1F6;
  --border:       #DDE3EC;
  --text-dark:    #1A1A2E;
  --text-main:    #333333;
  --text-muted:   #6B7B8D;
  --text-light:   #9AAAB8;
  --success:      #2E7D32;
  --error:        #C62828;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --shadow-sm:    0 2px 8px rgba(10, 37, 64, 0.08);
  --shadow-md:    0 4px 20px rgba(10, 37, 64, 0.12);
  --shadow-lg:    0 8px 40px rgba(10, 37, 64, 0.18);
  --shadow-gold:  0 4px 20px rgba(212, 175, 55, 0.25);

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;

  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height:   80px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; color: var(--text-dark); font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-muted); line-height: 1.8; }

/* ─── LAYOUT CONTAINERS ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ─── SECTION LABELS & HEADINGS ─── */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.section-heading {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 1rem;
  position: relative;
}

.section-heading span { color: var(--royal); }

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--royal));
  margin-top: 1rem;
  border-radius: 2px;
}

.section-heading.center::after { margin: 1rem auto 0; }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.8;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--royal), var(--navy));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.45);
  background: linear-gradient(135deg, var(--royal-light), var(--navy-light));
}

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

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ─── NAVIGATION ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

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

.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.logo-name span { color: var(--royal); }
.logo-sub {
  font-size: 0.62rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--royal); background: rgba(21, 101, 192, 0.07); }

.nav-cta {
  background: linear-gradient(135deg, var(--royal), var(--navy));
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-sm);
  margin-left: 0.5rem;
  box-shadow: 0 3px 12px rgba(21, 101, 192, 0.3);
}
.nav-cta:hover { box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4); transform: translateY(-1px); background: var(--royal-light) !important; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero_bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.97) 0%, rgba(21,101,192,0.75) 60%, rgba(10,37,64,0.90) 100%);
}

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

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

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

.hero-stat-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.3rem;
  font-weight: 500;
}

/* ─── TRUST BADGES ─── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  box-shadow: var(--shadow-sm);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-main);
}

.trust-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.trust-badge-text {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--royal);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(21,101,192,0.1), rgba(10,37,64,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--royal);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(21, 101, 192, 0.15);
  transition: all var(--transition);
}
.card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--royal), var(--navy));
  color: var(--white);
  border-color: transparent;
}

/* ─── CHECK LIST ITEMS ─── */
.checklist { list-style: none; padding: 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--light-gray);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--success);
  font-size: 0.75rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(46, 125, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── SECTION ALTERNATING BG ─── */
.bg-light  { background: var(--off-white); }
.bg-navy   { background: var(--navy); }
.bg-white  { background: var(--white); }

.bg-navy .section-heading { color: var(--white); }
.bg-navy .section-desc { color: rgba(255,255,255,0.65); }
.bg-navy p { color: rgba(255,255,255,0.7); }
.bg-navy h3, .bg-navy h4 { color: var(--white); }

/* ─── INDUSTRIES GRID ─── */
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: default;
}
.industry-card:hover {
  background: var(--navy);
  border-color: var(--royal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.industry-card:hover h4 { color: var(--white); }
.industry-card:hover p { color: rgba(255,255,255,0.65); }
.industry-card:hover .ind-icon { background: var(--gold); color: var(--navy); }

.ind-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(21, 101, 192, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--royal);
  margin-bottom: 1.2rem;
  transition: all var(--transition);
}

/* ─── CERTIFICATION CARDS ─── */
.cert-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.cert-card:hover { border-color: var(--gold); transform: translateX(4px); box-shadow: var(--shadow-md); }

.cert-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─── STATS ROW ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.stat-box {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-num span { color: var(--royal); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; font-weight: 500; }

/* ─── WHY CHOOSE US POINTS ─── */
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.why-point:hover { background: rgba(21,101,192,0.05); }

.why-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--royal), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.why-point h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.2rem; }
.why-point p  { font-size: 0.85rem; color: var(--text-muted); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, var(--royal) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto 2rem; }

/* ─── FORMS ─── */
.form-group { margin-bottom: 1.4rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--royal); box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.file-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--off-white);
}
.file-upload-area:hover { border-color: var(--royal); background: rgba(21,101,192,0.04); }
.file-upload-area input[type="file"] { display: none; }

/* ─── JOB CARDS ─── */
.job-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  background: var(--white);
  transition: all var(--transition);
}
.job-card:hover { border-color: var(--royal); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.job-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  background: rgba(21, 101, 192, 0.1);
  color: var(--royal);
  margin-bottom: 0.8rem;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-desc { font-size: 0.88rem; line-height: 1.8; margin-bottom: 1.5rem; }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
}
.footer-contact-item i { color: var(--gold); font-size: 0.9rem; margin-top: 0.2rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--gold); }

.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--gold); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--royal) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: url('hero_bg.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero .section-label { background: rgba(212,175,55,0.15); }
.page-hero h1 { color: var(--white); font-family: var(--font-display); }
.page-hero p  { color: rgba(255,255,255,0.72); max-width: 580px; }

/* ─── BREADCRUMBS ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.6rem; }
.breadcrumb span { color: var(--gold); }

/* ─── SCROLL REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ─── PAGE TOP SPACER ─── */
.page-top-pad { padding-top: var(--nav-height); }

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 2rem;
}
.modal-overlay.show { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform var(--transition);
}
.modal-overlay.show .modal-box { transform: scale(1); }

/* ─── SUCCESS MESSAGE ─── */
.success-msg {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.success-msg i { font-size: 3rem; color: var(--success); margin-bottom: 1rem; }
.success-msg h3 { color: var(--navy); font-size: 1.6rem; margin-bottom: 0.5rem; }

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid var(--gold);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ─── DIVIDER ─── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 3rem 0;
}

/* ─── GRID LAYOUTS ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 3fr; gap: 4rem; align-items: center; }
.grid-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: center; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 0.2rem;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-link { width: 100%; padding: 0.75rem 1rem; }
  .nav-cta { text-align: center; margin-left: 0; margin-top: 0.5rem; }
  .mobile-toggle { display: flex; }

  .hero-stats { gap: 2rem; }
  .hero-buttons { flex-direction: column; }

  .grid-2, .grid-3, .grid-4, .grid-2-3, .grid-3-2 { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .section { padding: 70px 0; }
  .trust-strip-inner { justify-content: center; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .stats-row { grid-template-columns: 1fr; }
  .hero-stat-val { font-size: 1.8rem; }
}
