/* ================================================================
   FULLSPEED AUTO EKSPERTİZ — Kurumsal Profesyonel Tasarım v2
   Renk Paleti: Altın #C9900D · Siyah #111111 · Beyaz #FFFFFF
   ================================================================ */

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

:root {
  --gold:       #fdb90a;
  --gold-lt:    #ffc82c;
  --gold-pale:  #FFF9E0;
  --gold-border:#fdb90a;
  --black:      #111111;
  --dark:       #1C1C1E;
  --dark-2:     #252527;
  --white:      #FFFFFF;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-500:   #6B7280;
  --gray-600:   #4B5563;
  --gray-700:   #374151;
  --gray-900:   #111827;
  --r-sm:       6px;
  --r:          10px;
  --r-lg:       16px;
  --sh-xs:      0 1px 3px rgba(0,0,0,0.08);
  --sh:         0 4px 18px rgba(0,0,0,0.10);
  --sh-md:      0 8px 32px rgba(0,0,0,0.12);
  --sh-lg:      0 20px 60px rgba(0,0,0,0.15);
  --ease:       all 0.25s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TOPBAR ──────────────────────────────────────── */
.topbar {
  background: var(--black);
  height: 40px;
  overflow: hidden;
}

.topbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 0;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #AAAAAA;
  font-size: 12.5px;
  padding: 0 14px;
  border-right: 1px solid #2E2E2E;
  white-space: nowrap;
  transition: color 0.2s;
}

.topbar-item:first-child { padding-left: 0; }
.topbar-item:last-child  { border-right: none; }
.topbar-item:hover { color: var(--gold); }

.topbar-item svg { flex-shrink: 0; opacity: 0.7; }
.topbar-item:hover svg { opacity: 1; }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-social {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #2E2E2E;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: var(--ease);
}

.topbar-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(253,185,10,0.08);
}

.topbar-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--black);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  margin-left: 8px;
  white-space: nowrap;
  transition: var(--ease);
}

.topbar-cta:hover { background: var(--gold-lt); }

/* ── SITE HEADER (sticky wrapper) ──────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.navbar-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
}

.nav-links a {
display: block;
    font-size: 17.5px;
    font-weight: 600;
    color: var(--gray-700);
    padding: 9px 13px;
    border-radius: var(--r-sm);
    transition: var(--ease);
    letter-spacing: 0px;
    position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  border-radius: 2px;
  transition: transform 0.22s ease;
}

.nav-links a:hover { color: var(--gold-lt); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--black) !important;
  padding: 9px 22px !important;
  border-radius: var(--r-sm) !important;
  font-weight: 700 !important;
  transition: var(--ease) !important;
}

.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover { background: var(--gold-lt) !important; color: var(--black) !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
display: block;
    width: 30px;
    height: 4px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--ease);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg-1 {
  /* Araç muayene / ekspertiz - güvenli alışveriş */
  background-image:
    linear-gradient(135deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.50) 100%),
    url('https://images.unsplash.com/photo-1625047509168-a7026f36de04?auto=format&fit=crop&w=1920&q=80');
}

.hero-bg-2 {
  /* OBD / elektronik teşhis - teknoloji */
  background-image:
    linear-gradient(135deg, rgba(10,10,10,0.93) 0%, rgba(10,10,10,0.72) 50%, rgba(10,10,10,0.48) 100%),
    url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1920&q=80');
}

.hero-bg-3 {
  /* Hibrit / elektrikli araç - batarya */
  background-image:
    linear-gradient(135deg, rgba(10,10,10,0.93) 0%, rgba(10,10,10,0.74) 50%, rgba(10,10,10,0.52) 100%),
    url('https://images.unsplash.com/photo-1593941707882-a5bba14938c7?auto=format&fit=crop&w=1920&q=80');
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 0;
  text-align: center;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253,185,10,0.15);
  border: 1px solid rgba(253,185,10,0.35);
  color: var(--gold-lt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-tag span { opacity: 0.7; }

.hero-title {
  font-size: 58px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold-lt);
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.70);
  max-width: 800px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
  justify-content: center;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 500;
}

.hero-badge strong { color: rgba(255,255,255,0.85); font-size: 15px; }

/* Slider controls */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.h-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--ease);
  padding: 0;
}

.h-dot.active {
  width: 26px;
  background: var(--gold);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease);
}

