/* =========================================================
   Pay My Challan — Static Site Styles
   Brand colors derived from the official logo
   ========================================================= */

:root {
  --color-navy: #0A2A66;
  --color-royal: #1E6FE8;
  --color-orange: #F4791F;
  --color-green: #2BB673;

  --color-bg: #FFFFFF;
  --color-surface: #F8FAFC;
  --color-text: #0F172A;
  --color-muted: #475569;
  --color-border: #E2E8F0;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(10, 42, 102, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 42, 102, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 42, 102, 0.12);

  --container: 1200px;

  --font-head: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--color-royal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-navy); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--color-navy);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--color-muted); margin: 0 0 1em; }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--color-royal);
  background: rgba(30, 111, 232, 0.08);
  padding: .35rem .7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--color-navy);
  color: #fff;
}
.btn-primary:hover { background: var(--color-royal); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--color-royal);
  border-color: var(--color-royal);
}
.btn-secondary:hover { background: var(--color-royal); color: #fff; transform: translateY(-2px); }
.btn-accent {
  background: var(--color-orange);
  color: #fff;
}
.btn-accent:hover { background: #d8650f; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--color-navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
}
.brand img { height: 44px; width: auto; }
.brand-text-orange { color: var(--color-orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links > li > a,
.nav-links > li > button {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .95rem;
  color: var(--color-text);
  padding: .4rem 0;
  position: relative;
  transition: color .2s ease;
}
.nav-links > li > a.active,
.nav-links > li > a:hover,
.nav-links > li > button:hover {
  color: var(--color-royal);
}
.nav-links > li > a.active::after,
.nav-links > li > a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 3px;
  background: var(--color-orange);
  border-radius: 3px;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle::after {
  content: "▾";
  margin-left: .3rem;
  font-size: .7rem;
  color: var(--color-muted);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .75rem .85rem;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .92rem;
}
.dropdown-menu a:hover { background: var(--color-surface); color: var(--color-royal); }
.dropdown-menu a .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-orange);
}
.dropdown-menu a.green-dot .dot { background: var(--color-green); }

.nav-cta { display: flex; gap: .75rem; align-items: center; }

/* Mobile */
.hamburger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px; background: var(--color-navy);
  position: relative;
}
.hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--color-navy);
  transition: transform .2s ease, top .2s ease;
}
.hamburger span::before { top: -7px; }
.hamburger span::after  { top:  7px; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { top: 0; transform: rotate(45deg); }
.hamburger.open span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: inline-flex; }
  .mobile-menu.open { display: block; }
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--color-border);
  background: #fff;
  padding: 1rem 1.25rem 1.5rem;
}
.mobile-menu a, .mobile-menu button {
  display: block;
  padding: .85rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-head);
  font-weight: 500;
  background: none; border: 0; border-bottom: 1px solid var(--color-border); width: 100%; text-align: left; cursor: pointer; font-size: 1rem;
}
.mobile-sub { padding-left: 1rem; display: none; }
.mobile-sub.open { display: block; }
.mobile-menu .btn { margin-top: 1rem; width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(2rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(60% 60% at 90% 10%, rgba(244, 121, 31, 0.10), transparent 60%),
    radial-gradient(60% 60% at 10% 90%, rgba(30, 111, 232, 0.10), transparent 60%),
    var(--color-bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 .accent { color: var(--color-orange); }
.hero h1 .royal  { color: var(--color-royal); }
.hero .lead { font-size: 1.125rem; max-width: 540px; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.hero .trust {
  display: flex; gap: 1.5rem; align-items: center;
  margin-top: 2rem; flex-wrap: wrap;
  color: var(--color-muted); font-size: .9rem;
}
.hero .trust .pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .7rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text);
  font-weight: 500;
}
.hero .trust .pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-green); }
.hero-visual {
  position: relative;
}
.hero-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: .8rem 1rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--color-navy);
}
.float-card .check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--color-green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.float-card.top    { top: -10px; left: -10px; }
.float-card.bottom { bottom: -14px; right: -14px; background: var(--color-navy); color: #fff; }
.float-card.bottom .check { background: var(--color-orange); }

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

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section-surface { background: var(--color-surface); }
.section-dark {
  background: var(--color-navy);
  color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.78); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head p { color: var(--color-muted); font-size: 1.05rem; }

/* ---------- Cards / Bento Grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 111, 232, 0.4);
}
.feature-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(30, 111, 232, 0.10);
  color: var(--color-royal);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.feature-card .icon.orange { background: rgba(244, 121, 31, 0.12); color: var(--color-orange); }
.feature-card .icon.green  { background: rgba(43, 182, 115, 0.12);  color: var(--color-green); }
.feature-card .icon.navy   { background: rgba(10, 42, 102, 0.08);   color: var(--color-navy); }
.feature-card h3 { margin-bottom: .35rem; }
.feature-card p  { margin-bottom: 0; }

/* ---------- Step list ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
}
.step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-navy); color: #fff;
  font-family: var(--font-head); font-weight: 700;
  margin-bottom: .75rem;
}
.step:nth-child(2) .num { background: var(--color-royal); }
.step:nth-child(3) .num { background: var(--color-orange); }
.step:nth-child(4) .num { background: var(--color-green); }
.step h3 { font-size: 1.05rem; }
.step p { margin-bottom: 0; font-size: .95rem; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 800px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat .num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
}
.stat .lbl { color: rgba(255,255,255,0.7); font-size: .95rem; }
.stat:nth-child(1) .num { color: #fff; }
.stat:nth-child(2) .num { color: var(--color-orange); }
.stat:nth-child(3) .num { color: var(--color-green); }
.stat:nth-child(4) .num { color: #9CC2FF; }

/* ---------- Split / Image-Text ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.check-list {
  list-style: none;
  padding: 0; margin: 1.25rem 0 0;
  display: grid; gap: .65rem;
}
.check-list li {
  display: flex; align-items: flex-start; gap: .65rem;
  color: var(--color-text);
}
.check-list li::before {
  content: "✓";
  flex: 0 0 22px; height: 22px; width: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-green); color: #fff;
  border-radius: 50%;
  font-size: .8rem; font-weight: 700;
  margin-top: 2px;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}
.testimonial-card .stars { color: var(--color-orange); margin-bottom: .5rem; }
.testimonial-card .quote {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.testimonial-card .who {
  display: flex; align-items: center; gap: .75rem;
}
.testimonial-card .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--color-navy); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
}
.testimonial-card .who strong { color: var(--color-navy); font-family: var(--font-head); }
.testimonial-card .who small  { color: var(--color-muted); display: block; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, #143b8e 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 60% at 100% 0%, rgba(244, 121, 31, 0.35), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; }
.cta-banner p  { color: rgba(255,255,255,0.85); }
.cta-banner .row { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 800px) {
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner .row { justify-content: flex-start; }
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: .75rem; max-width: 820px; margin: 0 auto; }
.faq {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-head); font-weight: 600;
  color: var(--color-navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--color-royal);
  font-size: 1.4rem; font-weight: 700;
  transition: transform .2s ease;
}
.faq[open] summary::after { content: "−"; }
.faq .body { padding: 0 1.2rem 1.1rem; color: var(--color-muted); }

/* ---------- Table ---------- */
.fine-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.fine-table th, .fine-table td {
  padding: .9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: .95rem;
}
.fine-table th {
  background: var(--color-surface);
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--color-navy);
}
.fine-table tbody tr:last-child td { border-bottom: 0; }
.fine-table tbody tr:hover { background: rgba(30, 111, 232, 0.04); }
.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .55rem;
  border-radius: 999px;
}
.tag-orange { background: rgba(244, 121, 31, 0.12); color: var(--color-orange); }
.tag-green  { background: rgba(43, 182, 115, 0.14); color: var(--color-green); }
.tag-red    { background: rgba(220, 38, 38, 0.12); color: #b91c1c; }
.tag-blue   { background: rgba(30, 111, 232, 0.12); color: var(--color-royal); }

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-family: var(--font-head); font-weight: 500;
  color: var(--color-navy); font-size: .9rem; margin-bottom: .35rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font: inherit;
  color: var(--color-text);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-royal);
  box-shadow: 0 0 0 4px rgba(30, 111, 232, 0.12);
}
.form-success {
  background: rgba(43, 182, 115, 0.10);
  border: 1px solid rgba(43, 182, 115, 0.4);
  color: #1b6e46;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  display: none;
}
.form-success.show { display: block; }

