/* ================================================================
   GCM INVISIBLE GRILLS — CUSTOM STYLESHEET
   Brand: GCM Invisible Grills | Hyderabad
   ================================================================ */

/* ----------------------------------------------------------------
   CSS VARIABLES
---------------------------------------------------------------- */
:root {
  --primary:       #2563eb;
  --primary-dark:  #1d4ed8;
  --primary-light: #3b82f6;
  --secondary:     #7c3aed;
  --accent:        #f59e0b;
  --accent-dark:   #d97706;
  --dark:          #080f20;
  --darker:        #040a14;
  --nav-bg:        rgba(255,255,255,0.97);
  --light-bg:      #f0f4ff;
  --card-bg:       #ffffff;
  --border:        #dde5f4;
  --text-dark:     #0f172a;
  --text-sec:      #475569;
  --text-muted:    #94a3b8;
  --green:         #10b981;
  --shadow-sm:     0 2px 12px rgba(37,99,235,0.07);
  --shadow-md:     0 6px 24px rgba(37,99,235,0.11);
  --shadow-lg:     0 12px 48px rgba(37,99,235,0.16);
  --shadow-xl:     0 24px 72px rgba(37,99,235,0.22);
  --glow-blue:     0 0 40px rgba(37,99,235,0.45);
  --glow-accent:   0 0 30px rgba(245,158,11,0.45);
  --radius:        14px;
  --radius-sm:     9px;
  --radius-lg:     22px;
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.25; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; }
address { font-style: normal; }