.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* ── SERVICE TICKER STRIP ───────────────────────────── */
.service-strip {
  background: var(--dark);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  overflow: hidden;
  position: relative;
}

/* Fade edges */
.service-strip::before,
.service-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.service-strip::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.service-strip::after  { right: 0; background: linear-gradient(to left, var(--dark), transparent); }

.service-strip-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.service-strip-track:hover { animation-play-state: paused; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-right: 1px solid #2A2A2A;
  color: #999;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}

.strip-item:last-child { border-right: none; }
.strip-item svg { flex-shrink: 0; }

/* ── SECTIONS ────────────────────────────────────────── */
.section       { padding: 96px 0; }
.section-sm    { padding: 64px 0; }
.section-white { background: var(--white); }
.section-gray  { background: var(--gray-50); }
.section-dark  { background: var(--dark); }
.section-black { background: var(--black); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-title.white { color: var(--white); }
.section-title em { font-style: normal; color: var(--gold); }

.section-desc {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 520px;
  line-height: 1.7;
}

.section-head {
  margin-bottom: 64px;
}

.section-head.centered { text-align: center; }
.section-head.centered .section-label { justify-content: center; }
.section-head.centered .section-label::before { display: none; }
.section-head.centered .section-desc { margin: 0 auto; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253,185,10,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.7);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-200);
}
.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-wa:hover {
  background: #1EBE59;
  border-color: #1EBE59;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.30);
}

.btn-lg  { padding: 15px 36px; font-size: 15.5px; }
.btn-sm  { padding: 9px 20px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* ── HOME: PACKAGE CARDS ────────────────────────────── */
.pkg-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pkg-card-v2 {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pkg-card-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pkg-card-v2:hover {
  border-color: var(--gold);
  box-shadow: var(--sh-md);
  transform: translateY(-6px);
}

.pkg-card-v2:hover::before { transform: scaleX(1); }

.pkg-card-v2.highlight {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.pkg-card-v2.highlight::before { transform: scaleX(1); }

.pkgv2-header {
  background: var(--dark);
  padding: 24px 22px 18px;
  position: relative;
}

.pkgv2-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.pkgv2-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.pkgv2-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.pkgv2-price {
  font-size: 38px;
  font-weight: 800;
  color: var(--gold-lt);
  line-height: 1;
}

.pkgv2-price sup {
  font-size: 17px;
  font-weight: 600;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.pkgv2-price-note {
  font-size: 11px;
  color: #888;
  margin-top: 4px;
}

.pkgv2-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkgv2-desc {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pkgv2-feats {
  list-style: none;
  flex: 1;
  margin-bottom: 20px;
}

.pkgv2-feat {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--gray-600);
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-100);
}

.pkgv2-feat:last-child { border-bottom: none; }

.feat-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1.5px solid rgba(253,185,10,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
}

/* ── STATS ──────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #222;
  border-radius: var(--r);
  overflow: hidden;
}

.stat-box {
  background: var(--dark);
  padding: 40px 28px;
  text-align: center;
  transition: var(--ease);
}

.stat-box:hover { background: var(--dark-2); }

.stat-num {
  font-size: 54px;
  font-weight: 800;
  color: var(--gold-lt);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
}

/* ── WHY US ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  padding: 32px 24px;
  transition: var(--ease);
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--sh);
  transform: translateY(-4px);
}

.why-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  border: 1px solid rgba(253,185,10,0.2);
}

.why-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.why-text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background: var(--gold);
  padding: 64px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}

.cta-banner-text p { font-size: 15px; color: rgba(0,0,0,0.65); }

.cta-banner-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── PAGE HERO ──────────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(253,185,10,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; text-align: center; }
.page-hero p { margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #666; }
.breadcrumb .sep { color: #333; }

.page-hero h1 {
  font-size: 46px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.page-hero h1 em { font-style: normal; color: var(--gold-lt); }

.page-hero p { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 500px; }

/* ── ABOUT PAGE ──────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-kicker {
  display: inline-block;
  background: var(--gold-pale);
  border: 1px solid rgba(253,185,10,0.25);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.about-layout h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-layout h2 em { font-style: normal; color: var(--gold); }

.about-text p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 18px;
}

.tse-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--dark);
  border-radius: var(--r);
  padding: 18px 24px;
  margin-top: 8px;
}

.tse-box-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.tse-box-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.tse-box-text span {
  font-size: 12px;
  color: var(--gold-lt);
  font-weight: 600;
}

.about-panel {
  background: var(--dark);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  border: 1px solid #272727;
}

.about-panel h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #2A2A2A;
}

.val-list { list-style: none; }

.val-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #222;
}

.val-item:last-child { border-bottom: none; padding-bottom: 0; }

.val-icon {
  width: 40px;
  height: 40px;
  background: rgba(253,185,10,0.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(253,185,10,0.2);
}

.val-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.val-body span { font-size: 13px; color: #888; line-height: 1.55; }

/* ── PACKAGES PAGE ──────────────────────────────────── */
.main-pkg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 80px;
}

.main-pkg {
  border-radius: var(--r-lg);
  border: 2px solid var(--gray-200);
  overflow: hidden;
  transition: var(--ease);
}

.main-pkg:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.main-pkg.top { border-color: var(--gold); }

.mpkg-head {
  background: var(--dark);
  padding: 32px 32px 28px;
  position: relative;
  border-bottom: 1px solid #2A2A2A;
}

.mpkg-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--gold);
  color: var(--black);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.mpkg-head h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.mpkg-price-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.mpkg-price {
  font-size: 52px;
  font-weight: 800;
  color: var(--gold-lt);
  line-height: 1;
  letter-spacing: -1px;
}

.mpkg-price sup {
  font-size: 22px;
  vertical-align: super;
  font-weight: 600;
}

.mpkg-price-label {
  font-size: 13px;
  color: #666;
  padding-bottom: 8px;
}

.mpkg-body { background: var(--white); padding: 28px 32px 32px; }

.mpkg-body h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.mpkg-feats {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 16px;
  margin-bottom: 24px;
}

.mpkg-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--gray-700);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
}

