/* =============================================================
   Adani Gas Dealership Portal — DESIGN SYSTEM
   Theme: Adani logo tri-colour — blue (#0072bc) + magenta (#92278f)
   + red (#ed1c24). Magenta primary, blue accent, red highlight.
   (CSS var names keep the old --emerald-/--amber- labels; only
    their VALUES map to the Adani palette.)
   ============================================================= */

:root {
  /* brand palette — Adani logo: blue + magenta + red (var names kept) */
  /* tri-gradient stops (used directly in special elements) */
  --adani-blue:    #0072bc;
  --adani-magenta: #92278f;
  --adani-red:     #ed1c24;

  --emerald-900: #190a2b;   /* near-black purple (hero / footer bg) */
  --emerald-800: #2a1246;   /* deep purple */
  --emerald-700: #6a1d78;   /* dark magenta (gradient end) */
  --emerald-600: #8a2489;   /* magenta hover / accent text */
  --emerald-500: #92278f;   /* PRIMARY — Adani magenta */
  --emerald-400: #b24ba6;   /* light magenta */
  --emerald-300: #cf85c4;
  --emerald-100: #f0d6ec;
  --emerald-50:  #faf0f8;

  --amber-600: #005796;     /* Adani blue (dark) */
  --amber-500: #0072bc;     /* Adani blue — secondary accent */
  --amber-400: #3f9fd6;
  --amber-100: #d9edf9;

  --ink:      #201325;
  --body:     #48404e;
  --muted:    #8a8291;
  --line:     #ece7f0;
  --surface:  #ffffff;
  --canvas:   #faf8fc;
  --canvas-2: #f2ecf7;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(25,12,40, .06);
  --shadow:    0 12px 30px rgba(25,12,40, .10);
  --shadow-lg: 0 28px 60px rgba(25,12,40, .16);

  --font: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --maxw: 1180px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--canvas);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: 26px 0; }
.section-sm { padding: 18px 0; }
.center { text-align: center; }
.grid { display: grid; gap: 26px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 34px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--emerald-600);
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  padding: 7px 14px; border-radius: 999px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--amber-500); }

.section-head { max-width: 640px; margin: 0 auto 16px; }
.section-head.left { margin-inline: 0; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-top: 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-top: 14px; }

.lead { font-size: 1.12rem; color: var(--body); }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 700; font-size: .96rem;
  padding: 13px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
  color: #fff; box-shadow: 0 10px 24px rgba(146,39,143, .32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(146,39,143, .4); }
.btn-amber {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: #ffffff; box-shadow: 0 10px 24px rgba(0,114,188, .3);
}
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,114,188, .4); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--emerald-400); color: var(--emerald-600); background: var(--emerald-50); }
.btn-light { background: #fff; color: var(--emerald-700); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }

/* =============================================================
   HEADER / NAV
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--ink); font-size: 1.18rem; }
.brand-logo { max-height: 46px; max-width: 210px; display: block; object-fit: contain; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.1rem;
  background: linear-gradient(140deg, var(--adani-blue), var(--adani-magenta) 55%, var(--adani-red));
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18), 0 6px 16px rgba(146,39,143,.3);
}
.brand small { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .12em; color: var(--emerald-600); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a {
  display: block; padding: 9px 14px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; color: var(--body);
  transition: color .15s, background .15s;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--emerald-700); background: var(--emerald-50); }

/* dropdown */
.has-drop { position: relative; }
.has-drop > a::after { content: "▾"; font-size: .7rem; margin-left: 5px; opacity: .6; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 234px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: .18s ease;
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: 10px 14px; border-radius: 10px; font-size: .92rem; font-weight: 600; color: var(--body); }
.drop a:hover { background: var(--emerald-50); color: var(--emerald-700); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; width: 44px; height: 44px; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); margin: 0 auto; position: relative; transition: .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; } .nav-toggle span::after { position: absolute; top: 6px; }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(237,28,36,.28), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(0,114,188,.14), transparent 55%),
    linear-gradient(180deg, var(--emerald-900), var(--emerald-800));
  color: #f4ecf8;
  padding: 96px 0 110px;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; }
