/* ═══════════════════════════════════════════════════════════════
   FOOTWORKS CUSTOM WHEELS — SHARED STYLESHEET
   footworkscustomwheels.net
═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:    #0a0a0a;
  --dark:     #111111;
  --dark2:    #1c1c1c;
  --yellow:   #FFD400;
  --red:      #d42020;
  --white:    #ffffff;
  --gray:     #888888;
  --lightgray:#f4f4f4;
  --border:   #2c2c2c;
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Saira', sans-serif;
  background: var(--white);
  color: #222;
  font-size: 15px;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ─── UTILITIES ─────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.text-yellow { color: var(--yellow); }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center;
  padding: 14px 28px;
  font-family: 'Saira', sans-serif;
  font-size: .82rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  cursor: pointer; border: none;
  transition: background .2s, color .2s, transform .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: #ffe033; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-dark { background: var(--dark2); color: var(--white); border: 1px solid var(--border); }

/* ─── SECTION HEADER ────────────────────────────────────── */
.sec-header { text-align: center; margin-bottom: 48px; }
.sec-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; text-transform: uppercase; letter-spacing: .04em; line-height: 1.15;
}
.sec-header p { color: var(--gray); margin-top: 10px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ─── MAIN HEADER ───────────────────────────────────────── */
.main-header {
  background: var(--black);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.main-header .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; max-width: 1280px; margin: 0 auto;
}
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a {
  color: #ccc; font-size: .82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 22px 16px; display: block;
  transition: color .2s; position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--yellow); }