.mpkg-feat:last-child { border-bottom: none; }

.mpkg-feat-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1.5px solid rgba(253,185,10,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--gold);
  font-weight: 900;
  flex-shrink: 0;
}

/* Individual service cards */
.service-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.svc-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  padding: 28px 22px;
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: 18px;
}

.svc-card:hover {
  border-color: var(--gold);
  box-shadow: var(--sh);
  transform: translateY(-3px);
}

.svc-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--dark);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.svc-info { flex: 1; }

.svc-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.svc-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
}

.svc-price small { font-size: 13px; color: var(--gray-400); font-weight: 400; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--ease);
}

.faq-item:hover { border-color: rgba(253,185,10,0.35); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  background: var(--gray-50);
  user-select: none;
  list-style: none;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q svg,
.faq-q i.fa-plus {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--gold);
}

details[open] .faq-q svg { transform: rotate(45deg); }
details[open] .faq-q i.fa-plus { transform: rotate(45deg); }

.faq-a {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.7;
  background: var(--gray-50);
}

.note-strip {
  background: var(--gold-pale);
  border: 1.5px solid rgba(253,185,10,0.3);
  border-radius: var(--r);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 36px;
}

.note-strip svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.note-strip p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
.note-strip strong { color: var(--gray-900); }

/* ── CONTACT PAGE ────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info-title { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.contact-info-sub   { font-size: 14px; color: var(--gray-500); margin-bottom: 32px; line-height: 1.6; }

.ci-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }

.ci-icon {
  width: 48px;
  height: 48px;
  background: var(--dark);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.ci-body strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 4px;
}

.ci-body a,
.ci-body span { font-size: 16px; font-weight: 700; color: var(--gray-800); }
.ci-body a:hover { color: var(--gold); }

.hours-panel {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r);
  padding: 22px 24px;
  margin-top: 28px;
}

.hours-panel h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}

.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 600; color: var(--gray-900); }

.social-panel { margin-top: 28px; }

.social-panel h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.social-links-row { display: flex; gap: 12px; flex-wrap: wrap; }

.soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--ease);
  color: var(--white);
  text-decoration: none;
}

.soc-btn:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.soc-btn.ig { background: linear-gradient(45deg, #405DE6, #C13584, #E1306C, #FD1D1D); }
.soc-btn.fb { background: #1877F2; }

/* hakkimizda mv-grid */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── APPOINTMENT PANEL (iletisim) ────────────────────── */
.appt-panel {
  background: var(--dark);
  border-radius: var(--r-lg);
  border: 1px solid #272727;
  overflow: hidden;
}