.hero .eyebrow { color: var(--emerald-100); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.7rem); line-height: 1.06; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--adani-blue), var(--adani-magenta) 50%, var(--adani-red));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { color: #ecdcf2; font-size: 1.16rem; margin-top: 20px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; gap: 26px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust div { }
.hero-trust b { display: block; font-size: 1.9rem; color: #fff; font-weight: 800; }
.hero-trust span { font-size: .86rem; color: #cdbdd8; }

/* hero visual card */
.hero-card {
  background: linear-gradient(160deg, rgba(255,255,255,.13), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-xl); padding: 26px; backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: #fff; font-size: 1.15rem; }
.hero-card .row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hero-card .row:last-child { border-bottom: 0; }
.hero-card .ico { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; font-size: 1.2rem; background: rgba(0,114,188,.18); color: var(--amber-400); }
.hero-card .txt b { color: #fff; display: block; font-size: .98rem; }
.hero-card .txt span { color: #cdbdd8; font-size: .85rem; }

/* wave divider */
.wave { display: block; margin-top: -1px; }
.wave svg { display: block; width: 100%; height: 70px; }

/* =============================================================
   CARDS / FEATURE GRIDS
   ============================================================= */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--emerald-100); }
.card .ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 18px;
  background: var(--emerald-50); color: var(--emerald-600); border: 1px solid var(--emerald-100);
}
.card h3 { font-size: 1.2rem; }
.card p { color: var(--muted); margin-top: 10px; font-size: .97rem; }

/* service card with number */
.svc-card { position: relative; overflow: hidden; }
.svc-card .num {
  position: absolute; top: 18px; right: 22px; font-size: 2.4rem; font-weight: 800;
  color: var(--emerald-50); letter-spacing: -.04em;
}
.svc-card .tag { display: inline-block; margin-top: 14px; font-size: .78rem; font-weight: 700; color: var(--amber-600); background: var(--amber-100); padding: 4px 11px; border-radius: 999px; }

/* stats band */
.stats-band { background: linear-gradient(135deg, var(--emerald-700), var(--emerald-600)); border-radius: var(--radius-xl); padding: 44px; color: #fff; }
.stats-band .grid { text-align: center; }
.stats-band b { font-size: 2.6rem; font-weight: 800; display: block; color: #fff; }
.stats-band .amber { color: var(--amber-400); }
.stats-band span { color: #ecdcf2; font-size: .95rem; }

/* checklist steps */
.step {
  display: flex; gap: 18px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step .no {
  flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 800; color: #fff; background: linear-gradient(140deg, var(--adani-blue), var(--adani-magenta) 55%, var(--adani-red));
}
.step h4 { font-size: 1.05rem; } .step p { color: var(--muted); font-size: .93rem; margin-top: 5px; }

/* two-column feature (image/text alternating) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split .visual {
  border-radius: var(--radius-xl); min-height: 340px;
  background: linear-gradient(140deg, var(--emerald-600), var(--emerald-800));
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.split .visual::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size: 22px 22px;
}
.split .visual .badge {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); padding: 18px; color: #fff; backdrop-filter: blur(6px);
}
.tick-list li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; color: var(--body); }
.tick-list li::before {
  content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--emerald-500); color: #fff; display: grid; place-items: center; font-size: .8rem; font-weight: 800;
}

/* logos / certifications */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cert {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 16px; text-align: center; font-weight: 700; color: var(--emerald-700); font-size: .92rem;
  box-shadow: var(--shadow-sm);
}
.cert small { display: block; color: var(--muted); font-weight: 500; font-size: .78rem; margin-top: 4px; }

/* testimonials */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); position: relative;
}
.quote::before { content: "\201C"; font-size: 4rem; line-height: 1; color: var(--emerald-100); position: absolute; top: 10px; right: 22px; font-family: Georgia, serif; }
.quote p { color: var(--body); font-size: .98rem; }
.quote .who { display: flex; align-items: center; gap: 13px; margin-top: 20px; }
.quote .av {
  width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-weight: 800; color: #fff; background: linear-gradient(140deg, var(--amber-400), var(--amber-600));
}
.quote .who b { display: block; color: var(--ink); font-size: .96rem; }
.quote .who span { font-size: .82rem; color: var(--muted); }

/* FAQ accordion */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--emerald-500); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 0 20px; font-size: .96rem; }

/* CTA band */
.cta-band {
  background:
    radial-gradient(700px 300px at 80% -20%, rgba(0,114,188,.25), transparent 60%),
    linear-gradient(120deg, #06326e, #5c1a6b 52%, #8a1230);
  border-radius: var(--radius-xl); padding: 60px; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta-band p { color: #ecdcf2; max-width: 560px; margin: 14px auto 0; }
.cta-band .hero-actions { justify-content: center; }

/* =============================================================
   FORMS
   ============================================================= */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: #d94848; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: .97rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--canvas); transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--emerald-400); background: #fff;
  box-shadow: 0 0 0 4px rgba(146,39,143,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.check input { width: auto; margin-top: 4px; }

.alert { border-radius: var(--radius); padding: 15px 18px; font-size: .95rem; margin-bottom: 22px; border: 1px solid; }
.alert-success { background: var(--emerald-50); border-color: var(--emerald-100); color: var(--emerald-700); }
.alert-error { background: #fdecec; border-color: #f6cccc; color: #b33636; }
.alert ul { margin: 6px 0 0 18px; list-style: disc; }

/* auth (login) card */
.auth-wrap { min-height: 78vh; display: grid; place-items: center; padding: 50px 0;
  background: radial-gradient(700px 400px at 50% -10%, var(--canvas-2), transparent 70%); }
.auth-card { width: 100%; max-width: 430px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-lg); }
.auth-card .brand-mark { margin: 0 auto 18px; width: 54px; height: 54px; }
.auth-card h1 { font-size: 1.6rem; text-align: center; }
.auth-card .sub { text-align: center; color: var(--muted); margin: 8px 0 26px; font-size: .95rem; }
.auth-alt { text-align: center; margin-top: 20px; font-size: .92rem; color: var(--muted); }
.auth-alt a { color: var(--emerald-600); font-weight: 700; }

/* info side panel (apply / contact page) */
.side-card { background: linear-gradient(160deg, var(--emerald-700), var(--emerald-800)); color: #fff;
  border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.side-card h3 { color: #fff; }
.side-card .money { font-size: 2rem; font-weight: 800; color: var(--amber-400); }
.side-card ul { margin-top: 16px; }
.side-card li { display: flex; gap: 10px; padding: 8px 0; color: #ecdcf2; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .92rem; }
.side-card li:last-child { border-bottom: 0; }
.side-card li b { color: #fff; }

.info-tile { display: flex; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); }
.info-tile .ico { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; font-size: 1.2rem; background: var(--emerald-50); color: var(--emerald-600); }
.info-tile b { color: var(--ink); display: block; font-size: .95rem; }
.info-tile span, .info-tile a { color: var(--muted); font-size: .9rem; word-break: break-word; }

/* page hero (inner pages) */
.page-hero { background: linear-gradient(135deg, var(--emerald-800), var(--emerald-700)); color: #fff; padding: 36px 0 42px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 24px 24px; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: #ecdcf2; margin-top: 12px; max-width: 620px; }
.crumb { font-size: .86rem; color: #cdbdd8; margin-bottom: 14px; }
.crumb a:hover { color: #fff; }

/* =============================================================
   DASHBOARD / ADMIN
   ============================================================= */
.dash { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.dash-side { background: var(--emerald-900); color: #ecdcf2; padding: 24px 16px; position: sticky; top: 0; height: 100vh; }
.dash-side .brand { color: #fff; margin-bottom: 28px; }
.dash-side .brand small { color: var(--emerald-300); }
.dash-nav a { display: flex; align-items: center; gap: 11px; padding: 12px 14px; border-radius: 12px; font-weight: 600; font-size: .94rem; color: #cdbdd8; margin-bottom: 4px; transition: .15s; }
.dash-nav a:hover, .dash-nav a.active { background: rgba(255,255,255,.08); color: #fff; }
.dash-nav .sep { height: 1px; background: rgba(255,255,255,.08); margin: 16px 6px; }
.dash-main { padding: 30px 34px; background: var(--canvas); }
.dash-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; flex-wrap: wrap; gap: 14px; }
.dash-top h1 { font-size: 1.5rem; }
.dash-top .who { font-size: .9rem; color: var(--muted); }

.kpi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.kpi b { font-size: 2rem; font-weight: 800; color: var(--ink); display: block; }
.kpi span { color: var(--muted); font-size: .9rem; }
.kpi .ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--emerald-50); color: var(--emerald-600); font-size: 1.2rem; margin-bottom: 14px; }

.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.panel-head { padding: 18px 22px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.panel-head h3 { font-size: 1.1rem; }
.table-wrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; font-size: .92rem; }
table.data th { text-align: left; padding: 13px 18px; background: var(--canvas); color: var(--muted); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
table.data td { padding: 14px 18px; border-top: 1px solid var(--line); color: var(--body); vertical-align: middle; }
table.data tr:hover td { background: var(--emerald-50); }

.badge {
  display: inline-block; padding: 4px 11px; border-radius: 999px; font-size: .76rem; font-weight: 700;
}
.badge-pending   { background: var(--amber-100); color: var(--amber-600); }
.badge-reviewing { background: #e4eefb; color: #2f6fd0; }
.badge-approved  { background: var(--emerald-100); color: var(--emerald-700); }
.badge-rejected  { background: #fdecec; color: #b33636; }
.badge-new       { background: var(--amber-100); color: var(--amber-600); }

.dash-empty { padding: 46px; text-align: center; color: var(--muted); }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer { background: var(--emerald-900); color: #cdbdd8; padding: 64px 0 26px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: var(--emerald-300); }
.footer-about { margin-top: 16px; font-size: .92rem; color: #b3a0c0; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #ecdcf2; transition: .15s; font-size: .95rem; }
.footer-social a:hover { background: var(--emerald-500); color: #fff; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; font-size: .93rem; color: #cdbdd8; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .86rem; color: #b3a0c0; }
.footer-bottom a:hover { color: #fff; }

/* whatsapp float */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 1.6rem; box-shadow: 0 10px 26px rgba(37,211,102,.5);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 980px) {
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dash { grid-template-columns: 1fr; }
  .dash-side { position: static; height: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
  .dash-side .brand { margin-bottom: 0; margin-right: auto; }
  .dash-nav { display: flex; flex-wrap: wrap; gap: 4px; width: 100%; }
  .dash-nav .sep { display: none; }
}
@media (max-width: 760px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 74px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 14px 22px; box-shadow: var(--shadow);
  }
  .site-header.open .drop { display: none; position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 12px; }
  .site-header.open .has-drop.open > .drop { display: block; }
  .site-header.open .has-drop > a::after { transition: transform .2s ease; }
  .site-header.open .has-drop.open > a::after { transform: rotate(180deg); }
  .g-2, .g-3, .g-4, .field-row, .field-row-3, .cert-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats-band, .cta-band, .form-card { padding: 30px 22px; }
  .cta-band { padding: 40px 22px; }
}

/* =============================================================
   REAL PHOTOS (Unsplash) — service thumbnails, hero & split visuals
   ============================================================= */
.svc-card .thumb {
  position: relative; margin: -28px -28px 20px; height: 185px; overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.svc-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.svc-card:hover .thumb img { transform: scale(1.07); }
.svc-card .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(25,12,40,.35));
}
.svc-card .num-pill {
  position: absolute; top: 12px; left: 14px; z-index: 2;
  background: rgba(25,12,40,.55); color: #fff; backdrop-filter: blur(6px);
  padding: 4px 13px; border-radius: 999px; font-weight: 800; font-size: .9rem;
  border: 1px solid rgba(255,255,255,.25);
}

/* photographic split visual (about / services) */
.visual.photo { background-size: cover; background-position: center; }
.visual.photo::before {
  background-image: none;
  background: linear-gradient(160deg, rgba(42,18,70,.30), rgba(25,12,40,.80));
}

/* hero with background photo */
.hero.has-photo {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(237,28,36,.24), transparent 60%),
    linear-gradient(180deg, rgba(25,12,40,.84), rgba(42,18,70,.92)),
    url('../img/photos/hero.jpg');
  background-size: auto, auto, cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* business-model card image (partnership) */
.model-thumb { margin: -28px -28px 20px; height: 170px; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.model-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =============================================================
   PREMIUM HERO CAROUSEL (.hxr) — dark, glass, Adani tri-colour
   ============================================================= */
.hxr {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(1100px 700px at 22% 8%, rgba(42,18,70,.9), transparent 60%),
    radial-gradient(900px 600px at 95% 100%, rgba(146,39,143,.28), transparent 55%),
    linear-gradient(135deg, #0a0616, #150726 45%, #1c0a2b);
  padding: 14px 0 14px;
}
.hxr::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: 26px 26px;
}
.hxr-photo-stage { position: absolute; top: 0; right: 0; bottom: 0; width: 72%; z-index: 0; }
.hxr-photo {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity .8s ease;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 100%);
          mask-image: linear-gradient(90deg, transparent, #000 20%, #000 100%);
}
.hxr-photo.active { opacity: 1; }
.hxr-photo::after { content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #150726 0%, rgba(21,7,38,.25) 32%, rgba(21,7,38,.05) 100%),
    linear-gradient(180deg, rgba(21,7,38,.1) 0%, transparent 55%, rgba(10,4,20,.55) 100%); }

.hxr .container { position: relative; z-index: 2; }
.hxr-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 40px; align-items: center; min-height: 330px; }

.hxr-slides { position: relative; min-height: 300px; }
.hxr-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateY(14px); transition: .5s ease; pointer-events: none; }
.hxr-slide.active { position: relative; opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.hxr-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: #e7dcf2;
}
.hxr-badge .star { color: #fbbf3f; font-size: .9rem; }
.hxr h1 { color: #fff; font-size: clamp(2rem, 3.4vw, 3.1rem); line-height: 1.08; margin-top: 16px; letter-spacing: -.02em; }
.hxr h1 .g {
  background: linear-gradient(100deg, #2a8fe0, #92278f 52%, #ff3d6e);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hxr-desc { color: #c7bcd8; font-size: 1.08rem; margin-top: 20px; max-width: 500px; line-height: 1.6; }
.hxr-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hxr-b1 {
  display: inline-flex; align-items: center; gap: 9px; padding: 15px 30px; border-radius: 999px; font-weight: 700; cursor: pointer;
  color: #fff; border: none; background: linear-gradient(120deg, #0072bc, #6a2b9d 55%, #b0246f);
  box-shadow: 0 12px 30px rgba(146,39,143,.4); transition: transform .18s, box-shadow .18s;
}
.hxr-b1:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(146,39,143,.55); }
.hxr-b2 {
  display: inline-flex; align-items: center; gap: 9px; padding: 15px 28px; border-radius: 999px; font-weight: 700;
  color: #efe6f7; background: rgba(255,255,255,.03); border: 1.5px solid rgba(255,255,255,.22); transition: .18s;
}
.hxr-b2:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }

.hxr-nav { display: flex; align-items: center; gap: 24px; margin-top: 26px; }
.hxr-counter { font-size: 1.6rem; font-weight: 800; color: #fff; letter-spacing: .04em; }
.hxr-counter small { color: #9b8bb0; font-weight: 700; font-size: 1rem; }
.hxr-arrows { display: flex; gap: 12px; }
.hxr-arrow {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.2); color: #fff; font-size: 1.2rem; transition: .18s;
}
.hxr-arrow:hover { background: rgba(146,39,143,.4); border-color: rgba(255,255,255,.45); }

.hxr-card {
  background: linear-gradient(160deg, rgba(28,14,44,.72), rgba(16,8,30,.6));
  border: 1px solid rgba(255,255,255,.16); border-radius: 22px; padding: 18px; backdrop-filter: blur(20px);
  box-shadow: 0 30px 70px rgba(10,4,20,.55);
}
.hxr-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.hxr-card-head h3 { color: #fff; font-size: 1rem; line-height: 1.25; letter-spacing: .01em; text-transform: uppercase; font-weight: 800; }
.hxr-card-head .bm { color: #b98bd0; font-size: 1.3rem; opacity: .8; }
.hxr-feat { display: flex; gap: 12px; align-items: flex-start; padding: 11px 12px; border-radius: 13px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09); margin-bottom: 8px; transition: .2s; }
.hxr-feat:hover { background: rgba(255,255,255,.08); border-color: rgba(146,39,143,.5); }
.hxr-ico {
  width: 38px; height: 38px; border-radius: 10px; flex: none; display: grid; place-items: center; color: #dcbcff;
  background: linear-gradient(150deg, rgba(0,114,188,.35), rgba(146,39,143,.4)); border: 1px solid rgba(255,255,255,.12);
}
.hxr-ico svg { width: 18px; height: 18px; }
.hxr-feat b { color: #fff; font-size: .9rem; display: block; }
.hxr-feat span { color: #ddd4ea; font-size: .78rem; line-height: 1.4; display: block; margin-top: 2px; }

.hxr-stats { display: flex; gap: 8px; margin-top: 2px; padding: 11px; border-radius: 13px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.hxr-stat { flex: 1; display: flex; align-items: center; gap: 10px; }
.hxr-stat + .hxr-stat { border-left: 1px solid rgba(255,255,255,.1); padding-left: 10px; }
.hxr-stat .si { width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #dcbcff; background: rgba(146,39,143,.3); border: 1px solid rgba(255,255,255,.12); font-size: .78rem; }
.hxr-stat b { color: #fff; font-size: 1rem; display: block; line-height: 1; }
.hxr-stat span { color: #cdc2dc; font-size: .68rem; display: block; margin-top: 2px; }

.hxr-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 18px; }
.hxr-step { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 14px; cursor: pointer;
  background: transparent; border: 1px solid transparent; text-align: left; transition: .2s; position: relative; overflow: hidden; }
.hxr-step:hover { background: rgba(255,255,255,.04); }
.hxr-step.active { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.hxr-step.active::before { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #0072bc, #92278f, #ed1c24); }
.hxr-step .n { font-size: 1.2rem; font-weight: 800; color: #6e6084; flex: none; }
.hxr-step.active .n { color: #fff; }
.hxr-step .t { font-size: .86rem; font-weight: 600; color: #9b8fb0; line-height: 1.25; }
.hxr-step.active .t { color: #f0e9f7; }
.hxr-step .th { width: 62px; height: 42px; border-radius: 9px; margin-left: auto; flex: none; background-size: cover; background-position: center; opacity: .55; filter: grayscale(.3); }
.hxr-step.active .th { opacity: 1; filter: none; box-shadow: 0 4px 12px rgba(0,0,0,.4); }

@media (max-width: 1000px) {
  .hxr-photo-stage { width: 100%; }
  .hxr-photo.active { opacity: .4; }
  .hxr-grid { grid-template-columns: 1fr; gap: 30px; }
  .hxr-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hxr-steps { grid-template-columns: 1fr; }
  .hxr-step .th { display: none; }
  .hxr h1 { font-size: 2.1rem; }
  .hxr-card { padding: 18px; }
}

/* small phones — tighten gutters & oversized paddings */
@media (max-width: 480px) {
  .container { padding-inline: 16px; }
  .page-hero { padding: 30px 0 34px; }
  .cta-band { padding: 34px 18px; }
  .btn-lg { padding: 12px 20px; }
  .hero-actions { gap: 10px; }
}