.info-card {
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.info-card h3 { color: #fff; }
.info-card .info-row {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.info-card .info-row:last-child { border-bottom: 0; }
.info-card .ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.10);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 38px;
  font-size: 1.05rem;
}
.info-card .info-row p { color: rgba(255,255,255,0.78); margin: 0; }
.info-card .info-row strong { color: #fff; font-family: var(--font-head); }

/* ---------- Page banner ---------- */
.page-banner {
  background:
    radial-gradient(60% 100% at 100% 0%, rgba(244, 121, 31, 0.10), transparent 60%),
    radial-gradient(60% 100% at 0% 100%, rgba(30, 111, 232, 0.12), transparent 60%),
    var(--color-bg);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--color-border);
}
.crumbs { color: var(--color-muted); font-size: .9rem; margin-bottom: .5rem; }
.crumbs a { color: var(--color-royal); }
.crumbs span { color: var(--color-navy); font-weight: 600; }
.page-banner h1 { max-width: 760px; }
.page-banner .lead { color: var(--color-muted); font-size: 1.05rem; max-width: 720px; }

/* ---------- Values / About ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .value-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-navy);
  color: #C7D2FE;
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-footer a { color: #C7D2FE; font-size: .92rem; }
.site-footer a:hover { color: var(--color-orange); }
.site-footer .brand {
  color: #fff;
  margin-bottom: .85rem;
}
.site-footer .tagline { color: rgba(255,255,255,0.7); font-size: .95rem; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,0.6);
  flex-wrap: wrap; gap: .5rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* Selection */
::selection { background: var(--color-orange); color: #fff; }

/* =========================================================
   Top Strip — Legal Partner (K&D Law Associate)
   ========================================================= */
.top-strip {
  background: linear-gradient(90deg, #0A2A66 0%, #143b8e 55%, #1E6FE8 100%);
  color: rgba(255,255,255,0.92);
  font-family: var(--font-head);
  font-size: .8rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.top-strip .top-strip-label {
  color: rgba(255,255,255,0.7);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .68rem;
  font-weight: 600;
}
.top-strip .partner-logo {
  height: 34px;
  width: 34px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.top-strip .partner-brand {
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: .9rem;
}
.top-strip .partner-brand .amp { color: var(--color-orange); }

/* =========================================================
   Header WhatsApp / Call Icon Buttons
   ========================================================= */
.header-actions {
  display: flex;
  gap: .55rem;
  align-items: center;
}
.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
  border: 0;
  flex: 0 0 42px;
}
.icon-btn svg { width: 20px; height: 20px; display: block; }
.icon-btn-whatsapp { background: #25D366; }
.icon-btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
.icon-btn-call { background: var(--color-orange); }
.icon-btn-call:hover {
  background: #d8650f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 121, 31, 0.4);
}
/* Gentle pulse ring to draw attention */
.icon-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 0 0 currentColor;
  opacity: .45;
  animation: icon-pulse 2.2s ease-out infinite;
}
.icon-btn-whatsapp::after { color: #25D366; }
.icon-btn-call::after { color: var(--color-orange); }
@keyframes icon-pulse {
  0%   { box-shadow: 0 0 0 0 currentColor; opacity: .35; }
  70%  { box-shadow: 0 0 0 12px currentColor; opacity: 0; }
  100% { box-shadow: 0 0 0 0 currentColor; opacity: 0; }
}

@media (max-width: 900px) {
  .header-actions .nav-pay-btn { display: none; }
  .icon-btn { width: 38px; height: 38px; flex-basis: 38px; }
  .icon-btn svg { width: 18px; height: 18px; }
}

/* Mobile menu CTA row */
.mobile-cta-row {
  display: flex;
  gap: .55rem;
  align-items: center;
  margin-top: 1rem;
}
.mobile-cta-row .btn { flex: 1; margin-top: 0 !important; }
.mobile-cta-row .icon-btn { flex: 0 0 44px; width: 44px; height: 44px; }

/* Transporter highlight (RTO page) */
.transporter-highlight {
  color: var(--color-orange);
  font-weight: 700;
}
.info-callout {
  background: linear-gradient(135deg, rgba(244,121,31,0.08) 0%, rgba(30,111,232,0.08) 100%);
  border: 1px solid rgba(244,121,31,0.25);
  border-left: 4px solid var(--color-orange);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-callout h4 {
  color: var(--color-navy);
  font-family: var(--font-head);
  margin-bottom: .5rem;
  font-size: 1.1rem;
}
.info-callout p { margin-bottom: 0; }
