/* ============================================================
   D&L Roadside Guardian — Main Stylesheet
   Brand Colors: Navy #1A2B4A | Yellow #F5C020 | Dark #0F1523
   ============================================================ */

/* ---------- Google Fonts (loaded in HTML) ---------- */

/* ---------- CSS Variables ---------- */
:root {
  --navy:        #1A2B4A;
  --navy-dark:   #0F1523;
  --navy-mid:    #1E3460;
  --yellow:      #F5C020;
  --yellow-dark: #D4A30D;
  --white:       #ffffff;
  --off-white:   #F8F9FA;
  --text-gray:   #6B7280;
  --border:      #E5E7EB;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.10);
  --shadow:      0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.28);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--navy-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; transition: var(--transition); }
ul   { list-style: none; }
p    { line-height: 1.7; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

/* ---------- Layout Helpers ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 96px 0; }
.text-center  { text-align: center; }
.text-yellow  { color: var(--yellow); }
.text-white   { color: var(--white); }
.text-navy    { color: var(--navy); }
.bg-dark      { background-color: var(--navy-dark); }
.bg-navy      { background-color: var(--navy); }
.bg-off-white { background-color: var(--off-white); }

/* ---------- Section Labels & Titles ---------- */
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 580px;
  margin: 0 auto 56px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 10px; }

.btn-yellow {
  background: var(--yellow);
  color: var(--navy-dark);
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,192,32,0.4);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  background: rgba(15, 21, 35, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245,192,32,0.12);
  transition: var(--transition);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.navbar-brand img { height: 48px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: 6px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--yellow); background: rgba(245,192,32,0.08); }
.nav-links .btn-yellow { color: var(--navy-dark); padding: 8px 18px; font-size: 0.85rem; }
.nav-links .btn-yellow:hover { color: var(--navy-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO (Homepage only)
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: 70px;
  background-color: var(--navy-dark);
  background-image:
    radial-gradient(ellipse 70% 55% at 50% 105%, rgba(245,192,32,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(30,52,96,0.55) 0%, transparent 60%),
    linear-gradient(180deg, #0F1523 0%, #152238 55%, #1E3460 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Decorative road lines */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 45%;
  background: linear-gradient(to top, rgba(245,192,32,0.5), transparent);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, var(--off-white), transparent);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 120px;
  max-width: 920px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,192,32,0.1);
  border: 1px solid rgba(245,192,32,0.28);
  color: var(--yellow);
  padding: 7px 18px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero h1 .highlight { color: var(--yellow); }
.hero > .hero-content > p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 0 auto 44px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero-stats {
  display: flex;
  gap: 52px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat .number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--yellow);
  display: block;
}
.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 130px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}
.page-header h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 14px; }
.page-header p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: 0.4; }

/* ============================================================
   SERVICES — Homepage Cards
   ============================================================ */
.services-home { padding: 96px 0; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 16px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--yellow);
}
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--yellow);
}
.service-card h3 { font-size: 1rem; color: var(--navy-dark); margin-bottom: 8px; }
.service-card p  { font-size: 0.88rem; color: var(--text-gray); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { padding: 96px 0; background: var(--navy-dark); }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(245,192,32,0.05);
  border-color: rgba(245,192,32,0.2);
  transform: translateY(-4px);
}
.why-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(245,192,32,0.08);
  border: 2px solid rgba(245,192,32,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.7rem;
  color: var(--yellow);
}
.why-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 10px; }
.why-card p  { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ============================================================
   APP DOWNLOAD SECTION
   ============================================================ */
.app-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(245,192,32,0.05);
  pointer-events: none;
}
.app-section::after {
  content: '';
  position: absolute; bottom: -100px; left: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(245,192,32,0.04);
  pointer-events: none;
}
.app-section .section-title { color: var(--white); }
.app-section .section-subtitle { color: rgba(255,255,255,0.7); }
.app-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: var(--transition);
  min-width: 190px;
  cursor: pointer;
}
.app-btn:hover {
  background: var(--yellow);
  color: var(--navy-dark);
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(245,192,32,0.45);
}
.app-btn i { font-size: 1.8rem; }
.app-btn .store-label small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.8;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.02em;
}
.app-btn .store-label span { font-size: 1rem; }
.coming-soon-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  position: relative; z-index: 1;
}

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.services-detail { padding: 80px 0; }
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--yellow);
}
.sdc-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.sdc-icon {
  width: 54px; height: 54px;
  background: rgba(245,192,32,0.13);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.sdc-header h3 { color: var(--white); font-size: 1.15rem; }
.sdc-body { padding: 28px; }
.sdc-body p { color: var(--text-gray); margin-bottom: 20px; font-size: 0.95rem; }
.sdc-features { list-style: none; }
.sdc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.sdc-features li::before { content: '✓'; color: var(--yellow); font-weight: 800; margin-top: 1px; flex-shrink: 0; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { padding: 96px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--navy-dark); margin-bottom: 24px; }
.about-content p { color: var(--text-gray); margin-bottom: 16px; }
.about-visual-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  min-height: 420px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px; text-align: center; padding: 48px;
}
.about-visual-box i { font-size: 5rem; color: var(--yellow); }
.about-visual-box h3 { color: var(--white); font-size: 1.4rem; }
.about-visual-box p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

