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

/* ===================== VARIABLES ===================== */
:root {
  --yellow: #d6a74e;
  --yellow-light: #ebbd57;
  --yellow-dark: #ad7b3d;
  --gold-gradient: linear-gradient(135deg, #ebbd57 0%, #ad7b3d 100%);
  --black: #0d0d0d;
  --black2: #141414;
  --black3: #1a1a1a;
  --black4: #222222;
  --gray: #888;
  --gray2: #555;
  --white: #f9f4ee;
  --radius: 6px;
  --transition: 0.3s ease;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* ===================== NAVBAR ===================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: transparent;
}
.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.nav-logo-badge { height: 116px; width: auto; flex-shrink: 0; margin: 10px 0 -30px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.3px;
  color: rgba(249,244,238,0.75);
  transition: color var(--transition);
  position: relative;
}
.nav-links a.active { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--yellow);
  transform: scaleX(0); transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-badge {
  background: rgba(214,167,78,0.12);
  border: 1px solid rgba(214,167,78,0.3);
  color: var(--yellow); font-size: 10px; font-weight: 700;
  padding: 5px 12px; border-radius: 50px; letter-spacing: 1px; text-transform: uppercase;
}
.nav-cta {
  background: var(--gold-gradient); color: #fff;
  padding: 10px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.3px;
  display: inline-flex; align-items: center; gap: 7px;
  transition: filter var(--transition), transform var(--transition);
}
.nav-cta svg { color: #fff; }
.nav-cta:hover { filter: brightness(0.92); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ===================== HERO ===================== */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 88% 15%, rgba(214,167,78,0.16), transparent 60%),
    linear-gradient(100deg, rgba(6,6,6,0.93) 0%, rgba(6,6,6,0.68) 40%, rgba(6,6,6,0.55) 62%, rgba(6,6,6,0.8) 100%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: 1280px; margin: 0 auto;
  padding: 120px 48px 80px;
  display: grid; grid-template-columns: 1fr 476px; gap: 64px; align-items: center;
}

.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; display: inline-block; width: 26px; height: 2px; background: var(--yellow);
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 7.5vw, 98px);
  line-height: 0.9; letter-spacing: 2px;
  margin-bottom: 26px;
}
.hero-h1 .line-yellow {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: clamp(52px, 6.8vw, 84px);
  color: var(--yellow); display: block;
  letter-spacing: 0; line-height: 1.05; text-transform: none;
}
.hero-desc {
  font-size: 15px; color: rgba(249,244,238,0.55);
  line-height: 1.8; max-width: 400px; margin-bottom: 46px;
}
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.btn-emergency {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(249,244,238,1); background: rgba(249,244,238,1); color: #0d0d0d;
  padding: 12px 22px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-emergency:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.3); }
.btn-emergency-plus {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold-gradient); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700; line-height: 1; flex-shrink: 0;
}
.hero-response { display: flex; align-items: center; gap: 10px; }
.response-divider { width: 1px; height: 38px; background: rgba(249,244,238,0.14); }
.response-num { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--white); line-height: 1; }
.response-unit { font-size: 20px; font-weight: 700; font-family: 'Barlow', sans-serif; }
.response-label { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(249,244,238,0.4); line-height: 1.6; }

