/* ==========================================================
   FLYCDI India — stylesheet
   ========================================================== */

:root {
  --navy: #0b1830;
  --navy-2: #12213f;
  --amber: #f5a524;
  --amber-2: #ffbf47;
  --ink: #1c2433;
  --grey: #616b7d;
  --grey-light: #f4f6fa;
  --line: #e4e8f0;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 24, 48, 0.08);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: "Poppins", "Inter", sans-serif; margin: 0 0 .5em; line-height: 1.2; font-weight: 600; }
p { margin: 0 0 1em; color: var(--grey); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--grey-light); }

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245, 165, 36, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 34px); color: var(--navy); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-primary { background: var(--amber); color: var(--navy); }
.btn-primary:hover { background: var(--amber-2); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(245,165,36,.35); }
.btn-outline { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(11,24,48,.25); }
.btn-block { width: 100%; justify-content: center; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: "Poppins", sans-serif; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.brand-name { font-weight: 700; font-size: 19px; color: var(--navy); letter-spacing: -.01em; }
.brand-name span { color: var(--amber); }
.brand-tag { font-size: 11px; color: var(--grey); font-weight: 500; letter-spacing: .04em; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 14.5px; font-weight: 600; color: var(--navy); opacity: .78;
  transition: opacity .15s ease;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--amber); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.phone-pill {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; color: var(--navy);
  border: 1.5px solid var(--line); padding: 9px 16px; border-radius: 999px;
}
.nav-toggle {
  display: none;
  width: 42px; height: 42px; border-radius: 10px; border: 1.5px solid var(--line);
  background: var(--white); font-size: 18px; cursor: pointer; color: var(--navy);
}

/* Hero */
.hero {
  background: radial-gradient(1200px 500px at 85% -10%, rgba(245,165,36,.20), transparent),
              linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
.hero h1 { font-size: clamp(32px, 5vw, 54px); color: var(--white); letter-spacing: -.02em; }
.hero h1 em { color: var(--amber); font-style: normal; }
.hero p.lead { color: rgba(255,255,255,.78); font-size: 17.5px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 30px; margin-top: 46px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 26px; color: var(--amber); font-family: "Poppins", sans-serif; }
.hero-stat span { font-size: 13px; color: rgba(255,255,255,.65); }

.hero-visual {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-visual-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.hero-tile {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}
.hero-tile .ic { font-size: 26px; margin-bottom: 8px; }
.hero-tile strong { display: block; font-size: 13.5px; color: var(--white); }
.hero-tile span { font-size: 11.5px; color: rgba(255,255,255,.6); }

/* Trust bar */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
}
.trust-bar .container {
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between;
  padding: 22px 24px;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-size: 13.5px; font-weight: 600; }
.trust-item .ic { color: var(--amber); font-size: 17px; }

/* Cards / grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card .ic {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(245,165,36,.12); color: var(--amber);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  margin-bottom: 18px;
}
.card h3 { font-size: 18px; color: var(--navy); }
.card p { font-size: 14.5px; margin-bottom: 0; }

/* Category cards */
.cat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.cat-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.cat-media {
  height: 130px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; color: var(--amber);
}
.cat-body { padding: 20px 22px 24px; }
.cat-body h3 { font-size: 16.5px; color: var(--navy); margin-bottom: 6px; }
.cat-body p { font-size: 13.5px; margin-bottom: 14px; }
.cat-link { font-size: 13.5px; font-weight: 700; color: var(--amber); display: inline-flex; align-items: center; gap: 6px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 6px; }
.step .num {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--navy); color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: "Poppins", sans-serif; margin-bottom: 16px;
}
.step h4 { font-size: 15.5px; color: var(--navy); margin-bottom: 6px; }
.step p { font-size: 13.5px; }

/* Split section */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media {
  background: linear-gradient(160deg, var(--navy), var(--navy-2));
  border-radius: 20px; min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.split-media .badge-float {
  position: absolute; bottom: 22px; left: 22px;
  background: var(--white); border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
}
.split-media .badge-float strong { display: block; font-size: 20px; color: var(--navy); font-family: "Poppins", sans-serif; }
.split-media .badge-float span { font-size: 12px; color: var(--grey); }
.split-media .glyph { font-size: 84px; opacity: .9; }

.check-list li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 15px; color: var(--ink); align-items: flex-start; }
.check-list .tick {
  width: 22px; height: 22px; border-radius: 50%; background: rgba(245,165,36,.15); color: var(--amber);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex: none; margin-top: 2px;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 24px; color: var(--white);
  padding: 56px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-band h3 { color: var(--white); font-size: 26px; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.75); margin-bottom: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Table (products / specs) */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); }
th { background: var(--grey-light); color: var(--navy); font-family: "Poppins", sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
tr:last-child td { border-bottom: none; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item h4 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.faq-item p { margin-bottom: 0; font-size: 14.5px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; }
.contact-card {
  background: var(--navy); color: var(--white); border-radius: 20px; padding: 36px;
}
.contact-card h3 { color: var(--white); }
.contact-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-row:last-child { border-bottom: none; }
.contact-row .ic {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(245,165,36,.15); color: var(--amber);
  display: flex; align-items: center; justify-content: center; font-size: 17px; flex: none;
}
.contact-row strong { display: block; font-size: 13.5px; color: rgba(255,255,255,.6); font-weight: 600; margin-bottom: 3px; }
.contact-row span, .contact-row a { font-size: 15px; font-weight: 600; }

.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 36px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 10px; border: 1.5px solid var(--line);
  font-family: inherit; font-size: 14.5px; color: var(--ink); background: var(--grey-light);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); background: var(--white); }
.form-note { font-size: 12.5px; color: var(--grey); margin-top: 10px; }

/* Map placeholder */
.map-box {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--line); min-height: 260px;
  background: linear-gradient(135deg, #eef1f7, #e4e8f0);
  display: flex; align-items: center; justify-content: center; color: var(--grey); font-size: 14px; text-align: center; flex-direction: column; gap: 8px;
}

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-grid h4 { color: var(--white); font-size: 14px; margin-bottom: 18px; }
.footer-grid p { color: rgba(255,255,255,.6); font-size: 14px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: rgba(255,255,255,.68); font-size: 14px; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--amber); }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.social-row a:hover { background: var(--amber); color: var(--navy); }

/* Page header (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white); padding: 64px 0 56px;
}
.page-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 40px); }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.75); }
.page-hero p { color: rgba(255,255,255,.75); max-width: 560px; margin-bottom: 0; }

/* Sticky WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 10px 24px rgba(37,211,102,.4);
}

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.badge-soft {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700;
  color: var(--navy); background: var(--grey-light); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 10px;
}

@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split-media { order: -1; min-height: 260px; }
  .grid-3, .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 24px 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header { position: sticky; }
  .header-inner { position: relative; flex-wrap: wrap; }
  .header-cta .btn-primary { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .grid-3, .grid-4, .steps, .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 34px 24px; flex-direction: column; text-align: center; }
  .header-cta .phone-pill span.txt { display: none; }
  .trust-bar .container { justify-content: center; text-align: center; }
}