.about-values { padding: 80px 0; background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border-left: 4px solid var(--yellow);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card i { font-size: 2rem; color: var(--yellow); margin-bottom: 16px; }
.value-card h3 { color: var(--navy-dark); font-size: 1.05rem; margin-bottom: 8px; }
.value-card p  { font-size: 0.88rem; color: var(--text-gray); }

.about-team { padding: 96px 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 96px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: 60px; margin-top: 56px; }
.contact-info-stack { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 22px;
  border-left: 4px solid var(--yellow);
}
.info-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--yellow); flex-shrink: 0;
}
.info-card h4 {
  font-size: 0.8rem; font-family: 'Montserrat', sans-serif;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-gray); margin-bottom: 4px;
}
.info-card p, .info-card a { color: var(--navy-dark); font-weight: 600; font-size: 0.95rem; }
.info-card a:hover { color: var(--yellow-dark); }

.contact-form-box {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-box h3 { font-size: 1.4rem; color: var(--navy-dark); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  color: var(--navy-dark); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.93rem; color: var(--navy-dark);
  background: var(--white); outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,192,32,0.14);
}
.form-group textarea { resize: vertical; min-height: 128px; }
.alert {
  padding: 13px 18px; border-radius: 8px;
  margin-top: 14px; font-size: 0.93rem; display: none;
}
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #166534; }
.alert-error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.3);  color: #991b1b; }

/* ============================================================
   SUPPORT PAGE
   ============================================================ */
.support-section { padding: 96px 0; }
.faq-container { max-width: 820px; margin: 48px auto 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--yellow); }
.faq-question {
  width: 100%; padding: 20px 24px;
  background: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem; font-weight: 700;
  color: var(--navy-dark); text-align: left; gap: 16px;
}
.faq-question i { color: var(--yellow); transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question { background: var(--navy-dark); color: var(--white); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 20px 24px;
  background: var(--off-white);
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; }

.support-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 0; text-align: center; color: var(--white);
}
.support-contact-row {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-top: 40px;
}
.support-contact-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 18px 28px;
  color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 600;
  transition: var(--transition);
}
.support-contact-item:hover {
  background: var(--yellow); color: var(--navy-dark);
  border-color: var(--yellow); transform: translateY(-2px);
}
.support-contact-item i { font-size: 1.3rem; color: var(--yellow); }
.support-contact-item:hover i { color: var(--navy-dark); }

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.privacy-section { padding: 80px 0; }
.privacy-content { max-width: 860px; margin: 0 auto; }
.privacy-updated {
  font-size: 0.85rem; color: var(--text-gray);
  background: var(--off-white);
  border-left: 4px solid var(--yellow);
  border-radius: 6px; padding: 12px 16px; margin-bottom: 40px;
}
.privacy-content h2 {
  font-size: 1.45rem; color: var(--navy-dark);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
}
.privacy-content h2:first-of-type { margin-top: 0; }
.privacy-content p { color: var(--text-gray); margin-bottom: 14px; }
.privacy-content ul {
  list-style: disc; padding-left: 24px; margin-bottom: 14px;
}
.privacy-content ul li { color: var(--text-gray); margin-bottom: 6px; line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.65); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 48px; padding-bottom: 56px;
}
.footer-brand-logo { height: 52px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--white); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.55); }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact-row {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem;
}
.footer-contact-row i { color: var(--yellow); margin-top: 3px; flex-shrink: 0; }
.footer-contact-row a { color: rgba(255,255,255,0.55); }
.footer-contact-row a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.84rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: var(--yellow); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--yellow);
  padding: 56px 0;
  text-align: center;
}
.cta-strip h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy-dark); margin-bottom: 10px; }
.cta-strip p  { color: rgba(15,21,35,0.75); margin-bottom: 28px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid      { grid-template-columns: 1fr; gap: 40px; }
  .values-grid     { grid-template-columns: repeat(2, 1fr); }
  .contact-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 20px 24px 36px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 4px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 0.98rem; border-radius: 8px; }
  .hamburger { display: flex; }

  .hero h1       { font-size: 2.4rem; }
  .hero-buttons  { flex-direction: column; align-items: center; }
  .hero-stats    { gap: 28px; }
  .hero-stat .number { font-size: 2rem; }

  .services-grid         { grid-template-columns: 1fr 1fr; }
  .services-detailed-grid { grid-template-columns: 1fr; }
  .why-us-grid           { grid-template-columns: 1fr 1fr; }
  .values-grid           { grid-template-columns: 1fr 1fr; }
  .form-row              { grid-template-columns: 1fr; }
  .footer-grid           { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom         { flex-direction: column; align-items: center; text-align: center; }
  .contact-form-box      { padding: 28px; }
  .section-padding       { padding: 64px 0; }
  .support-contact-row   { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .services-grid  { grid-template-columns: 1fr; }
  .why-us-grid    { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr; }
  .hero h1        { font-size: 2rem; }
}