/* Shared buttons */
.btn-primary {
  background: var(--yellow); color: #000;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background var(--transition), transform var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid #444; color: #fff;
  padding: 13px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: border-color var(--transition), color var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* Booking Card */
.hero-card {
  width: 476px; min-height: 540px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(31px); -webkit-backdrop-filter: blur(31px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px; padding: 26px 22px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3px; }
.card-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(149,142,134,1); }
.card-live { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: 1px; color: #4ade80; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: pulse-green 1.6s ease infinite; }
@keyframes pulse-green { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(1.35); } }
.card-title { font-family: 'Barlow', sans-serif; font-size: 22px; font-weight: 700; color: rgba(255,255,255,1); margin-bottom: 18px; }
.field-group { margin-bottom: 10px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 10px; }
.field-label { font-size: 8.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(149,142,134,1); display: block; margin-bottom: 4px; }
.field-input, .field-select {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px; color: rgba(255,255,255,1);
  font-family: 'Barlow', sans-serif; font-size: 13px; padding: 14px 18px;
  transition: border-color var(--transition), background var(--transition);
  appearance: none; -webkit-appearance: none;
}
.field-input:focus, .field-select:focus { outline: none; border-color: rgba(214,167,78,0.6); background: rgba(255,255,255,0.09); }
.field-input::placeholder { color: rgba(249,244,238,0.4); }
.field-select option { background: #111; color: rgba(255,255,255,1); }
.card-submit {
  width: 100%; background: var(--gold-gradient); color: #fff;
  border: none; border-radius: 50px; padding: 13px;
  font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: filter var(--transition), transform var(--transition);
  margin-top: 6px;
}
.card-submit:hover { filter: brightness(0.92); transform: translateY(-1px); }
.card-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.card-form-msg { display: none; font-size: 12px; font-weight: 600; text-align: center; margin-top: 10px; padding: 8px; border-radius: 6px; }
.card-form-msg.show { display: block; }
.card-form-msg.success { background: rgba(74,222,128,0.12); color: #4ade80; }
.card-form-msg.error { background: rgba(248,113,113,0.12); color: #f87171; }
.card-footer { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 11px; font-size: 10px; color: rgba(149,142,134,1); font-weight: 700; letter-spacing: 0.5px; }
.card-footer-dot { color: var(--yellow); }
.card-footer-live { color: #4ade80; display: flex; align-items: center; gap: 4px; }
.card-footer-live .live-dot { width: 5px; height: 5px; }

/* ===================== SECTIONS SHARED ===================== */
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; }
.section-h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px, 4vw, 54px); line-height: 1.0; letter-spacing: 1px; margin-bottom: 20px; }
.section-h2 em { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; color: var(--yellow); }
.section-body { font-size: 15px; color: #aaa; line-height: 1.8; margin-bottom: 28px; }

/* ===================== ABOUT ===================== */
#about { background: var(--black2); padding: 100px 40px; position: relative; overflow: hidden; }
.about-bg {
  position: absolute; left: -60px; bottom: 1550px; width: 520px; height: 376px;
  background: url('../images/about-tyres-bg.png') center / contain no-repeat;
  opacity: 0.22; pointer-events: none; z-index: 0;
}
.about-header { display: flex; justify-content: space-between; align-items: center; gap: 60px; margin-bottom: 40px; position: relative; z-index: 1; }
.about-lead { font-size: 15px; color: rgba(249,244,238,0.55); line-height: 1.8; max-width: 340px; text-align: right; flex-shrink: 0; }
.about-video-wrap { position: relative; z-index: 1; border-radius: 10px; overflow: hidden; aspect-ratio: 21/9; background: #111; max-width: 1200px; margin: 0 auto; }
.about-video-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 64px; height: 64px; background: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform var(--transition), filter var(--transition);
  box-shadow: 0 8px 26px rgba(0,0,0,0.5);
}
.play-btn:hover { transform: translate(-50%,-50%) scale(1.1); filter: brightness(0.92); }
.play-btn svg { margin-left: 4px; fill: var(--yellow-dark); }

.features-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; position: relative; z-index: 1; }
.feature-item { background: var(--black3); border: 1px solid #1e1e1e; border-radius: 12px; padding: 26px 16px; text-align: center; }
.feature-icon { width: 44px; height: 44px; margin: 0 auto 14px; background: rgba(214,167,78,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.feature-title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.feature-desc { font-size: 12px; color: #666; line-height: 1.5; }

/* ===================== SERVICES ===================== */
#services { background: var(--black); padding: 100px 40px; }
.services-header { display: flex; justify-content: space-between; align-items: center; gap: 60px; margin-bottom: 40px; }
.services-lead { font-size: 15px; color: rgba(249,244,238,0.55); line-height: 1.8; max-width: 340px; text-align: right; flex-shrink: 0; }
.services-grid { display: flex; flex-direction: column; gap: 12px; }
.services-row { display: grid; gap: 12px; }
.services-row-1 { grid-template-columns: 1.7fr 1fr; }
.services-row-1 .service-card { height: clamp(220px, 24vw, 320px); }
.services-row-2 { grid-template-columns: 1fr 1fr 1.7fr; }
.services-row-2 .service-card { height: clamp(200px, 21vw, 280px); }
.service-card { position: relative; overflow: hidden; border-radius: 10px; cursor: pointer; background: var(--black3); }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover img { transform: scale(1.05); }
.service-card-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--gold-gradient); color: #000;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 50px;
}
.service-card-arrow {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(249,244,238,0.12); backdrop-filter: blur(6px);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: background var(--transition), transform var(--transition);
}
.service-card:hover .service-card-arrow { background: var(--gold-gradient); color: #000; transform: scale(1.08); }
.service-card-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.88) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.service-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; color: var(--white); margin-bottom: 4px; }
.service-card-desc { font-size: 12.5px; color: rgba(249,244,238,0.6); line-height: 1.5; max-width: 90%; }

/* ===================== SOCIAL ===================== */
#social { background: var(--black2); padding: 100px 40px; }
.social-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 44px; }
.social-follow {
  font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: 1px; text-transform: uppercase;
  background: none; border: none; border-bottom: 1px solid rgba(249,244,238,0.4);
  padding: 0 0 6px; transition: color var(--transition), border-color var(--transition);
}
.social-follow:hover { color: var(--yellow); border-color: var(--yellow); }
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; height: 620px; }
.social-col { display: flex; flex-direction: column; gap: 14px; height: 100%; }
.social-col--tall .social-item { flex: 1; }
.social-item { border-radius: 10px; overflow: hidden; background: #111; position: relative; }
.social-item--sm { flex: 1; }
.social-item--lg { flex: 1.8; }
.social-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.social-item:hover img { transform: scale(1.06); }

/* ===================== STATS ===================== */
#stats { background: var(--black); padding: 100px 40px; }
.stats-header { text-align: center; margin-bottom: 70px; }
.script-accent { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; color: var(--yellow); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; margin-bottom: 40px; }
.stat-icon-ring {
  position: relative;
  width: 96px; height: 96px; margin: 0 auto 22px;
  border: 1.5px solid rgba(249,244,238,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.stat-icon-ring::before {
  content: ''; position: absolute; top: -3px; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50%; background: var(--yellow);
}
.stat-icon-circle {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--white); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
}
.stat-title { font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.stat-desc { font-size: 13.5px; color: rgba(249,244,238,0.6); line-height: 1.6; max-width: 230px; margin: 0 auto; }
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stats-pill {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01) 60%), #121212;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px; padding: 22px 16px; text-align: center;
}
.stats-pill-num { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--yellow); line-height: 1; margin-bottom: 8px; }
.stats-pill-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); }

