/* ============================================================
   GATI LOGISTICS PACKERS AND MOVERS GURGAON
   URL: www.gatilogisticsgurgaon.in
   Style: Industrial Bold — Deep Navy + Flame Orange
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #1A3050;
  --orange:      #164D67;
  --orange-dark: #C13E08;
  --gold:        #F5A623;
  --light:       #F4F1EC;
  --white:       #FFFFFF;
  --text:        #1C1C1C;
  --muted:       #10A997;
  --border:      #DDD8CF;
  --radius:      6px;
  --shadow:      0 6px 28px rgba(13,27,42,.12);
  --shadow-lg:   0 12px 48px rgba(13,27,42,.18);
  --transition:  0.28s cubic-bezier(.4,0,.2,1);
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
.text-orange { color: var(--orange); }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }

/* ── LAYOUT HELPERS ────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-dark { background: var(--navy); }
.section-light { background: var(--light); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8   { margin-top: 8px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mb-8   { margin-bottom: 8px; }
.mb-16  { margin-bottom: 16px; }
.mb-32  { margin-bottom: 32px; }
.mb-48  { margin-bottom: 48px; }

/* ── SECTION HEADER ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,81,13,.10);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { color: var(--muted); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark); color: var(--white);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,81,13,.35);
}
.btn-outline {
  background: transparent; color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white); color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid); color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 40px; font-size: 1.1rem; }
.btn-sm { padding: 9px 20px; font-size: .88rem; }

/* ── HEADER / NAV ──────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(13,27,42,.08);
}
.top-bar {
  background: var(--light);
  border-bottom: 1px solid rgba(13,27,42,.08);
  padding: 7px 0;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.top-bar a { color: var(--navy); }
.top-bar a:hover { color: var(--orange); opacity: 1; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--orange); }

.navbar { padding: 0; }
.navbar .container { display: flex; align-items: stretch; min-height: 72px; }

.logo-wrap { display: flex; align-items: center; gap: 12px; padding: 12px 0; text-decoration: none; flex-shrink: 0; }
.logo-icon {
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(22,77,103,.18);
}
.logo-icon svg { width: 28px; height: 28px; fill: var(--white); }
.logo-text { line-height: 1.15; }
.logo-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
}
.logo-text span {
  font-size: .72rem;
  color: var(--orange);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-menu { display: flex; align-items: center; gap: 0; margin-left: auto; }
.nav-menu li { position: relative; }
.nav-menu a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 26px 14px;
  transition: color var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--orange); }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px 2px 0 0;
}
.nav-cta {
  margin-left: 16px;
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  margin-top: 16px; margin-bottom: 16px;
  align-self: center;
  box-shadow: 0 10px 24px rgba(22,77,103,.22);
}
.nav-cta:hover { background: var(--orange-dark) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 25px 0px; margin-left: auto;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar-light {
  background: var(--white);
  border-top: 1px solid rgba(13,27,42,.04);
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3d6b 100%);
  color: var(--white);
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-pattern {
  position: absolute; right: -60px; top: -40px;
  width: 600px; height: 600px;
  border: 120px solid rgba(232,81,13,.08);
  border-radius: 50%;
  pointer-events: none;
}
.hero-pattern-2 {
  position: absolute; right: 60px; top: 60px;
  width: 360px; height: 360px;
  border: 80px solid rgba(245,166,35,.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  border: 1px solid rgba(232,81,13,.35);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  animation: fadeInDown .6s ease both;
}
.hero h1 { color: var(--white); margin-bottom: 20px; animation: fadeInUp .7s .1s ease both; }
.hero h1 span { color: var(--orange); display: block; }
.hero p  { font-size: 1.1rem; opacity: .88; max-width: 540px; margin-bottom: 36px; animation: fadeInUp .7s .2s ease both; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp .7s .3s ease both; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
  animation: fadeInUp .7s .4s ease both;
}
.hero-stat strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span { font-size: .85rem; color: rgba(255,255,255,.65); }

/* ── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-body { padding: 28px; }
.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(232,81,13,.12), rgba(245,166,35,.12));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { font-size: .93rem; color: var(--muted); margin-bottom: 0; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 16px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; color: var(--orange-dark); }
.card-link svg { width: 16px; height: 16px; }

/* ── SERVICE GRID ──────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleY(1); }
.service-card .icon {
  width: 60px; height: 60px;
  background: var(--orange);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card .icon svg { width: 30px; height: 30px; fill: var(--white); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: .92rem; color: var(--muted); margin-bottom: 18px; }

/* ── WHY US ────────────────────────────────────────────────── */
.why-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 24px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition);
}
.why-item:hover { background: rgba(255,255,255,.09); }
.why-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 24px; height: 24px; fill: var(--orange); }
.why-item h4 { color: var(--white); margin-bottom: 6px; font-size: 1rem; }
.why-item p  { color: rgba(255,255,255,.62); font-size: .9rem; margin: 0; }

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testi-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition);
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  opacity: .15;
  position: absolute;
  top: 12px; left: 20px;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { font-size: .95rem; color: var(--text); font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .95rem; color: var(--navy); }
.testi-author span   { font-size: .82rem; color: var(--muted); }

/* ── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, transparent, rgba(232,81,13,.12));
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; color: rgba(255,255,255,.6);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── PROCESS STEPS ─────────────────────────────────────────── */
.step {
  text-align: center; padding: 32px 20px;
  position: relative;
}
.step-num {
  width: 64px; height: 64px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 20px rgba(232,81,13,.35);
}
.step h4 { margin-bottom: 8px; }
.step p   { font-size: .9rem; color: var(--muted); margin: 0; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
}
.faq-question {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 22px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--light); }
.faq-question svg  { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question { background: var(--light); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: .95rem;
  color: var(--muted);
}
.faq-item.open .faq-answer { display: block; }

/* ── CONTACT FORM ──────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: 'Oswald', sans-serif;
  font-size: .88rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: .96rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,81,13,.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ── INFO BOXES ────────────────────────────────────────────── */
.info-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  padding: 32px;
  height: 100%;
}
.info-box h3 { color: var(--white); margin-bottom: 24px; font-size: 1.4rem; }
.info-list { display: flex; flex-direction: column; gap: 20px; }
.info-list-item { display: flex; align-items: flex-start; gap: 14px; }
.info-list-item .ico {
  width: 42px; height: 42px; flex-shrink: 0;
  background: white;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.info-list-item .ico svg { width: 20px; height: 20px; fill: var(--orange); }
.info-list-item strong { display: block; color: var(--white); font-size: .95rem; margin-bottom: 2px; }
.info-list-item span   { font-size: .88rem; color: rgba(255,255,255,.6); }

/* ── HIGHLIGHT BAND ────────────────────────────────────────── */
.highlight-band {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 56px 0;
  color: var(--white);
}
.highlight-band h2 { color: var(--white); margin-bottom: 12px; }
.highlight-band p  { color: rgba(255,255,255,.85); margin-bottom: 0; max-width: 540px; }
.highlight-band .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding-top: 72px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-brand .logo-wrap { margin-bottom: 18px; padding: 0; }
.footer-brand p { font-size: .9rem; line-height: 1.65; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; fill: currentColor; }

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .9rem; color: rgba(255,255,255,.62);
  display: flex; align-items: center; gap: 7px;
  transition: color var(--transition), gap var(--transition);
}
.footer-links a:hover { color: var(--orange); gap: 11px; }
.footer-links a::before { content: '›'; font-size: 1.1rem; color: var(--orange); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: .9rem; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { color: rgba(255,255,255,.65); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  font-size: .84rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--orange); }

/* ── ABOUT ─────────────────────────────────────────────────── */
.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  min-height: 480px;
  display: flex; align-items: center; justify-content: center;
}
.about-img-inner {
  text-align: center; color: var(--white);
  padding: 40px;
}
.about-img-inner svg { width: 100px; height: 100px; fill: rgba(255,255,255,.15); margin-bottom: 20px; }
.about-badge {
  position: absolute;
  bottom: 30px; right: -10px;
  background: var(--orange);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 10px 0 0 10px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge strong { display: block; font-family: 'Oswald', sans-serif; font-size: 2.4rem; font-weight: 700; line-height: 1; }
.about-badge span { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }

.value-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.value-item:last-child { border-bottom: none; }
.value-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(232,81,13,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 22px; height: 22px; fill: var(--orange); }
.value-item h4 { font-size: .95rem; margin-bottom: 4px; }
.value-item p  { font-size: .88rem; color: var(--muted); margin: 0; }

/* ── TEAM ──────────────────────────────────────────────────── */
.team-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--white);
  border: 3px solid var(--orange);
}
.team-card h4 { margin-bottom: 4px; }
.team-card span { font-size: .88rem; color: var(--orange); font-weight: 600; }

/* ── COVERAGE MAP ──────────────────────────────────────────── */
.area-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: .88rem; font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  margin: 4px;
  transition: all var(--transition);
}
.area-tag:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.area-tag svg   { width: 14px; height: 14px; fill: var(--orange); }
.area-tag:hover svg { fill: var(--white); }

/* ── PRICING ───────────────────────────────────────────────── */
.price-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform var(--transition);
}
.price-card:hover { transform: translateY(-5px); }
.price-card.featured { border: 2px solid var(--orange); }
.price-header {
  background: var(--navy);
  color: var(--white);
  padding: 28px;
  text-align: center;
}
.price-header h3 { color: var(--white); margin-bottom: 6px; }
.price-header .price {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.price-header .price sub { font-size: .75rem; vertical-align: middle; }
.price-header.featured-h { background: var(--orange); }
.price-body { padding: 28px; }
.price-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.price-list li { display: flex; align-items: center; gap: 10px; font-size: .93rem; }
.price-list li svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; }

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,81,13,.4); }
  50%      { box-shadow: 0 0 0 12px rgba(232,81,13,0); }
}
.pulse { animation: pulse 2.5s infinite; }

/* ── FLOATING CTA ──────────────────────────────────────────── */
.float-cta {
  position: fixed; bottom: 30px; right: 30px; z-index: 998;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: .9rem; font-weight: 600;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: all var(--transition);
  cursor: pointer; border: none;
}
.float-btn:hover { transform: translateX(-4px); }
.float-btn.call { background: #25D366; }
.float-btn.phone { background: var(--orange); }
.float-btn svg { width: 20px; height: 20px; fill: var(--white); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .hero { padding: 70px 0 56px; }
  .hero-stats { gap: 24px; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 16px 0; box-shadow: 0 14px 34px rgba(13,27,42,.12); border-top: 1px solid rgba(13,27,42,.08); }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 24px; }
  .nav-cta { margin: 8px 24px; }
  .hamburger { display: flex; }
  .navbar .container { flex-wrap: wrap; position: relative; }
  .highlight-band .container { flex-direction: column; }
  .float-cta { bottom: 20px; right: 16px; }
}
@media (max-width: 480px) {
  .top-bar .container { flex-direction: column; gap: 4px; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .about-badge { right: 0; }
}

