/* ============================================================
   KUMIE'S MOBILE AUTO — styles.css
   Mobile-first. Blue / White / Dark.
   ============================================================ */

/* ── 1. VARIABLES & RESET ── */
:root {
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --blue-hover:  #1E40AF;
  --blue-light:  #EFF6FF;
  --dark:        #0F172A;
  --dark-2:      #1E293B;
  --dark-3:      #334155;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-700:    #334155;
  --text:        #1E293B;
  --text-muted:  #64748B;
  --star:        #F59E0B;
  --success:     #10B981;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow:      0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.14);
  --nav-h:       72px;
  --transition:  all 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

/* ── 2. TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 6vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: 0; }
p  { color: var(--text-muted); line-height: 1.7; }
a:hover { opacity: 0.85; }

/* ── 3. LAYOUT ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section {
  padding: 72px 0;
}
@media (min-width: 768px) { .section { padding: 96px 0; } }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.section__label--light { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.12); }
.section__desc { margin-top: 16px; font-size: 1.05rem; }
.section__header--light h2 { color: var(--white); }
.section__desc--light { color: rgba(255,255,255,0.75); }
.text-light { color: var(--white) !important; }

/* ── 4. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}
.btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); opacity: 1; }
.btn--primary:active { background: var(--blue-hover); transform: scale(0.98); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); opacity: 1; }

.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-200);
}
.btn--outline-dark:hover { border-color: var(--dark); opacity: 1; }

.btn--call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  transition: var(--transition);
}
.btn--call:hover { background: var(--blue-dark); opacity: 1; }

.btn--sm  { padding: 9px 18px; font-size: 0.875rem; }
.btn--lg  { padding: 16px 32px; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ── 5. NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 16px;
}

.navbar__logo {
  flex: 1;
  min-width: 0;
}
.navbar__logo img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.navbar__menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark-2);
  padding: 24px 20px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
}
.navbar__menu.open { display: block; }

.navbar__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.navbar__links a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.navbar__links a:hover { color: var(--white); opacity: 1; }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.navbar__hamburger:hover { background: rgba(255,255,255,0.14); }
.navbar__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; }
.navbar__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hide "Get Quote" btn on very small screens */
@media (max-width: 380px) { .navbar__actions .btn--primary { display: none; } }

/* Hide call button text on mobile — icon only, keeps logo room */
@media (max-width: 899px) { .btn--call span { display: none; } }

@media (min-width: 900px) {
  .navbar__menu { display: flex !important; position: static; background: none; padding: 0; border: none; flex: 1; justify-content: center; }
  .navbar__links { flex-direction: row; gap: 4px; }
  .navbar__links a { color: rgba(255,255,255,0.75); font-size: 0.9rem; padding: 8px 12px; border: none; }
  .navbar__links a:hover { color: var(--white); }
  .navbar__hamburger { display: none; }
}

/* ── 6. HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 20, 40, 0.88) 0%,
    rgba(10, 20, 40, 0.75) 50%,
    rgba(10, 30, 60, 0.6) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-bottom: 64px;
  max-width: 780px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero__badge .stars { color: var(--star); letter-spacing: 1px; }

.hero__title {
  color: var(--white);
  font-size: clamp(2.2rem, 6.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__title--accent { color: var(--blue); display: block; }

.hero__subtitle {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
}
.hero__trust-item svg { color: var(--blue); flex-shrink: 0; }

/* ── 7. TRUST BAR ── */
.trust-bar {
  background: var(--dark-2);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-bar__item svg { color: var(--blue); flex-shrink: 0; }
.trust-bar__item strong { color: var(--white); }
.trust-bar__stars { color: var(--star); letter-spacing: 2px; font-size: 1rem; }
.trust-bar__divider { width: 1px; height: 24px; background: rgba(255,255,255,0.12); display: none; }
@media (min-width: 640px) { .trust-bar__divider { display: block; } }

/* ── 8. SERVICES ── */
.services { background: var(--white); }

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 500px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services__grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.07), var(--shadow);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card__icon--blue { background: var(--blue-light); color: var(--blue); }
.service-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--dark); }
.service-card p  { font-size: 0.875rem; line-height: 1.6; }

.services__note {
  text-align: center;
  margin-top: 40px;
  padding: 16px 24px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.services__note a { color: var(--blue); font-weight: 600; }
.services__note a:hover { text-decoration: underline; opacity: 1; }

/* ── 9. HOW IT WORKS ── */
.how-it-works { background: var(--gray-50); }

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto 64px;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step__number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--blue);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.step__content { padding: 8px 0 32px; }
.step__content h3 { color: var(--dark); margin-bottom: 8px; }
.step__content a { color: var(--blue); font-weight: 600; }
.step__content a:hover { text-decoration: underline; opacity: 1; }
.step__connector {
  width: 2px;
  height: 32px;
  background: var(--gray-200);
  margin-left: 25px;
  flex-shrink: 0;
}