.appt-panel-head {
  background: var(--black);
  padding: 32px 36px 28px;
  border-bottom: 1px solid #2a2a2a;
}

.appt-panel-head h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.appt-panel-head h3 em { font-style: normal; color: var(--gold-lt); }
.appt-panel-head p { font-size: 14px; color: #777; }

.appt-steps {
  padding: 28px 36px;
  border-bottom: 1px solid #2a2a2a;
}

.appt-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #232323;
}

.appt-step:last-child { border-bottom: none; padding-bottom: 0; }

.appt-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(253,185,10,0.12);
  border: 1.5px solid rgba(253,185,10,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--gold);
  flex-shrink: 0;
}

.appt-step-body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.appt-step-body span {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

.appt-ctas {
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid #2a2a2a;
}

.appt-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 600;
  color: #888;
}

.appt-guarantee i { color: var(--gold); font-size: 15px; }

.contact-info-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 28px;
}

.c-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.c-icon {
  width: 46px;
  height: 46px;
  background: var(--dark);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-body strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  font-weight: 600;
  margin-bottom: 4px;
}

.c-body a, .c-body span {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--gray-800);
}

.c-body a:hover { color: var(--gold); }

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.soc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--ease);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
}

.soc-link:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.soc-link.ig { background: linear-gradient(45deg, #405DE6, #C13584, #E1306C, #FD1D1D); color: var(--white); border: none; }
.soc-link.fb { background: #1877F2; color: var(--white); border: none; }

/* Contact Form */
.form-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 40px 36px;
}

.form-card h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.form-card p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-size: 14.5px;
  font-family: inherit;
  background: var(--white);
  color: var(--gray-900);
  transition: var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(253,185,10,0.12);
}

.form-group textarea { min-height: 110px; resize: vertical; }

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success {
  display: none;
  background: #ECFDF5;
  border: 1.5px solid #6EE7B7;
  border-radius: var(--r-sm);
  padding: 14px 18px;
  color: #065F46;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin-top: 14px;
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid #222;
}

.footer-brand-logo {
  height: 55px;
  margin-bottom: 18px;
}

.footer-brand-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-soc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #2A2A2A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
  transition: var(--ease);
}

.footer-soc:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(253,185,10,0.08);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: #777;
  font-size: 14px;
  transition: var(--ease);
}

.footer-links a:hover { color: var(--gold-lt); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #777;
  margin-bottom: 12px;
}

.footer-contact-item a {
  color: #777;
  transition: var(--ease);
}

.footer-contact-item a:hover { color: var(--gold-lt); }

.footer-contact-item svg { flex-shrink: 0; color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: #444; font-size: 13px; }

.tse-chip {
  background: rgba(253,185,10,0.10);
  border: 1px solid rgba(253,185,10,0.25);
  color: var(--gold-lt);
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* ── FLOATING ─────────────────────────────────────────── */
.floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.30);
  transition: var(--ease);
  text-decoration: none;
}

.float-btn:hover { transform: scale(1.10); }
.float-wa  { background: #25D366; }
.float-tel { background: var(--gold); }

/* ── FA ICON UTILITIES ─────────────────────────────── */
.topbar-item i,
.topbar-social i {
  font-size: 13px;
}

.strip-item i { font-size: 15px; color: var(--gold); }

.float-btn i { font-size: 20px; }

/* ── HOME PKG GRID (2x2 big cards) ──────────────────── */
.pkg-grid-home {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pkg-card-home {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}

.pkg-card-home:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transform: translateY(-6px);
}

.pkg-card-home.highlight {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.pch-header {
  background: var(--dark);
  padding: 28px 28px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.pch-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.pch-icon {
  width: 68px;
  height: 68px;
  background: rgba(253,185,10,0.12);
  border: 1.5px solid rgba(253,185,10,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 28px;
}

.pch-info { flex: 1; min-width: 0; }

.pch-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.pch-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
}

.pch-price sup {
  font-size: 16px;
  font-weight: 600;
  vertical-align: super;
}

.pch-kdv {
  font-size: 11px;
  color: #666;
  margin-top: 4px;
}

.pch-body {
  padding: 22px 28px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pch-desc {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 16px;
}

.pch-feats {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}

.pch-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-600);
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-100);
}

.pch-feat:last-child { border-bottom: none; }
.pch-feat i { color: var(--gold); font-size: 11px; width: 14px; flex-shrink: 0; }

/* ── PRICE COMPARISON TABLE (image-inspired) ──────────── */
.price-table-outer {
  border: 3px solid var(--gold);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0d0d0d;
}

.price-table {
  display: flex;
  align-items: stretch;
}

.ptl-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #252525;
  min-width: 0;
}