/* ===================== REVIEWS ===================== */
#reviews { background: var(--black2); padding: 100px 40px; }
.reviews-header { margin-bottom: 50px; }
.reviews-header-inner { display: flex; align-items: flex-end; justify-content: space-between; }
.rating-badge { display: flex; align-items: center; gap: 12px; }
.rating-num { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; font-size: 48px; color: var(--white); line-height: 1; }
.rating-stars { color: var(--yellow); font-size: 14px; letter-spacing: 2px; }
.rating-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(249,244,238,0.5); margin-top: 5px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { background: var(--black3); border: 1px solid #1e1e1e; border-radius: 18px; padding: 30px 28px; transition: border-color var(--transition); }
.review-card:hover { border-color: #333; }
.review-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; }
.review-stars { color: var(--yellow); font-size: 14px; letter-spacing: 2px; }
.review-quote { font-family: Georgia, 'Times New Roman', serif; font-size: 38px; line-height: 0.5; color: rgba(249,244,238,0.2); }
.review-text { font-size: 14.5px; color: rgba(249,244,238,0.75); line-height: 1.75; margin-bottom: 26px; }
.review-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 18px; }
.review-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.review-location { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(249,244,238,0.4); }

/* ===================== FAQ ===================== */
#faq { background: var(--black); padding: 100px 40px; position: relative; overflow: hidden; }
.faq-bg {
  position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  background: url('../images/faq-tyres.png') right center / contain no-repeat;
  opacity: 0.1; pointer-events: none;
}
.faq-header { margin-bottom: 50px; position: relative; z-index: 1; }
.faq-list { display: flex; flex-direction: column; position: relative; z-index: 1; }
.faq-item { border-top: 1px solid rgba(255,255,255,0.08); padding: 26px 0; }
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-question { display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-size: 17px; font-weight: 700; color: var(--white); transition: color var(--transition); gap: 20px; }
.faq-question:hover { color: var(--yellow); }
.faq-icon { width: 36px; height: 36px; flex-shrink: 0; background: none; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--white); transition: transform var(--transition), background var(--transition), border-color var(--transition); }
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--gold-gradient); border-color: transparent; color: #000; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, margin 0.35s ease; font-size: 14px; color: rgba(249,244,238,0.55); line-height: 1.7; max-width: 620px; padding-right: 60px; }
.faq-item.active .faq-answer { max-height: 200px; margin-top: 14px; }