.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.text-accent { color: var(--accent) !important; }
.text-gradient {
  background: linear-gradient(135deg, #818cf8 0%, #2563eb 45%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-pad { padding: 80px 0; }

/* ----------------------------------------------------------------
   TOP CONTACT BAR
----------------------------------------------------------------- */
.top-contact-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1035;
  height: 36px;
  background: #040d1e;
  border-bottom: 1px solid rgba(37,99,235,.25);
  display: flex;
  align-items: center;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 0;
}
.tb-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  padding: 0 14px;
  height: 36px;
  white-space: nowrap;
  transition: color .18s, background .18s;
}
.tb-link i { font-size: 11px; color: var(--primary); }
.tb-link:hover { color: #fff; background: rgba(255,255,255,.05); }
.tb-phone { color: #e2e8f0 !important; font-weight: 600; }
.tb-phone i { color: var(--accent) !important; }
.tb-phone:hover { color: var(--accent) !important; }
.tb-wa {
  color: #22c55e !important;
  font-weight: 700;
  background: rgba(34,197,94,.1);
  border-left: 1px solid rgba(34,197,94,.2);
  border-right: 1px solid rgba(34,197,94,.2);
  letter-spacing: .2px;
}
.tb-wa i { color: #22c55e !important; font-size: 14px; }
.tb-wa:hover { background: rgba(34,197,94,.2) !important; }
.tb-div {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
.tb-hide-sm { display: inline-flex; }

/* ----------------------------------------------------------------
   MARQUEE TICKER
----------------------------------------------------------------- */
.gcm-ticker {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 1034;
  height: 42px;
  background: linear-gradient(90deg, #0d2060 0%, #1e3a8a 25%, #2563eb 60%, #1d4ed8 100%);
  border-bottom: 2.5px solid var(--accent);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-badge {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  background: var(--accent);
  color: #0f172a;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  padding-right: 26px;
}
.ticker-badge i { font-size: 12px; }
.ticker-outer {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-outer::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 48px;
  background: linear-gradient(90deg, #1e3a8a, transparent);
  z-index: 2;
  pointer-events: none;
}
.ticker-outer::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 48px;
  background: linear-gradient(270deg, #1d4ed8, transparent);
  z-index: 2;
  pointer-events: none;
}
.ticker-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: gcm-ticker-scroll 45s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
@keyframes gcm-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.t-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 8px;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: .1px;
}
.t-item i    { color: #fbbf24; font-size: 12px; flex-shrink: 0; }
.t-item strong { color: #fde68a; font-weight: 700; }
.t-sep {
  color: var(--accent);
  font-size: 7px;
  padding: 0 8px;
  opacity: .6;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   NAVBAR
---------------------------------------------------------------- */
#mainNav {
  top: 78px !important;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(37,99,235,0.10);
  box-shadow: 0 4px 24px rgba(37,99,235,0.08);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
#mainNav.scrolled {
  background: rgba(255,255,255,0.99);
  padding: 8px 0;
  box-shadow: 0 6px 32px rgba(37,99,235,0.14);
  border-bottom-color: rgba(37,99,235,0.14);
}

.brand-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
}
.brand-name {
  display: block;
  font-size: 18px; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.brand-sub {
  display: block;
  font-size: 10px; font-weight: 500;
  color: var(--text-muted); letter-spacing: 0.5px; line-height: 1;
}

.navbar-nav .nav-link {
  color: #334155 !important;
  font-size: 14px; font-weight: 600;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.1px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--primary) !important;
  background: rgba(37,99,235,0.07);
}
#mainNav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2837%2C99%2C235%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #fb923c);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(245,158,11,0.45);
  letter-spacing: 0.2px;
}
.btn-accent:hover {
  background: linear-gradient(135deg, #e8920a, #ea6c0d);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(245,158,11,0.55);
}

/* ----------------------------------------------------------------
   HERO SECTION
---------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: linear-gradient(145deg, #04091a 0%, #080f23 30%, #0d1730 55%, #111e40 80%, #0a1528 100%);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 0 80px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 40%, rgba(37,99,235,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 15% 70%, rgba(124,58,237,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 85% 80%, rgba(245,158,11,0.10) 0%, transparent 50%);
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,179,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,179,237,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.4);
  color: #a5b4fc;
  font-size: 12.5px; font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(8px);
}
.hero-h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-lead {
  font-size: 16px; color: rgba(255,255,255,0.75);
  max-width: 520px; margin-bottom: 32px; line-height: 1.8;
}
.hero-lead strong { color: rgba(255,255,255,0.95); }
.btn-hero { padding: 14px 32px; font-size: 15px; font-weight: 700; border-radius: 50px; letter-spacing: 0.2px; }
.btn-hero.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  border: none;
  box-shadow: 0 8px 28px rgba(37,99,235,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-hero.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(37,99,235,0.65), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-hero.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.07);
}
.btn-hero.btn-outline-light:hover { transform: translateY(-3px); background: rgba(255,255,255,0.14); }

.hero-trust-bar { font-size: 13px; color: rgba(255,255,255,0.7); }
.hero-trust-bar span { display: flex; align-items: center; gap: 4px; }

/* Hero Form Card */
.hero-form-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.hero-form-header {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #fff;
  padding: 18px 24px;
  font-size: 16px; font-weight: 600;
}
.hero-form-card .p-4 { padding: 24px !important; }

/* Shared Input Styles */
.gcm-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px; font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}
.gcm-input::placeholder { color: rgba(255,255,255,0.4); }
.gcm-input:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
  color: #fff;
  outline: none;
}
.gcm-input option { background: #1e293b; color: #fff; }

.form-note { font-size: 11px; color: rgba(255,255,255,0.4); }

/* Scroll Cue */
.hero-scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scroll-anim 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
@keyframes scroll-anim { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(10px)} }

/* ----------------------------------------------------------------
   STATS BAR
---------------------------------------------------------------- */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(37,99,235,0.06);
  position: relative; z-index: 2;
}
.stat-card {
  padding: 14px 10px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(37,99,235,0.03); }
.stat-num {
  font-size: 2.4rem; font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 4px;
}
.stat-lbl { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ----------------------------------------------------------------
   SECTION LABELS & HEADINGS
---------------------------------------------------------------- */
.section-label-pill {
  display: inline-block;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(124,58,237,0.12));
  color: var(--primary);
  font-size: 11.5px; font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  border: 1px solid rgba(37,99,235,0.18);
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.section-label-pill-light {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 12px; font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900; color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-sub { font-size: 15px; color: var(--text-sec); max-width: 600px; margin: 0 auto; }
.section-header .section-sub { text-align: center; }

.lead-text { font-size: 17px; color: var(--text-dark); font-weight: 500; line-height: 1.7; }
.body-text { font-size: 15px; color: var(--text-sec); line-height: 1.8; }

/* ----------------------------------------------------------------
   ABOUT SECTION
---------------------------------------------------------------- */
.about-section { background: linear-gradient(180deg, #fff 0%, var(--light-bg) 100%); }
.about-visual { position: relative; padding-bottom: 40px; }
.about-main-img {
  background: linear-gradient(135deg, #060e22 0%, #0d1f4a 50%, #1a2f6e 100%);
  border-radius: var(--radius-lg);
  height: 380px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(37,99,235,0.2);
}
.about-main-img::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(99,179,237,0.06) 29px, rgba(99,179,237,0.06) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(99,179,237,0.06) 29px, rgba(99,179,237,0.06) 30px);
}
.about-img-inner { text-align: center; position: relative; z-index: 1; }
.about-grill-icon {
  font-size: 80px;
  color: rgba(255,255,255,0.12);
  display: block; margin-bottom: 16px;
}
.about-img-label { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; text-align: center; }
.about-img-label small { display: block; color: rgba(255,255,255,0.45); font-size: 12px; margin-top: 4px; }

.about-badge-float {
  position: absolute; bottom: 30px; right: -20px;
  background: #fff; border-radius: var(--radius);
  padding: 16px 20px; text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.about-years-float {
  position: absolute; top: 30px; left: -20px;
  background: var(--primary);
  color: #fff; border-radius: var(--radius);
  padding: 14px 20px; text-align: center;
  box-shadow: 0 8px 25px rgba(37,99,235,0.4);
}
.years-num { display: block; font-size: 28px; font-weight: 800; line-height: 1; }
.years-lbl { font-size: 11px; font-weight: 500; opacity: 0.8; }

.feat-pill {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px; font-weight: 500;
  color: var(--text-dark);
  display: flex; align-items: center;
}
.feat-pill i { color: var(--primary); }

/* ----------------------------------------------------------------
   SERVICES CARDS
---------------------------------------------------------------- */
.services-section { background: linear-gradient(180deg, var(--light-bg) 0%, #fff 100%); }
.svc-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0; transition: var(--transition);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.25); }
.svc-card:hover::before { opacity: 1; }
.svc-card-featured {
  background: linear-gradient(145deg, #060e22 0%, #0d1b40 50%, #152358 100%);
  border-color: rgba(37,99,235,0.45);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.svc-card-featured .svc-title { color: #fff; }
.svc-card-featured .svc-desc { color: rgba(255,255,255,0.75); }
.svc-card-featured .svc-list li { color: rgba(255,255,255,0.8); }
.svc-card-featured .svc-list i { color: var(--green); }
.svc-card-featured .svc-cta { color: var(--accent); }

.svc-popular-badge {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #fb923c);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 16px; border-radius: 0 0 12px 12px; white-space: nowrap;
  z-index: 3; letter-spacing: 0.3px;
}
.svc-card .svc-img {
  display: block;
  width: calc(100% + 56px);
  max-width: calc(100% + 56px);
  height: 180px;
  object-fit: cover;
  margin: -32px -28px 22px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.svc-card-featured .svc-img { opacity: 0.85; }

.svc-icon-wrap {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(124,58,237,0.12));
  border: 1px solid rgba(37,99,235,0.18);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--primary);
  margin-bottom: 18px;
  transition: var(--transition);
}
.svc-card:hover .svc-icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; border-color: transparent;
  box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}
.svc-card-featured .svc-icon-wrap { background: rgba(255,255,255,0.1); color: var(--accent); }
.svc-title { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.svc-desc { font-size: 13.5px; color: var(--text-sec); line-height: 1.7; margin-bottom: 14px; }
.svc-list { list-style: none; padding: 0; margin-bottom: 18px; }
.svc-list li { font-size: 13px; color: var(--text-sec); padding: 3px 0; display: flex; align-items: center; gap: 8px; }
.svc-list i { color: var(--green); font-size: 11px; flex-shrink: 0; }
.svc-cta { font-size: 13px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 4px; }
.svc-cta:hover { color: var(--primary-dark); gap: 8px; }

/* ----------------------------------------------------------------
   WHY CHOOSE US
---------------------------------------------------------------- */
.why-section { background: #fff; position: relative; overflow: hidden; }
.why-section::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon-box {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  box-shadow: 0 6px 20px rgba(37,99,235,0.35);
  transition: var(--transition);
}
.why-item:hover .why-icon-box { transform: scale(1.1) rotate(-4deg); box-shadow: 0 10px 28px rgba(37,99,235,0.45); }
.why-title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.why-desc { font-size: 13.5px; color: var(--text-sec); line-height: 1.7; margin: 0; }

.adv-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 18px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.adv-card:hover {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(37,99,235,0.06), rgba(124,58,237,0.06));
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  outline: 2px solid rgba(37,99,235,0.15);
  outline-offset: -2px;
}
.adv-icon { font-size: 32px; color: var(--primary); display: block; margin-bottom: 12px; }
.adv-card h5 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }

/* ----------------------------------------------------------------
   PROCESS / HOW IT WORKS
---------------------------------------------------------------- */
.process-section { background: linear-gradient(145deg, #04091a 0%, #080f26 30%, #0d1535 55%, #0a1040 80%, #060d1e 100%); position: relative; overflow: hidden; }
.process-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(124,58,237,0.15) 0%, transparent 65%);
}
.process-section .section-h2 { color: #fff; }
.process-step { padding: 10px; }
.process-num {
  font-size: 20px; font-weight: 800;
  color: var(--accent); letter-spacing: 1px;
  margin-bottom: 12px;
}
.process-icon {
  font-size: 28px; color: rgba(255,255,255,0.7);
  display: block; margin-bottom: 10px;
}
.process-step h5 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }

/* ----------------------------------------------------------------
   TEXT-MUTED OVERRIDE FOR DARK SECTION BACKGROUNDS
   Bootstrap .text-muted is dark gray — override to light in dark sections
---------------------------------------------------------------- */
.process-section .text-muted,
.process-section .section-sub,
.contact-section .text-muted,
.main-footer .text-muted,
.hero-section .text-muted {
  color: rgba(203, 213, 225, 0.72) !important;
}

/* ----------------------------------------------------------------
   SERVICE AREAS
---------------------------------------------------------------- */
.areas-section { background: linear-gradient(180deg, #fff 0%, var(--light-bg) 100%); }
.state-silo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.state-silo-header {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700;
  color: var(--text-dark); flex-wrap: wrap;
}
.state-silo-header i { color: var(--primary); }
.state-silo-header a { color: var(--primary); }
.state-silo-header a:hover { color: var(--primary-dark); }
.silo-arrow i { font-size: 11px; color: var(--text-muted); }

.local-area-heading { font-size: 13px; font-weight: 600; color: var(--text-sec); text-transform: uppercase; letter-spacing: 0.5px; }

.area-pill {
  display: flex; align-items: center;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 12.5px; font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.area-pill:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.area-city { font-weight: 600; }
.area-local { font-size: 12px; }
.hq-tag {
  background: var(--accent); color: #fff;
  font-size: 9px; font-weight: 700;
  padding: 1px 5px; border-radius: 4px; margin-left: 4px; vertical-align: middle;
}

/* ----------------------------------------------------------------
   PRICING CARDS
---------------------------------------------------------------- */
.pricing-section { background: var(--light-bg); }
.price-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card-featured {
  background: linear-gradient(145deg, #060e22 0%, #0d1b40 50%, #162255 100%);
  border-color: rgba(37,99,235,0.5);
  box-shadow: 0 12px 48px rgba(37,99,235,0.35), 0 0 0 1px rgba(99,102,241,0.2) inset;
}
.price-badge-top {
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
  text-align: center; padding: 5px;
  letter-spacing: 0.5px;
}
.price-header { padding: 28px 28px 20px; }
.price-header h3 { font-size: 18px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.price-card-featured .price-header h3 { color: #fff; }
.price-amount {
  font-size: 2.8rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-card-featured .price-amount {
  background: linear-gradient(135deg, var(--accent), #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-unit { font-size: 14px; font-weight: 500; color: var(--text-sec); }
.price-card-featured .price-unit { color: rgba(255,255,255,0.6); }
.price-grade { font-size: 13px; color: var(--text-muted); margin-top: 4px; margin-bottom: 0; }
.price-card-featured .price-grade { color: rgba(255,255,255,0.5); }
.price-features {
  list-style: none; padding: 0 28px 8px;
}
.price-features li {
  font-size: 13.5px; padding: 7px 0;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.price-card-featured .price-features li { border-top-color: rgba(255,255,255,0.08); }
.price-features li.yes { color: var(--text-dark); }
.price-features li.no { color: var(--text-muted); }
.price-card-featured .price-features li.yes { color: rgba(255,255,255,0.85); }
.price-card-featured .price-features li.no { color: rgba(255,255,255,0.35); }
.price-features .fa-check { color: var(--green); font-size: 11px; }
.price-features .fa-times { color: var(--text-muted); font-size: 11px; }
.btn-price { margin: 0 28px 28px; width: calc(100% - 56px) !important; border-radius: var(--radius-sm); font-weight: 600; }

/* ----------------------------------------------------------------
   GALLERY
---------------------------------------------------------------- */
.gallery-section { background: #fff; }
.gal-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gal-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.gal-item:hover img { opacity: 0.88; transform: scale(1.06); }
.gal-ph {
  height: 200px;
  background-size: 30px 30px;
  position: relative;
}
.gal-ph-1 { background-color: #0f172a; background-image: repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(99,179,237,0.1) 30px), repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(99,179,237,0.1) 30px); }
.gal-ph-2 { background-color: #1e3a5f; background-image: repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(245,158,11,0.12) 30px), repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(245,158,11,0.12) 30px); }
.gal-ph-3 { background-color: #162032; background-image: repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(16,185,129,0.1) 30px), repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(16,185,129,0.1) 30px); }
.gal-ph-4 { background-color: #0f1f30; background-image: repeating-linear-gradient(45deg, transparent, transparent 29px, rgba(99,179,237,0.08) 30px), repeating-linear-gradient(-45deg, transparent, transparent 29px, rgba(99,179,237,0.08) 30px); }
.gal-cap {
  background: rgba(0,0,0,0.7);
  color: rgba(255,255,255,0.9);
  font-size: 12px; font-weight: 500;
  padding: 8px 12px; text-align: center;
  transition: var(--transition);
}
.gal-item:hover .gal-ph { opacity: 0.85; }
.gal-item:hover .gal-cap { background: rgba(37,99,235,0.85); color: #fff; }

/* ----------------------------------------------------------------
   TESTIMONIALS
---------------------------------------------------------------- */
.testimonials-section { background: var(--light-bg); }
.testi-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.testi-card::before {
  content: '"';
  position: absolute; top: 16px; right: 20px;
  font-size: 80px; color: var(--border);
  font-family: Georgia, serif; line-height: 1;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,0.2);
}
.testi-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 14px; color: var(--text-sec); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-size: 14px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   FAQ ACCORDION
---------------------------------------------------------------- */
.faq-section { background: #fff; }
.gcm-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.gcm-accordion .accordion-button {
  font-size: 14.5px; font-weight: 600; color: var(--text-dark);
  background: #fff; padding: 18px 22px;
  border-radius: var(--radius) !important;
  box-shadow: none;
}
.gcm-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius) var(--radius) 0 0 !important;
}
.gcm-accordion .accordion-button:not(.collapsed)::after { filter: brightness(10); }
.gcm-accordion .accordion-body {
  font-size: 14px; background: #fff; padding: 16px 22px;
  color: var(--text-sec); line-height: 1.8;
}

/* ----------------------------------------------------------------
   CONTACT SECTION
---------------------------------------------------------------- */
.contact-section { background: linear-gradient(145deg, #04091a 0%, #060e26 30%, #0a1535 55%, #0d1a42 80%, #060b1a 100%); position: relative; overflow: hidden; }
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(124,58,237,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(37,99,235,0.25) 0%, transparent 50%);
  pointer-events: none;
}
.contact-section .section-h2 { color: #fff; }
.contact-section .gcm-input {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.contact-detail-item {
  display: flex; align-items: flex-start; gap: 14px;
  color: inherit; transition: var(--transition);
}
.contact-detail-item:hover { transform: translateX(4px); }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(37,99,235,0.2);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--primary-light);
}
.btn-whatsapp {
  background: #25d366; color: #fff;
  border: none; border-radius: 50px;
  padding: 12px 24px; font-weight: 600; font-size: 14px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1ebe5a; color: #fff; transform: translateY(-2px); }

.contact-form-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
}
.contact-form-card h3 { color: #fff; }
.contact-form-card .form-label { color: rgba(255,255,255,0.7); font-size: 13px; }

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.main-footer { background: linear-gradient(180deg, #04091a 0%, #020610 100%); border-top: 1px solid rgba(37,99,235,0.15); }
.footer-brand { font-size: 22px; font-weight: 800; color: #fff; }
.footer-col-head { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-link { font-size: 13px; color: var(--text-muted); transition: var(--transition); display: inline-block; margin-bottom: 6px; }
.footer-contact-link:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12.5px; color: var(--text-muted); }

/* ----------------------------------------------------------------
   FLOATING ACTION BUTTONS
---------------------------------------------------------------- */
.float-wa, .float-call {
  position: fixed;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: var(--transition);
  right: 22px;
}
.float-wa { background: #25d366; bottom: 90px; }
.float-wa:hover { background: #1ebe5a; color: #fff; transform: scale(1.12); }
.float-call { background: var(--primary); bottom: 28px; }
.float-call:hover { background: var(--primary-dark); color: #fff; transform: scale(1.12); }

/* ----------------------------------------------------------------
   LOCAL PAGE SPECIFIC STYLES (used in generated pages)
---------------------------------------------------------------- */
.breadcrumb-section {
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin-top: 152px !important;
}
.gcm-breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; padding: 0; margin: 0; font-size: 13px; }
.gcm-breadcrumb li + li::before { content: '/'; color: var(--text-muted); padding: 0 4px; }
.gcm-breadcrumb a { color: var(--primary); }
.gcm-breadcrumb .active { color: var(--text-muted); }

.local-hero {
  background: linear-gradient(160deg, #0f172a 0%, #1a2744 100%);
  padding: 100px 0 60px;
  position: relative; overflow: hidden;
}
.local-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(99,179,237,0.04) 60px),
                    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(99,179,237,0.04) 60px);
}
.local-hero-content { position: relative; z-index: 1; }
.local-h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.local-hero-lead { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 560px; line-height: 1.8; }

.local-form-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.local-form-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; padding: 14px 20px;
  font-size: 15px; font-weight: 600;
}
.local-form-body { padding: 20px; }

.intro-section { background: #fff; padding: 60px 0; }
.intro-section p { font-size: 15px; color: var(--text-sec); line-height: 1.9; }

.local-services-section { background: var(--light-bg); padding: 60px 0; }

.schema-seo-section { display: none; }

/* ----------------------------------------------------------------
   UTILITY / BOOTSTRAP OVERRIDES
---------------------------------------------------------------- */
.btn-primary {
  background: var(--primary); border-color: var(--primary);
  font-weight: 600; border-radius: 8px;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,0.4); }
.btn-outline-primary { border-color: var(--primary); color: var(--primary); font-weight: 600; border-radius: 8px; }
.btn-outline-primary:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(255,255,255,0.4); color: #fff; font-weight: 600; border-radius: 8px; }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .section-pad { padding: 60px 0; }
  .about-badge-float, .about-years-float { display: none; }
  .hero-h1 { font-size: 2rem; }
  .contact-form-card { padding: 24px; }
}
@media (max-width: 767.98px) {
  .section-pad { padding: 48px 0; }
  .hero-section { padding-top: 120px; }
  .top-contact-bar { height: 34px; }
  .tb-hide-sm { display: none !important; }
  .gcm-ticker { top: 34px; height: 38px; }
  .t-item { font-size: 12px; }
  #mainNav { top: 72px !important; }
  .breadcrumb-section { margin-top: 132px !important; }
  .about-main-img { height: 200px; }
  .about-main-img::before { display: none; }
  .svc-card .svc-img { height: 140px; }
  .hero-trust-bar { font-size: 12px; gap: 12px !important; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-wa { width: 48px; height: 48px; font-size: 20px; right: 16px; bottom: 80px; }
  .float-call { width: 48px; height: 48px; font-size: 18px; right: 16px; bottom: 20px; }
  .price-card .btn-price { margin: 0 16px 20px; width: calc(100% - 32px) !important; }
  .price-header { padding: 20px 20px 14px; }
  .price-features { padding: 0 20px 6px; }
}
@media (max-width: 575.98px) {
  .stat-num { font-size: 1.8rem; }
  .hero-h1 { font-size: 1.7rem; }
  .process-step { padding: 6px; }
  .process-icon { font-size: 48px; }
}

/* ----------------------------------------------------------------
   LOGO & SERVICE IMAGES
---------------------------------------------------------------- */
.nav-logo {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.footer-logo {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
}
.svc-img {
  width: calc(100% + 56px);
  margin: -32px -28px 22px -28px;
  height: 175px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: block;
}
.about-real-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
@media (max-width: 575.98px) {
  .nav-logo { height: 80px; }
  .svc-img { height: 140px; }
  .about-real-img { height: 240px; }
}

/* ----------------------------------------------------------------
   TOAST POPUP NOTIFICATION (global — all pages)
---------------------------------------------------------------- */
.gcm-toast {
  position: fixed;
  top: 82px;
  right: 20px;
  z-index: 99999;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  min-width: 300px;
  max-width: 380px;
  border-left: 5px solid #10b981;
  transform: translateX(calc(100% + 40px));
  transition: transform .42s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.gcm-toast.show   { transform: translateX(0); pointer-events: all; }
.gcm-toast.error  { border-left-color: #ef4444; }
.gcm-toast-icon   { font-size: 26px; color: #10b981; margin-top: 1px; flex-shrink: 0; }
.gcm-toast.error .gcm-toast-icon { color: #ef4444; }
.gcm-toast-body   { flex: 1; }
.gcm-toast-title  { font-weight: 700; font-size: 15px; color: #0f172a; line-height: 1.3; }
.gcm-toast-msg    { font-size: 13px; color: #64748b; margin-top: 3px; line-height: 1.4; }
.gcm-toast-close  { background: none; border: none; color: #94a3b8; cursor: pointer; font-size: 16px; padding: 0; line-height: 1; flex-shrink: 0; transition: color .15s; }
.gcm-toast-close:hover { color: #0f172a; }
@media (max-width: 575.98px) {
  .gcm-toast { right: 12px; left: 12px; min-width: unset; max-width: unset; top: 72px; }
}

/* ----------------------------------------------------------------
   QUICK LEAD STRIP — below hero section
---------------------------------------------------------------- */
.quick-lead-section {
  background: linear-gradient(135deg, #0d1a40 0%, #1e3a8a 40%, #2563eb 70%, #5b21b6 100%);
  padding: 22px 0;
  position: relative;
  z-index: 5;
  border-bottom: 2px solid rgba(245,158,11,0.4);
}
.quick-lead-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.quick-lead-label {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.quick-lead-label strong { font-size: 16px; font-weight: 700; color: #fff; }
.quick-lead-label span   { font-size: 12px; color: rgba(255,255,255,.7); }
.quick-lead-label .ql-icon { font-size: 22px; color: var(--accent); margin-bottom: 2px; }
.quick-lead-form {
  display: flex;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
}
.quick-input {
  flex: 1;
  min-width: 155px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 9px;
  padding: 11px 15px;
  font-size: 14px;
  background: rgba(255,255,255,.1);
  color: #fff;
  outline: none;
  transition: .2s;
  font-family: inherit;
}
.quick-input::placeholder { color: rgba(255,255,255,.6); }
.quick-input:focus { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.55); }
.quick-submit {
  white-space: nowrap;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 9px;
  font-size: 14px;
}
.quick-lead-note { font-size: 11px; color: rgba(255,255,255,.6); text-align: center; margin-top: 6px; width: 100%; }

/* ----------------------------------------------------------------
   PAGE NAV PILLS STRIP
---------------------------------------------------------------- */
.page-nav-strip {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.page-nav-strip::-webkit-scrollbar { display: none; }
.page-nav-pills {
  display: flex;
  gap: 8px;
  white-space: nowrap;
  align-items: center;
}
.page-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  text-decoration: none;
  transition: .2s;
  flex-shrink: 0;
}
.page-pill:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.page-pill.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.page-pill i { font-size: 12px; }
@media (max-width: 767.98px) {
  .quick-lead-section { padding: 16px 0; }
  .quick-lead-wrap  { flex-direction: column; align-items: stretch; gap: 10px; }
  .quick-lead-label { flex-direction: row; align-items: center; gap: 10px; justify-content: center; }
  .quick-lead-label .ql-icon { margin-bottom: 0; }
  .quick-lead-form  { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .quick-input      { min-width: unset; padding: 10px 12px; font-size: 13px; }
  .quick-input.ql-whatsapp { display: none; }
  .quick-submit     { grid-column: 1 / -1; }
}