.pt-ind {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #252525;
}
.pt-ind:last-child { border-bottom: none; }

.ptp-col {
  flex: 1.45;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #252525;
  min-width: 0;
}
.ptp-col:last-child { border-right: none; }
.ptp-col.featured { border-left: 2px solid var(--gold); }

.pt-col-head {
  background: var(--gold);
  padding: 17px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.pt-icon-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 178px;
  overflow: hidden;
  background: #0d0d0d;
}

.pt-service-img {
  width: 100%;
  height: 100%;
  min-height: 178px;
  max-width: 100%;
  object-fit: cover;
  display: block;
  flex: 1 1 auto;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.pt-price-area {
  background: var(--white);
  text-align: center;
  padding: 14px 10px;
  border-top: 2px solid var(--gold);
}

.pt-price {
  font-size: 32px;
  font-weight: 900;
  color: #111;
  line-height: 1;
  letter-spacing: -0.5px;
}
.pt-price sup { font-size: 16px; vertical-align: super; }

.pt-price-kdv {
  font-size: 10.5px;
  color: #888;
  margin-top: 3px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.pt-package-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  background: linear-gradient(135deg, #191919 0%, #0d0d0d 52%, rgba(253,185,10,0.22) 100%);
  border-bottom: 1px solid rgba(253,185,10,0.35);
  color: var(--white);
  text-align: center;
}

.pt-package-kicker strong {
  color: var(--gold);
  font-size: 38px;
  line-height: 0.9;
  font-weight: 900;
}

.pt-package-kicker span {
  max-width: 120px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.pt-feat-list {
  flex: 1;
  padding: 6px 0;
}

.pt-feat-modern {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0px;
}

.pt-feature-group {
  border: 1px solid rgba(253,185,10,0.24);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018));
}

.pt-feature-title {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(253,185,10,0.2);
  color: var(--gold-lt);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.pt-feature-title i {
  width: 18px;
  color: var(--gold);
  text-align: center;
  flex-shrink: 0;
  font-size: 15px;
}

.pt-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: #242424;
}

.pt-feature-item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 9px 12px;
  background: linear-gradient(180deg, #151515, #0f0f0f);
  color: rgba(255,255,255,0.94);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.2;
}

.pt-feature-item i {
  width: 18px;
  color: var(--gold);
  text-align: center;
  flex-shrink: 0;
  font-size: 15px;
}

.pt-feature-group-muted {
  border-color: rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.006));
}

.pt-feature-group-muted .pt-feature-title {
  color: rgba(255,255,255,0.38);
  border-bottom-color: rgba(255,255,255,0.08);
}

.pt-feature-group-muted .pt-feature-title i,
.pt-feature-item.is-inactive i {
  color: rgba(253,185,10,0.34);
}

.pt-feature-item.is-inactive {
  background: linear-gradient(180deg, #0f0f0f, #0a0a0a);
  color: rgba(255,255,255,0.34);
}

.pt-feature-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(253,185,10,0.4);
  background: linear-gradient(135deg, rgba(253,185,10,0.16), rgba(253,185,10,0.05));
  color: #f0d792;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.pt-feature-note i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.pt-feat-row {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--white);
  border-bottom: 1px solid #1e1e1e;
}
.pt-feat-row:last-child { border-bottom: none; }
.pt-feat-row.excl { color: #ab9b73; }

.pt-cta-link {
  display: block;
  color: var(--gold);
  background: var(--black);
  text-align: center;
  padding: 13px 10px;
  font-weight: 900;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.2s;
}
.pt-cta-link:hover { background: var(--gold-lt); }

.ptp-col.featured .pt-cta-link {
  background: var(--gold);
  color: var(--black);
  border-top: 2px solid var(--gold);
}
.ptp-col.featured .pt-cta-link:hover { background: #1a1a1a; }

.pt-footnote {
  text-align: center;
  font-size: 12.5px;
  color: var(--gray-500);
  margin-top: 16px;
  font-weight: 600;
}

/* Package features strip */
.pkg-features-strip {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
}
.pkg-features-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.pfs-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
}
.pfs-item i { color: var(--gold); }

/* Local SEO and Google review sections */
.local-service-section {
  border-top: 1px solid var(--gray-200);
}

.local-service-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.local-service-desc {
  max-width: 720px;
  margin-top: 14px;
}

.local-area-panel {
  display: grid;
  gap: 10px;
}

.local-area-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  color: var(--gray-900);
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--sh-xs);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.local-area-chip:hover {
  transform: translateX(4px);
  border-color: var(--gold);
}

