/* ==========================================================================
   LASTIKÇI - 7/24 Acil Lastikçi ve Yol Yardım Hizmeti
   Premium Dark Theme — Black / Yellow / White / Dark Gray
   ========================================================================== */

/* ---------- CSS Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette */
  --black: #0a0a0a;
  --bg: #0d0d0f;
  --bg-elev: #15161a;
  --bg-card: #1a1c20;
  --bg-card-hover: #22252b;
  --border: #2a2d34;
  --border-light: #353841;
  --gray: #8b8f9a;
  --gray-light: #c4c7cf;
  --white: #ffffff;
  --yellow: #ffd60a;
  --yellow-hover: #ffc300;
  --yellow-dark: #d4a900;
  --green: #25d366;
  --green-hover: #1fb858;
  --red: #ff3b30;
  --red-hover: #e02e24;

  /* Typography */
  --font-sans: "Inter", "Segoe UI", "Tahoma", "Arial", sans-serif;
  --font-display: "Poppins", "Inter", "Segoe UI", sans-serif;

  /* Spacing */
  --container: 1240px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-yellow: 0 12px 40px rgba(255, 214, 10, 0.25);
  --shadow-green: 0 12px 40px rgba(37, 211, 102, 0.25);

  /* Transitions */
  --t-fast: 0.18s ease;
  --t: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-sm {
  padding: 64px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(255, 214, 10, 0.08);
  border: 1px solid rgba(255, 214, 10, 0.25);
  border-radius: 999px;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  color: var(--white);
}

.section-title .accent {
  color: var(--yellow);
}

.section-sub {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-lg {
  padding: 17px 32px;
  font-size: 16px;
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-yellow);
}

.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(255, 214, 10, 0.4);
}

.btn-call {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(255, 59, 48, 0.3);
  animation: ringPulse 2.2s ease-in-out infinite;
}

.btn-call:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn-whatsapp:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border-light);
}

.btn-outline:hover {
  background: var(--bg-card);
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-ghost {
  background: var(--bg-card);
  color: var(--white);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--bg-card-hover);
  border-color: var(--yellow);
}

.btn-block {
  width: 100%;
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 15, 0.75);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: all var(--t);
}

.navbar.scrolled {
  background: rgba(13, 13, 15, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--black);
  box-shadow: 0 6px 20px rgba(255, 214, 10, 0.4);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
}

.logo span.accent {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-light);
  border-radius: 10px;
  transition: all var(--t-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta .btn {
  padding: 11px 20px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta .btn-outline {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    animation: dropDown 0.25s ease;
  }

  .nav-links.open a {
    padding: 14px 16px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 110px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 214, 10, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 30%, rgba(255, 214, 10, 0.08), transparent 60%),
    var(--bg);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 214, 10, 0.1);
  border: 1px solid rgba(255, 214, 10, 0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}

.hero-badge .live-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 214, 10, 0.6);
  animation: pulse 1.6s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: -0.025em;
  color: var(--white);
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--yellow), #ffe566);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.lead {
  font-size: 18px;
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-light);
  font-weight: 500;
}

.hero-meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
}

.hero-visual-img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
}

.hero-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.hero-visual-img:hover img {
  transform: scale(1.05);
}

.hero-visual-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 13, 15, 0.65) 100%);
}

/* Floating card on hero */
.hero-float {
  position: absolute;
  background: rgba(26, 28, 32, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 5s ease-in-out infinite;
}

.hero-float-1 {
  top: 28px;
  left: -28px;
}

.hero-float-2 {
  bottom: 36px;
  right: -28px;
  animation-delay: 1s;
}

.hero-float-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--black);
  flex-shrink: 0;
}

.hero-float-icon svg {
  width: 22px;
  height: 22px;
}

.hero-float-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.hero-float-text small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray);
  margin-top: 2px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-visual {
    max-width: 440px;
    margin: 0 auto;
  }

  .hero-float-1 {
    left: -8px;
  }

  .hero-float-2 {
    right: -8px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 50px 0 80px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-meta {
    gap: 18px;
  }
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  text-align: center;
}

.trust-item .num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.trust-item .label {
  font-size: 13px;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

@media (max-width: 720px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 214, 10, 0.12);
  border: 1px solid rgba(255, 214, 10, 0.25);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  margin-bottom: 22px;
  transition: all var(--t);
}

.service-card:hover .service-icon {
  background: var(--yellow);
  color: var(--black);
  transform: rotate(-6deg) scale(1.05);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow);
  transition: gap var(--t-fast);
}