.how-it-works__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.how-it-works__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
@media (min-width: 900px) {
  .how-it-works__photo {
    max-width: 580px;
    height: auto;
    aspect-ratio: 3 / 4;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── 10. WHY CHOOSE US ── */
.why-us { background: var(--dark); }

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 500px) { .why-us__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .why-us__grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(37,99,235,0.5);
  transform: translateY(-2px);
}
.why-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(37,99,235,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.why-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.why-card p  { color: rgba(255,255,255,0.6); font-size: 0.875rem; }

/* ── 11. PHOTOS ── */
.photos { background: var(--white); }
.photos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
@media (min-width: 768px) {
  .photos__grid {
    grid-template-columns: 1fr 1fr 2fr;
    grid-template-rows: auto;
  }
}
.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
  margin: 0;
}
.photo-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-card:hover img { transform: scale(1.03); }

.photo-card--wide {
  grid-column: 1 / -1;
}
@media (min-width: 768px) {
  .photo-card--wide { grid-column: auto; }
  .photo-card img { height: 360px; }
}

/* ── 12. REVIEWS ── */
.reviews { background: var(--gray-50); }

.reviews__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.reviews__stars {
  color: var(--star);
  font-size: 1.5rem;
  letter-spacing: 3px;
}
.reviews__meta { color: var(--text-muted); font-size: 0.95rem; }
.reviews__meta strong { color: var(--dark); }

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 640px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.review-card__stars { color: var(--star); font-size: 1.1rem; letter-spacing: 2px; }
.review-card blockquote p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
}
.review-card footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card footer strong { font-size: 0.875rem; color: var(--dark); }
.review-card footer span  { font-size: 0.8rem; color: var(--gray-500); }

.reviews__cta {
  text-align: center;
  margin-top: 40px;
}
.reviews__cta .btn { gap: 8px; }

/* ── 13. COVERAGE ── */
.coverage { background: var(--white); }

.coverage__inner { max-width: 1000px; margin: 0 auto; }
.coverage__text > p { max-width: 600px; margin-bottom: 40px; font-size: 1.05rem; }
.coverage__text > p + p { margin-top: 8px; }

.coverage__areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
@media (min-width: 640px)  { .coverage__areas { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .coverage__areas { grid-template-columns: repeat(3, 1fr); } }

.coverage__area-group h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.coverage__area-group ul li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 1px solid var(--gray-100);
}
.coverage__not-sure {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

/* ── 14. QUOTE FORM ── */
.quote { background: var(--dark-2); }

.quote__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) { .quote__inner { grid-template-columns: 1fr 1.4fr; } }

.quote__text > p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 1.05rem; }

.quote__contact-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
}

.quote__form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) { .quote__form-wrap { padding: 40px; } }

.quote__form { display: flex; flex-direction: column; gap: 18px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 500px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}
.form-group label span { color: var(--blue); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.form-group input.error,
.form-group select.error { border-color: #EF4444; }
.form-error { font-size: 0.8rem; color: #EF4444; min-height: 18px; }

.form__privacy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500) !important;
  margin-top: -4px;
}

.form-success {
  text-align: center;
  padding: 40px 24px;
}
.form-success svg { color: var(--success); margin: 0 auto 16px; }
.form-success h3 { color: var(--dark); margin-bottom: 8px; }
.form-success p { font-size: 0.95rem; }
.form-success a { color: var(--blue); font-weight: 600; }

/* ── 15. FAQ ── */
.faq { background: var(--white); }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }

.faq__item {
  border-bottom: 1.5px solid var(--gray-200);
}
.faq__item:first-child { border-top: 1.5px solid var(--gray-200); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  gap: 16px;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--blue); }
.faq__question[aria-expanded="true"] { color: var(--blue); }

.faq__chevron {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform 0.25s ease;
}
.faq__question[aria-expanded="true"] .faq__chevron { transform: rotate(180deg); color: var(--blue); }

.faq__answer {
  padding-bottom: 20px;
}
.faq__answer p { font-size: 0.95rem; line-height: 1.7; }
.faq__answer a { color: var(--blue); font-weight: 600; }
.faq__answer a:hover { text-decoration: underline; opacity: 1; }

/* ── 16. FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 640px)  { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer__inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; } }

.footer__brand img { height: 44px; width: auto; margin-bottom: 16px; }
.footer__brand p   { font-size: 0.9rem; max-width: 280px; margin-bottom: 16px; }
.footer__stars {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}
.footer__stars span { color: var(--star); letter-spacing: 1px; }

.footer__links h4  { color: var(--white); margin-bottom: 16px; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.07em; }
.footer__links ul  { display: flex; flex-direction: column; gap: 10px; }
.footer__links a   { font-size: 0.875rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--white); opacity: 1; }

.footer__contact h4 { color: var(--white); margin-bottom: 16px; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.07em; }
.footer__contact address { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.footer__contact address p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.footer__contact address svg { color: var(--blue); flex-shrink: 0; }
.footer__contact address a { transition: color 0.2s; }
.footer__contact address a:hover { color: var(--white); opacity: 1; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ── 17. FLOATING CALL BUTTON ── */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(37,99,235,0.45);
  transition: var(--transition);
  text-decoration: none;
}
.float-call:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,99,235,0.5); opacity: 1; }
.float-call:active { transform: scale(0.97); }

/* Hide float call on desktop — nav phone btn handles it */
@media (min-width: 900px) { .float-call { display: none; } }

/* ── 18. ANIMATIONS & UTILITIES ── */
.stars { color: var(--star); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeUp 0.5s ease forwards;
}
.animate-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-in-delay-3 { animation-delay: 0.3s; opacity: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