.local-area-chip i {
  color: var(--gold);
  flex-shrink: 0;
}

.google-reviews-section {
  overflow: hidden;
}

.google-reviews-head {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
}

.google-rating-box {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 22px;
  text-align: center;
}

.google-rating-box strong {
  display: block;
  color: var(--gold);
  font-size: 54px;
  line-height: 0.9;
  font-weight: 900;
}

.google-stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 2px;
  margin: 12px 0 6px;
}

.google-rating-box span {
  color: rgba(255,255,255,0.72);
  font-size: 12.5px;
  font-weight: 700;
}

.review-marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
}

.review-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: reviewMarquee 34s linear infinite;
}

.review-marquee:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  width: 310px;
  min-height: 190px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: var(--sh-xs);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}

.review-card h3 {
  color: var(--gray-900);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.review-card p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.55;
}

.google-review-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

@keyframes reviewMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .pkg-grid-4   { grid-template-columns: repeat(2, 1fr); }
  .why-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-row    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .pch-feats    { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .main-pkg-row { grid-template-columns: 1fr; }
  .service-pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .local-service-layout { grid-template-columns: 1fr; }
  .google-reviews-head { grid-template-columns: 1fr; }
  .google-rating-box { max-width: 280px; }
  .hero-title { font-size: 42px; }
  .mpkg-feats { grid-template-columns: 1fr; }
  .price-table { flex-wrap: wrap; }
  .ptl-col { flex-basis: 50%; border-bottom: 1px solid #252525; }
  .ptp-col { flex-basis: 50%; }
  .ptp-col.featured { border-left: none; border-top: 2px solid var(--gold); }
  .pt-col-head { font-size: 11px; }
  .pfs-item { font-size: 12px; }
  .pkg-features-strip .container { gap: 16px; }
  .contact-main-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  /* Mobile nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 116px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-top: 1px solid var(--gray-200);
    gap: 0;
  }

  .nav-links.open { display: flex; }

  .nav-links li { border-bottom: 1px solid var(--gray-100); }

  .nav-links a {
    display: block;
    padding: 14px 8px;
  }

  .nav-links a::after { display: none; }

  .nav-cta-btn { margin-top: 8px; border-radius: var(--r-sm); }

  .menu-toggle { display: flex; }

  /* Topbar on mobile */
  .topbar-left .topbar-item:not(:first-child) { display: none; }
  .topbar-right .topbar-cta { display: none; }

  .section { padding: 60px 0; }
  .section-title { font-size: 30px; }

  .hero-title { font-size: 32px; letter-spacing: -0.3px; }
  .hero-subtitle { font-size: 15px; }
  .page-hero h1 { font-size: 32px; }

  .pkg-grid-4   { grid-template-columns: 1fr; }
  .pkg-grid-home { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .stats-row    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr; }
  .pch-feats    { grid-template-columns: 1fr; }
  .pch-icon     { width: 56px; height: 56px; font-size: 22px; }
  .ptl-col      { flex-basis: 100%; }
  .ptp-col      { flex-basis: 100%; }
  .pt-feat-row  { font-size: 12px; padding: 7px 14px; }
  .pt-price     { font-size: 38px; }

  .service-pkg-grid { grid-template-columns: 1fr; }
  .review-card { width: 280px; }
  .google-rating-box strong { font-size: 46px; }
  .local-area-chip { font-size: 13px; }
  .pfs-item     { font-size: 12px; }
  .mv-grid      { grid-template-columns: 1fr; }

  .cta-banner-inner { flex-direction: column; text-align: center; }

  .mpkg-feats { grid-template-columns: 1fr; }

  .form-group-row { grid-template-columns: 1fr; }

  .hero-arrow { display: none; }

  .hero-badges { gap: 14px; }
}