.service-link:hover {
  gap: 10px;
}

.service-link svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Why Choose Us / Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.features-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 13, 15, 0.65) 100%);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-check {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 214, 10, 0.12);
  border: 1px solid rgba(255, 214, 10, 0.25);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--yellow);
}

.feature-check svg {
  width: 22px;
  height: 22px;
}

.feature-item h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.feature-item p {
  font-size: 14.5px;
  color: var(--gray-light);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .features-img {
    aspect-ratio: 16 / 10;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* ---------- Service Areas ---------- */
.areas-wrap {
  background: linear-gradient(135deg, var(--bg-elev) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.areas-wrap::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
  position: relative;
}

@media (max-width: 960px) {
  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.area-card {
  background: rgba(13, 13, 15, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  gap: 18px;
  align-items: center;
  transition: all var(--t);
}

.area-card:hover {
  background: rgba(13, 13, 15, 0.8);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.area-pin {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--black);
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(255, 214, 10, 0.3);
}

.area-pin svg {
  width: 28px;
  height: 28px;
}

.area-card h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
}

.area-card p {
  color: var(--gray-light);
  font-size: 14px;
}

@media (max-width: 700px) {
  .areas-wrap {
    padding: 32px 24px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Reviews / Testimonials ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--t);
  position: relative;
}

.review-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--yellow);
  margin-bottom: 18px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.review-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 24px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--black);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.review-user h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.review-user span {
  font-size: 13px;
  color: var(--gray);
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: var(--shadow);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(255, 214, 10, 0.08) 0%, var(--bg-card) 100%);
  border-color: var(--yellow);
  box-shadow: var(--shadow-yellow);
}

.price-tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-card .desc {
  font-size: 14px;
  color: var(--gray-light);
  margin-bottom: 24px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.price-amount .amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-amount .currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-light);
}

.price-amount .per {
  font-size: 13px;
  color: var(--gray);
  margin-left: 4px;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.price-features li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--gray-light);
  align-items: flex-start;
}

.price-features li svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ---------- FAQ ---------- */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t);
}

.faq-item:hover {
  border-color: var(--border-light);
}

.faq-item[open] {
  border-color: rgba(255, 214, 10, 0.3);
  background: var(--bg-card-hover);
}

.faq-q {
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q .plus {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 214, 10, 0.12);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 600;
  transition: all var(--t);
  flex-shrink: 0;
}

.faq-item[open] .faq-q .plus {
  background: var(--yellow);
  color: var(--black);
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 26px 24px;
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.7;
  animation: fadeIn 0.3s ease;
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-wrap {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 214, 10, 0.15), transparent 60%),
    linear-gradient(135deg, #1a1c20 0%, #0d0d0f 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-wrap::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.1), transparent 60%);
  pointer-events: none;
}

.cta-wrap h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  margin-bottom: 16px;
  position: relative;
}

.cta-wrap h2 .accent {
  color: var(--yellow);
}

.cta-wrap p {
  font-size: 17px;
  color: var(--gray-light);
  max-width: 580px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

@media (max-width: 600px) {
  .cta-wrap {
    padding: 40px 24px;
  }
  .cta-buttons .btn {
    width: 100%;
  }
  .cta-buttons {
    flex-direction: column;
  }
}

/* ---------- Page Header (sub-page hero) ---------- */
.page-header {
  position: relative;
  padding: 80px 0 70px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 214, 10, 0.12), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 80%);
  z-index: -1;
}

.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 18px;
  font-weight: 500;
}

.crumbs a {
  color: var(--gray-light);
}

.crumbs a:hover {
  color: var(--yellow);
}

.crumbs .sep {
  color: var(--gray);
  opacity: 0.6;
}

.page-header h1 {
  font-size: clamp(32px, 4.8vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin: 0 auto 16px;
  color: var(--white);
}

.page-header h1 .accent {
  color: var(--yellow);
}

.page-header p {
  font-size: 17px;
  color: var(--gray-light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Emergency / 911-style banner ---------- */
.emergency-banner {
  background: linear-gradient(135deg, #2a0f0f 0%, #1a0808 100%);
  border: 1px solid rgba(255, 59, 48, 0.4);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.emergency-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(255, 59, 48, 0.15), transparent 60%);
  pointer-events: none;
}

.emergency-icon {
  width: 86px;
  height: 86px;
  background: var(--red);
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 12px 40px rgba(255, 59, 48, 0.4);
  position: relative;
  animation: pulseRed 2s ease-in-out infinite;
}

.emergency-icon svg {
  width: 44px;
  height: 44px;
}

.emergency-text h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--white);
}

.emergency-text p {
  color: var(--gray-light);
  font-size: 15.5px;
}

@media (max-width: 800px) {
  .emergency-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }

  .emergency-icon {
    margin: 0 auto;
  }
}