/* ===================== CTA + MAP ===================== */
#contact { background: var(--black); padding: 100px 40px; }
.cta-card { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.cta-bg { position: absolute; inset: 0; background: url('../images/cta-bg.jpg') center 35% / cover no-repeat; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(6,6,6,0.94) 0%, rgba(6,6,6,0.8) 42%, rgba(6,6,6,0.4) 100%); }
.cta-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center; padding: 64px 60px; }
.cta-h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4.5vw, 52px); line-height: 1.0; margin-bottom: 16px; color: var(--white); }
.cta-body { font-size: 14.5px; color: rgba(249,244,238,0.65); margin-bottom: 30px; line-height: 1.7; max-width: 380px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.cta-btns .btn-primary { border-radius: 50px; }
.cta-btns .btn-outline { border-radius: 50px; border-color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 1px; font-size: 12px; }
.cta-btns .btn-outline:hover { border-color: var(--yellow); }
.cta-meta { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.12); }
.cta-meta-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow); margin-bottom: 6px; }
.cta-meta-value { font-size: 13px; color: var(--white); }
.cta-map { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.cta-map iframe { width: 100%; height: 100%; border: none; }

/* ===================== FOOTER ===================== */
footer { position: relative; overflow: hidden; background: var(--black); border-top: 1px solid #1a1a1a; padding: 60px 40px 30px; }
.footer-bg { position: absolute; right: -60px; bottom: -40px; width: 380px; height: 380px; background: url('../images/footer-bg.png') center / contain no-repeat; opacity: 0.05; pointer-events: none; }
.footer-grid { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-logo { height: 78px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: #666; line-height: 1.7; margin: 0 0 20px; max-width: 240px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; background: #1c1c1c; color: rgba(249,244,238,0.7); display: flex; align-items: center; justify-content: center; transition: color var(--transition), background var(--transition); }
.social-btn:hover { color: #000; background: var(--gold-gradient); }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: #666; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--yellow); }
.footer-bottom { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid #1a1a1a; text-align: center; }
.footer-bottom p { font-size: 12px; color: #555; }
.footer-bottom a { color: var(--yellow); }

/* ===================== ANIMATIONS ===================== */
.fade-up {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform, opacity;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }
.fade-up.delay-6 { transition-delay: 0.6s; }

/* Hero Ken Burns (subtle) */
.hero-photo { animation: kenburns 30s ease-in-out infinite alternate; }
@keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.045); } }

/* Gold shine sweep on primary CTAs */
.btn-primary, .nav-cta, .card-submit, .btn-emergency {
  position: relative; overflow: hidden;
}
.btn-primary::after, .nav-cta::after, .card-submit::after, .btn-emergency::after {
  content: ''; position: absolute; top: 0; left: -75%; width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.btn-primary:hover::after, .nav-cta:hover::after, .card-submit:hover::after, .btn-emergency:hover::after { left: 130%; }

/* Tilt-ready cards */
.service-card, .review-card, .stats-pill, .stat-item, .feature-item {
  transition: transform 0.35s cubic-bezier(.16,.84,.44,1), box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform;
}
.review-card:hover, .stats-pill:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.35); }
.stat-item:hover .stat-icon-ring { border-color: var(--yellow); transform: scale(1.06); }
.stat-icon-ring { transition: transform 0.4s ease, border-color 0.4s ease; }
.feature-item:hover .feature-icon { background: var(--gold-gradient); transform: scale(1.08) rotate(-4deg); }
.feature-icon { transition: transform 0.35s ease, background 0.35s ease; }
.feature-item:hover .feature-icon svg { stroke: #000; }

/* Logo + nav polish */
.nav-logo-badge { transition: transform 0.35s ease, filter 0.35s ease; }
.nav-logo:hover .nav-logo-badge { transform: scale(1.06); filter: drop-shadow(0 0 14px rgba(214,167,78,0.45)); }

/* Social + service image zoom easing upgrade */
.service-card img, .social-item img { transition: transform 0.6s cubic-bezier(.16,.84,.44,1); }

/* Play button pulse ring */
.play-btn::before {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 1.5px solid rgba(214,167,78,0.5);
  animation: ring-pulse 2.2s ease-out infinite;
}
@keyframes ring-pulse { 0% { transform: scale(0.85); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }


/* ===================== VIDEO MODAL ===================== */
.video-modal { display: none; position: fixed; inset: 0; z-index: 2000; align-items: center; justify-content: center; padding: 30px; }
.video-modal.open { display: flex; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.88); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.video-modal-inner { position: relative; z-index: 1; width: 100%; max-width: 900px; aspect-ratio: 16/9; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.video-modal-inner video { width: 100%; height: 100%; display: block; }
.video-modal-close { position: absolute; top: -44px; right: 0; z-index: 2; background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; transition: color var(--transition); }
.video-modal-close:hover { color: var(--yellow); }

/* ===================== MOBILE MENU ===================== */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 999; background: var(--black); flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 2px; color: #fff; transition: color var(--transition); }
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu-close { position: absolute; top: 20px; right: 20px; font-size: 28px; color: #fff; cursor: pointer; background: none; border: none; transition: color var(--transition); }
.mobile-menu-close:hover { color: var(--yellow); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  #navbar { padding: 0 28px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 110px 28px 60px; }
  .hero-card { max-width: 500px; }
  .about-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .about-lead { text-align: left; max-width: 100%; }
  .about-video-wrap { aspect-ratio: 16/9; }
  .social-grid { height: 460px; }
  .cta-content { grid-template-columns: 1fr; padding: 50px 40px; }
  .cta-map { aspect-ratio: 16/9; }
  .features-row { grid-template-columns: repeat(3, 1fr); }
  .faq-bg { width: 75%; opacity: 0.07; }
  .faq-answer { max-width: 100%; padding-right: 46px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 768px) {
  #navbar { padding: 0 20px; height: 66px; }
  .nav-links, .nav-badge { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo-badge { height: 84px; margin: 7px 0 -22px; }
  .nav-cta { padding: 9px 14px; font-size: 12px; }
  .hero-content { padding: 90px 20px 60px; grid-template-columns: 1fr; }
  .hero-h1 { font-size: clamp(50px, 13vw, 68px); }
  .hero-card { max-width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services-lead { text-align: left; max-width: 100%; }
  .services-row-1, .services-row-2 { grid-template-columns: 1fr; }
  .services-row-1 .service-card, .services-row-2 .service-card { height: auto; aspect-ratio: 16/10; }
  .social-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .social-grid { grid-template-columns: repeat(2, 1fr); height: auto; }
  .social-col { height: auto; }
  .social-item--sm, .social-item--lg { flex: none; aspect-ratio: 4/5; }
  .social-col--tall .social-item { aspect-ratio: 4/5; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-question { font-size: 15px; gap: 12px; }
  .faq-icon { width: 30px; height: 30px; font-size: 14px; }
  .faq-bg { display: none; }
  .cta-content { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
  .cta-map { aspect-ratio: 16/10; }
  .cta-meta { gap: 28px; }
  .features-row { grid-template-columns: repeat(2, 1fr); }
  #about, #services, #stats, #reviews, #faq, #contact { padding: 70px 20px; }
  #social { padding: 60px 20px; }
  .reviews-header-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bg { width: 240px; height: 240px; }
}