.main-nav a.active::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px; background: var(--yellow);
}
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions a { color: #ccc; font-size: 1.1rem; transition: color .2s; }
.header-actions a:hover { color: var(--yellow); }
.cart-wrap { position: relative; }
.cart-badge {
  position: absolute; top: -6px; right: -8px;
  background: var(--red); color: var(--white);
  font-size: .55rem; font-weight: 700; border-radius: 50%;
  width: 16px; height: 16px; display: flex; align-items: center; justify-content: center;
}

/* ─── BREADCRUMB ────────────────────────────────────────── */
.breadcrumb { background: #0d0d0d; border-bottom: 1px solid #1a1a1a; padding: 10px 0; }
.breadcrumb .inner {
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 8px;
  font-size: .72rem; color: #555; text-transform: uppercase; letter-spacing: .08em;
}
.breadcrumb a { color: #555; transition: color .2s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .sep { color: #2c2c2c; }
.breadcrumb .current { color: var(--yellow); }

/* ─── FOOTER ────────────────────────────────────────────── */
.main-footer { background: var(--black); color: #888; padding: 60px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
.footer-col h4 {
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  color: var(--white); margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #666; font-size: .82rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-col p { font-size: .82rem; line-height: 1.7; color: #555; }
.footer-logo { height: 48px; width: auto; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px; background: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  color: #666; font-size: .85rem; transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--yellow); color: var(--black); }
.footer-bottom {
  border-top: 1px solid #1a1a1a; padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: .72rem; color: #444;
}
.footer-bottom .legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom .legal-links a { color: #444; transition: color .2s; }
.footer-bottom .legal-links a:hover { color: var(--yellow); }
.footer-bottom .disclaimer { font-size: .65rem; color: #333; max-width: 500px; }

/* ─── HAMBURGER BUTTON ──────────────────────────────────── */
.hamburger-btn {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px 4px; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.hamburger-btn span {
  display: block; width: 24px; height: 2px; background: var(--white);
  transition: transform .3s, opacity .3s, width .3s; transform-origin: center;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV DRAWER ─────────────────────────────────── */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.7); z-index: 200; backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }
.mobile-nav-drawer {
  position: fixed; top: 0; right: 0;
  width: min(320px, 88vw); height: 100dvh;
  background: #0d0d0d; z-index: 201;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-nav-drawer.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid #222;
}
.mobile-nav-back {
  display: flex; align-items: center; gap: 8px;
  background: none; border: none; color: var(--yellow);
  font-family: 'Saira', sans-serif; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; cursor: pointer; padding: 6px 4px;
}
.mobile-nav-logo { height: 42px; width: auto; }
.mobile-nav-links { flex: 1; padding: 16px 0; }
.mobile-nav-links a {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px; color: #ddd;
  font-family: 'Saira', sans-serif; font-size: .95rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  border-bottom: 1px solid #1a1a1a; transition: color .2s, background .2s;
}
.mobile-nav-links a:hover { color: var(--yellow); background: #151515; }
.mobile-nav-links a i { color: var(--yellow); width: 18px; text-align: center; }
.mobile-nav-cta { padding: 20px 24px; border-top: 1px solid #222; }
.mobile-nav-cta a {
  display: block; text-align: center; padding: 14px;
  background: var(--yellow); color: var(--black);
  font-family: 'Saira', sans-serif; font-size: .85rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
}
.mobile-nav-phone { padding: 12px 24px 0; color: var(--yellow); font-size: .82rem; font-weight: 700; text-align: center; letter-spacing: .05em; }

/* ─── CART DRAWER ───────────────────────────────────────── */
.cart-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.65); z-index: 300; backdrop-filter: blur(2px);
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0;
  width: min(400px, 100vw); height: 100dvh;
  background: #0d0d0d; z-index: 301;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; overflow: hidden;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid #222; flex-shrink: 0;
}
.cart-drawer-title { font-size: .9rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--white); }
.cart-drawer-title span { color: var(--yellow); margin-left: 6px; }
.cart-close-btn {
  display: flex; align-items: center; gap: 8px;
  background: none; border: none; color: var(--yellow);
  font-family: 'Saira', sans-serif; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; cursor: pointer; padding: 6px 4px;
}
.cart-items { flex: 1; overflow-y: auto; padding: 16px 20px; }
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-thumb { background: #333; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 200px; gap: 12px; color: #555; }
.cart-empty i { font-size: 2.5rem; color: #333; }
.cart-empty p { font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; }
.cart-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid #1e1e1e; }
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 72px; height: 72px; object-fit: contain; background: #151515; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-brand { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--yellow); margin-bottom: 2px; }
.cart-item-model { font-size: .88rem; font-weight: 700; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-finish { font-size: .68rem; color: #777; margin-top: 2px; }
.cart-item-price { font-size: .78rem; font-weight: 700; color: var(--yellow); margin-top: 6px; }
.cart-item-vehicle { font-size: .65rem; color: #555; margin-top: 3px; font-style: italic; }
.cart-item-remove { background: none; border: none; color: #444; font-size: .85rem; cursor: pointer; padding: 4px; transition: color .2s; flex-shrink: 0; }
.cart-item-remove:hover { color: var(--red); }
.cart-footer { padding: 20px; border-top: 1px solid #222; flex-shrink: 0; }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-total-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #888; }
.cart-total-val { font-size: 1.1rem; font-weight: 800; color: var(--white); }
.cart-note { font-size: .68rem; color: #555; margin-bottom: 14px; line-height: 1.5; }
.cart-clear-btn {
  background: none; border: 1px solid #2c2c2c; color: #666;
  font-family: 'Saira', sans-serif; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 8px 14px; cursor: pointer; transition: color .2s, border-color .2s;
  width: 100%; margin-top: 10px;
}
.cart-clear-btn:hover { color: var(--red); border-color: var(--red); }

/* ─── GDPR CONSENT BANNER ──────────────────────────────── */
.gdpr-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: #0d0d0d; border-top: 2px solid var(--yellow);
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.6);
}
.gdpr-banner.visible { transform: translateY(0); }
.gdpr-text { flex: 1; min-width: 200px; font-size: .78rem; color: #aaa; line-height: 1.6; }
.gdpr-text strong { color: var(--white); }
.gdpr-text a { color: var(--yellow); }
.gdpr-text a:hover { text-decoration: underline; }
.gdpr-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.gdpr-accept {
  padding: 10px 22px; background: var(--yellow); color: var(--black);
  border: none; cursor: pointer; font-family: 'Saira', sans-serif;
  font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  transition: background .2s;
}
.gdpr-accept:hover { background: #ffe033; }
.gdpr-decline {
  padding: 10px 22px; background: transparent; color: #666;
  border: 1px solid #333; cursor: pointer; font-family: 'Saira', sans-serif;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  transition: color .2s, border-color .2s;
}
.gdpr-decline:hover { color: #aaa; border-color: #555; }
.gdpr-manage { padding: 10px 16px; background: transparent; color: #444; border: none; cursor: pointer; font-family: 'Saira', sans-serif; font-size: .7rem; text-decoration: underline; }
.gdpr-manage:hover { color: var(--yellow); }

/* ─── SERVICE PAGE HERO ─────────────────────────────────── */
.service-hero {
  background: var(--black); min-height: 380px;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.service-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; filter: brightness(.3);
}
.service-hero-track {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 12px, transparent 12px, transparent 22px);
  opacity: .7;
}
.service-hero-content {
  position: relative; z-index: 2;
  padding: 60px 20px; max-width: 1280px; margin: 0 auto; width: 100%;
}
.service-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em;
  color: var(--yellow); margin-bottom: 16px;
}
.service-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: .03em; color: var(--white); line-height: 1.1; margin-bottom: 16px;
}
.service-hero h1 em { color: var(--yellow); font-style: normal; }
.service-hero .hero-sub { color: #bbb; font-size: 1rem; max-width: 520px; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── SERVICE OVERVIEW ──────────────────────────────────── */
.service-overview { padding: 72px 0; background: var(--white); }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.overview-body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: .03em; margin-bottom: 20px; line-height: 1.2;
}
.overview-body p { color: #555; margin-bottom: 16px; line-height: 1.85; font-size: .95rem; }
.overview-body ul { margin: 16px 0; padding-left: 0; }
.overview-body ul li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0; color: #555; font-size: .9rem;
}
.overview-body ul li i { color: var(--yellow); margin-top: 3px; flex-shrink: 0; }

/* QUICK FACTS CARD */
.quick-facts { background: var(--dark); padding: 32px; }
.qf-title {
  font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em;
  color: var(--yellow); margin-bottom: 20px;
}
.fact-row {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid #1e1e1e;
}
.fact-row:last-child { border-bottom: none; }
.fact-icon {
  width: 38px; height: 38px; background: var(--yellow);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fact-icon i { color: var(--black); font-size: .85rem; }
.fact-label { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #555; }
.fact-value { font-size: .85rem; font-weight: 700; color: var(--white); }

/* PHOTO PLACEHOLDER */
.photo-slot {
  width: 100%; aspect-ratio: 4/3;
  background: #1a1a1a; border: 2px dashed #2c2c2c;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: #3a3a3a; font-size: .7rem;
  text-transform: uppercase; letter-spacing: .1em; overflow: hidden; position: relative;
}
.photo-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.photo-slot .placeholder-label {
  position: relative; z-index: 1; text-align: center;
  background: rgba(0,0,0,.7); padding: 8px 14px;
}
.photo-slot .placeholder-label i { font-size: 1.6rem; color: #333; display: block; margin-bottom: 6px; }

/* ─── HOW IT WORKS ──────────────────────────────────────── */
.hiw-section { padding: 72px 0; background: var(--lightgray); }
.hiw-section .sec-header h2 { color: var(--black); }
.steps-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0; counter-reset: step;
}
.step {
  padding: 36px 28px;
  border-right: 1px solid #ddd; position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  font-size: 3.5rem; font-weight: 900; color: #e8e8e8;
  line-height: 1; margin-bottom: 14px;
}
.step-icon-box {
  width: 44px; height: 44px; background: var(--yellow);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.step-icon-box i { color: var(--black); font-size: 1.1rem; }
.step h3 {
  font-size: .85rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 8px; color: var(--black);
}
.step p { font-size: .82rem; color: #666; line-height: 1.7; }

/* ─── SERVICE GALLERY ───────────────────────────────────── */
.svc-gallery { padding: 72px 0; background: var(--dark); }
.svc-gallery .sec-header h2 { color: var(--white); }
.svc-gallery .sec-header p { color: #666; }
.svc-gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 8px; margin-bottom: 32px;
}
.svc-gallery-item { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; background: #0d0d0d; }
.svc-gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.75); transition: transform .4s, filter .3s; }
.svc-gallery-item:hover img { transform: scale(1.06); filter: brightness(1); }
.svc-gallery-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 14px; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--white);
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  opacity: 0; transition: opacity .3s;
}
.svc-gallery-item:hover .svc-gallery-cap { opacity: 1; }

/* ─── PRICING SECTION ───────────────────────────────────── */
.pricing-section { padding: 72px 0; background: var(--dark2); }
.pricing-section .sec-header h2 { color: var(--white); }
.pricing-section .sec-header p { color: #666; }
.pricing-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2px;
}
.pricing-card {
  background: #1a1a1a; padding: 28px 24px; text-align: center;
  border-bottom: 3px solid transparent; transition: border-color .2s, transform .2s;
}
.pricing-card:hover { border-bottom-color: var(--yellow); transform: translateY(-3px); }
.p-range { font-size: 1.6rem; font-weight: 900; color: var(--yellow); margin-bottom: 6px; }
.p-label { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #888; margin-bottom: 12px; }
.p-desc { font-size: .78rem; color: #555; line-height: 1.6; }

/* ─── APPOINTMENT SECTION ───────────────────────────────── */
.appointment-section { padding: 72px 0; background: var(--white); }
.appt-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.appt-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: .03em; margin-bottom: 16px; line-height: 1.2;
}
.appt-info p { color: #555; margin-bottom: 20px; font-size: .92rem; line-height: 1.85; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.contact-row .cr-icon {
  width: 40px; height: 40px; background: var(--lightgray);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-row .cr-icon i { font-size: .9rem; color: var(--black); }
.contact-row .cr-label { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #888; }
.contact-row .cr-val { font-size: .9rem; font-weight: 700; color: #222; }
.appt-options {
  margin-top: 24px; padding: 20px;
  background: var(--lightgray); border-left: 3px solid var(--yellow);
}
.appt-options h4 { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #333; margin-bottom: 10px; }
.appt-options ul li { font-size: .82rem; color: #555; padding: 4px 0; display: flex; gap: 8px; }
.appt-options ul li i { color: var(--yellow); margin-top: 3px; }

/* BOOKING FORM */
.booking-form { background: var(--dark); padding: 36px; }
.booking-form h3 {
  font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  color: var(--white); margin-bottom: 24px; border-bottom: 1px solid #222; padding-bottom: 14px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block; font-size: .62rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; color: #666; margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; background: #1a1a1a; border: 1px solid #2c2c2c;
  color: var(--white); padding: 11px 14px;
  font-family: 'Saira', sans-serif; font-size: .82rem;
  outline: none; transition: border-color .2s; appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23FFD400'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--yellow); }
.form-field textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--yellow); color: var(--black); border: none; cursor: pointer;
  font-family: 'Saira', sans-serif; font-size: .82rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; margin-top: 8px;
  transition: background .2s, transform .15s;
}
.form-submit:hover { background: #ffe033; transform: translateY(-1px); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-success {
  display: none; text-align: center; padding: 28px;
  color: #4caf50; font-size: .9rem;
  background: #0a1a0a; border: 1px solid #1a3a1a;
}
.form-success i { font-size: 2rem; display: block; margin-bottom: 10px; }
.form-err { color: var(--red); font-size: .72rem; margin-top: 10px; display: none; }

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-section { padding: 72px 0; background: var(--white); }
.faq-section .sec-header h2 { color: var(--black); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; background: none; border: none; text-align: left; cursor: pointer;
  font-family: 'Saira', sans-serif; font-size: .9rem; font-weight: 700; color: #222; gap: 16px;
}
.faq-q i { color: var(--yellow); font-size: .85rem; transition: transform .3s; flex-shrink: 0; }
.faq-q.open i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 0 18px; font-size: .85rem; color: #666; line-height: 1.8; }

/* ─── CTA BANNER ────────────────────────────────────────── */
.cta-band { padding: 72px 0; background: var(--yellow); text-align: center; }
.cta-band h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: .04em; color: var(--black); margin-bottom: 14px;
}
.cta-band p { color: rgba(0,0,0,.6); margin-bottom: 28px; font-size: .95rem; }
.cta-band .btn-dark { background: var(--black); color: var(--yellow); border: none; }
.cta-band .btn-dark:hover { background: #1a1a1a; }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .overview-grid { grid-template-columns: 1fr; }
  .appt-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .main-nav { display: none; }
  .hamburger-btn { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row .step { border-right: none; border-bottom: 1px solid #ddd; }
  .steps-row .step:last-child { border-bottom: none; }
  .pricing-row { grid-template-columns: 1fr 1fr; }
  .service-hero h1 { font-size: 2rem; }
  .gdpr-banner { flex-direction: column; }
}