/* ---------- Process / Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  text-align: center;
  transition: all var(--t);
}

.step-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  border: 4px solid var(--bg);
}

.step-icon {
  width: 56px;
  height: 56px;
  margin: 14px auto 18px;
  background: rgba(255, 214, 10, 0.12);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--yellow);
}

.step-icon svg {
  width: 28px;
  height: 28px;
}

.step-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
}

@media (max-width: 500px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: all var(--t);
}

.contact-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 214, 10, 0.12);
  border: 1px solid rgba(255, 214, 10, 0.25);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.contact-card a,
.contact-card span {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.contact-card a:hover {
  color: var(--yellow);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

.form-group .req {
  color: var(--yellow);
  margin-right: 2px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  transition: all var(--t-fast);
}

.form-control::placeholder {
  color: var(--gray);
}

.form-control:focus {
  outline: none;
  border-color: var(--yellow);
  background: var(--bg-elev);
  box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffd60a'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 42px;
}

.form-success {
  display: none;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: var(--green);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 14.5px;
  font-weight: 500;
}

.form-success.visible {
  display: block;
  animation: fadeIn 0.4s ease;
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 28px 22px;
  }
}

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  height: 460px;
  position: relative;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.4) brightness(0.95);
}

/* ---------- Floating buttons ---------- */
.float-actions {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--white);
  transition: all var(--t);
  position: relative;
  text-decoration: none;
}

.float-btn svg {
  width: 30px;
  height: 30px;
}

.float-btn:hover {
  transform: scale(1.08);
}

.float-btn.whatsapp {
  background: var(--green);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.float-btn.whatsapp:hover {
  background: var(--green-hover);
}

.float-btn.call {
  background: var(--red);
  box-shadow: 0 10px 30px rgba(255, 59, 48, 0.5);
  animation: ringPulse 2.2s ease-in-out infinite;
}

.float-btn.call:hover {
  background: var(--red-hover);
}

.float-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast);
  border: 1px solid var(--border-light);
}

.float-btn:hover::before {
  opacity: 1;
}

@media (max-width: 600px) {
  .float-actions {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .float-btn {
    width: 54px;
    height: 54px;
  }
  .float-btn svg {
    width: 26px;
    height: 26px;
  }
  .float-btn::before {
    display: none;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: #07070a;
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 340px;
}

.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--gray-light);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--gray-light);
  transition: all var(--t-fast);
}

.footer-social:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer ul a {
  color: var(--gray-light);
  font-size: 14.5px;
  transition: all var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer ul a:hover {
  color: var(--yellow);
  transform: translateX(2px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--gray-light);
  font-size: 14.5px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--gray);
  font-size: 13.5px;
}

.footer-bottom p .accent {
  color: var(--yellow);
}

.footer-legal {
  display: flex;
  gap: 22px;
  font-size: 13.5px;
}

.footer-legal a {
  color: var(--gray);
}

.footer-legal a:hover {
  color: var(--yellow);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Animations ---------- */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 214, 10, 0.6);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 214, 10, 0);
    opacity: 0.7;
  }
}

@keyframes pulseRed {
  0%, 100% {
    box-shadow: 0 12px 40px rgba(255, 59, 48, 0.4), 0 0 0 0 rgba(255, 59, 48, 0.6);
  }
  50% {
    box-shadow: 0 12px 40px rgba(255, 59, 48, 0.4), 0 0 0 14px rgba(255, 59, 48, 0);
  }
}

@keyframes ringPulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.5), 0 0 0 0 rgba(255, 59, 48, 0.5);
  }
  50% {
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.5), 0 0 0 12px rgba(255, 59, 48, 0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dropDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* RTL Support (Arabic) */
[dir="rtl"] .nav-links a.active::after {
  left: 50%;
}

[dir="rtl"] .service-link:hover {
  gap: 10px;
}

[dir="rtl"] .float-actions {
  right: auto;
  left: 22px;
}

[dir="rtl"] .float-btn::before {
  right: auto;
  left: 72px;
}

[dir="rtl"] select.form-control {
  background-position: right 14px center;
  padding-left: 16px;
  padding-right: 42px;
}
