/*
Theme Name: Schlüsseldienst Stuttgart V2
Theme URI: https://xn--schlsseldienststuttgartt-ysc.de
Description: Premium Raw PHP Theme — Schlüsseldienst Stuttgart | WP-Flash v4.0 | Rebuild V2
Author: WP-Flash | SerpZenith
Version: 2.0
Text Domain: sds-theme-v2
*/

/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS — Navy + Orange German Locksmith
════════════════════════════════════════════════════════════════ */
:root {
  /* Brand Colors */
  --primary:        #0B1A2E;
  --primary-2:      #132540;
  --primary-3:      #1A3360;
  --accent:         #E8820C;
  --accent-2:       #D4720A;
  --accent-glow:    rgba(232,130,12,.20);
  --accent-soft:    #FFF4E6;

  /* Status */
  --green:          #16A34A;
  --green-soft:     #F0FDF4;
  --red:            #DC2626;

  /* Backgrounds */
  --bg:             #FFFFFF;
  --surface:        #F7F8FA;
  --surface-2:      #EEF0F4;
  --dark-bg:        #070E1A;
  --dark-surface:   #0F1C31;

  /* Borders */
  --border:         #E2E6EE;
  --border-2:       #CBD0DC;

  /* Text */
  --text:           #0B1A2E;
  --text-2:         #3D4F66;
  --text-3:         #7A8CA0;
  --white:          #FFFFFF;

  /* Shape */
  --r-xs:  4px;
  --r-sm:  6px;
  --r:     10px;
  --r-lg:  16px;
  --r-xl:  24px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(11,26,46,.06);
  --shadow-sm: 0 4px 12px rgba(11,26,46,.08);
  --shadow:    0 8px 24px rgba(11,26,46,.10);
  --shadow-lg: 0 16px 40px rgba(11,26,46,.14);
  --shadow-xl: 0 24px 64px rgba(11,26,46,.18);

  /* Typography */
  --font-head: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --max-w:    1200px;
  --trans:    .2s cubic-bezier(.4,0,.2,1);

  /* Header height */
  --header-h: 72px;
}

/* ═══════════════════════════════════════════════════════════════
   RESET + BASE
════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  padding-top: var(--header-h);
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--accent); color: #fff; }
p { font-size: 15px; color: var(--text-2); line-height: 1.85; }

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
}
h1 { font-size: clamp(28px, 4.5vw, 52px); letter-spacing: -1.5px; }
h2 { font-size: clamp(22px, 3vw, 38px); letter-spacing: -0.5px; }
h3 { font-size: clamp(17px, 2vw, 22px); font-weight: 700; }
h4 { font-size: 17px; font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT UTILITIES
════════════════════════════════════════════════════════════════ */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 820px;        margin: 0 auto; padding: 0 24px; }
.section      { padding: 88px 0; }
.section-sm   { padding: 60px 0; }
.section-xs   { padding: 40px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex   { display: flex; align-items: center; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: var(--trans);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border-2);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--surface);
  transform: translateY(-1px);
}
.btn-lg { padding: 17px 36px; font-size: 15px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════
   HEADER — STICKY TOP BAR + MAIN NAV
════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.header-logo img {
  height: 42px;
  width: auto;
  display: block;
}
.logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon-wrap i {
  font-size: 18px;
  color: #fff;
  transform: rotate(-45deg);
}
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Nav */
.header-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.header-nav a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.80);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: var(--trans);
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  color: #fff;
  background: rgba(255,255,255,.10);
}

/* Emergency CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--r);
  font-weight: 800;
  font-size: 14px;
  transition: var(--trans);
  text-decoration: none;
}
.header-phone:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}
.header-phone i { font-size: 14px; animation: ring 2s ease-in-out infinite; }
@keyframes ring {
  0%,100% { transform: rotate(0); }
  10%      { transform: rotate(-10deg); }
  20%      { transform: rotate(10deg); }
  30%      { transform: rotate(-8deg); }
  40%      { transform: rotate(8deg); }
  50%      { transform: rotate(0); }
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.10);
  border: none;
  transition: var(--trans);
}
.nav-toggle:hover { background: rgba(255,255,255,.20); }
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--trans);
  width: 100%;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  background: var(--primary-2);
  padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--trans);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); padding-left: 6px; }
.mobile-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 14px;
  border-radius: var(--r);
  font-weight: 800;
  font-size: 15px;
  margin-top: 16px;
  text-decoration: none;
  transition: var(--trans);
}
.mobile-phone-btn:hover { background: var(--accent-2); }

/* ═══════════════════════════════════════════════════════════════
   EMERGENCY TOP BAR
════════════════════════════════════════════════════════════════ */
.emergency-bar {
  background: var(--accent);
  padding: 9px 0;
  text-align: center;
}
.emergency-bar p {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.emergency-bar a {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (for inner pages)
════════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-3) 100%);
  padding: 60px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,130,12,.20);
  border: 1px solid rgba(232,130,12,.40);
  color: #FFA940;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 16px; max-width: 600px; }
.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
.page-hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.70);
  font-size: 13px;
  font-weight: 500;
}
.page-hero-meta i { color: var(--accent); font-size: 14px; }

/* Featured Image in Hero */
.hero-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.hero-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(7,14,26,.80);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-img-badge i { color: var(--accent); font-size: 16px; }
.hero-img-badge strong { color: #fff; font-size: 13px; font-weight: 700; }
.hero-img-badge span { color: rgba(255,255,255,.60); font-size: 11px; display: block; }

/* ═══════════════════════════════════════════════════════════════
   CARDS
════════════════════════════════════════════════════════════════ */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: var(--trans);
}
.card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-soft);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon i { color: var(--accent); font-size: 22px; }

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADINGS
════════════════════════════════════════════════════════════════ */
.section-head { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p  { max-width: 560px; margin: 0 auto; font-size: 16px; }

/* ═══════════════════════════════════════════════════════════════
   TRUST BADGES
════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.trust-item i { color: var(--accent); font-size: 15px; }
.trust-item .trust-check { color: var(--green); }

/* ═══════════════════════════════════════════════════════════════
   STAT BOXES
════════════════════════════════════════════════════════════════ */
.stat-box {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid var(--border);
}
.stat-box:last-child { border-right: none; }
.stat-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  font-family: var(--font-head);
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: 13px; color: var(--text-3); margin-top: 4px; }

/* ═══════════════════════════════════════════════════════════════
   PRICING TABLE
════════════════════════════════════════════════════════════════ */
.pricing-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: var(--trans);
}
.pricing-card.featured {
  background: var(--primary);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
  transform: scale(1.02);
  color: #fff;
}
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,.6); }
.pricing-card.featured p { color: rgba(255,255,255,.75); }
.pricing-card.featured ul li { color: rgba(255,255,255,.75); }
.pricing-card.featured strong { color: #fff; }
.pricing-card.featured h3, .pricing-card.featured h4 { color: #fff; }
.pricing-price {
  font-size: 44px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  font-family: var(--font-head);
}
.pricing-price sup { font-size: 22px; vertical-align: top; margin-top: 8px; }
.pricing-period { font-size: 13px; color: var(--text-3); margin-top: 4px; }

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION
════════════════════════════════════════════════════════════════ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 8px;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: none;
  outline: none;
  text-align: left;
  font-family: var(--font-head);
  line-height: 1.4;
  transition: var(--trans);
  gap: 16px;
}
.faq-q:hover { background: var(--surface); color: var(--accent); }
.faq-q:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.faq-q i { color: var(--accent); font-size: 13px; flex-shrink: 0; transition: transform .3s ease; }
.faq-a {
  display: block;
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  background: var(--bg);
  transition: max-height .4s ease, padding .35s ease;
}
.faq-a.open { max-height: 2000px; padding: 4px 22px 22px; }
.faq-a p { font-size: 14px; color: var(--text-2); line-height: 1.65; margin-bottom: 8px; }
.faq-a p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-3) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,130,12,.15) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; margin-bottom: 12px; }
.cta-section p  { color: rgba(255,255,255,.75); font-size: 17px; max-width: 520px; margin: 0 auto 32px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   REVIEW CARD
════════════════════════════════════════════════════════════════ */
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}
.review-stars { color: #F59E0B; font-size: 14px; margin-bottom: 12px; display: flex; gap: 3px; }
.review-text { font-size: 14px; color: var(--text-2); line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: var(--accent);
}
.review-name { font-weight: 700; font-size: 14px; }
.review-meta { font-size: 12px; color: var(--text-3); }

/* ═══════════════════════════════════════════════════════════════
   LOCATION GRID
════════════════════════════════════════════════════════════════ */
.location-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: var(--trans);
  text-decoration: none;
}
.location-card:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.location-card-left { display: flex; align-items: center; gap: 12px; }
.location-icon {
  width: 36px; height: 36px;
  background: var(--accent-soft);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.location-icon i { color: var(--accent); font-size: 15px; }
.location-name { font-weight: 700; font-size: 14px; color: var(--text); }
.location-sub  { font-size: 12px; color: var(--text-3); }
.location-arrow { color: var(--accent); font-size: 12px; }

/* Featured image block (for location/service pages) */
.page-featured-img {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.page-featured-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.page-featured-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(7,14,26,.85) 0%, transparent 100%);
  padding: 32px 24px 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.page-featured-img-caption i { color: var(--accent); margin-right: 6px; }

/* ═══════════════════════════════════════════════════════════════
   BREADCRUMB
════════════════════════════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-3); transition: var(--trans); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 10px; }
.breadcrumb .current { color: var(--text-2); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,.70);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-logo-icon {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-logo-icon i { color: #fff; font-size: 16px; transform: rotate(-45deg); }
.footer-logo-name { font-size: 14px; font-weight: 800; color: #fff; line-height: 1.1; }
.footer-logo-sub  { font-size: 10px; color: rgba(255,255,255,.40); letter-spacing: 0.8px; text-transform: uppercase; margin-top: 2px; }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,.55); }
.footer-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 6px;
  transition: var(--trans);
  text-decoration: none;
}
.footer-tel:hover { color: #FFA940; }
.footer-tel i { font-size: 16px; }
.footer-tel-sub { font-size: 12px; color: rgba(255,255,255,.40); }
.footer-col h5 {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-col ul li a i { font-size: 10px; color: var(--accent); flex-shrink: 0; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.footer-contact-item i { color: var(--accent); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.30); }
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,.30);
  transition: var(--trans);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.70); }

/* Trust row in footer */
.footer-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
}
.footer-trust-item i { color: var(--accent); font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE SECTIONS
════════════════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-3) 100%);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,130,12,.12) 0%, transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,130,12,.15);
  border: 1px solid rgba(232,130,12,.35);
  color: #FFA940;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.85)} }
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero h1 span { color: var(--accent); }
.hero-desc { color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.10);
  flex-wrap: wrap;
}
.hero-proof-item { display: flex; align-items: center; gap: 8px; }
.hero-proof-item i { color: var(--accent); font-size: 16px; }
.hero-proof-item span { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500; }
.hero-visual {
  position: relative;
}
.hero-img-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.40);
  position: relative;
}
.hero-img-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.hero-stat-float {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: rgba(7,14,26,.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.hero-stat-float .num { font-size: 28px; font-weight: 900; color: var(--accent); line-height: 1; font-family: var(--font-head); }
.hero-stat-float .label { font-size: 12px; color: rgba(255,255,255,.60); margin-top: 2px; }
.hero-rating-float {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-xl);
  text-align: center;
}
.hero-rating-float .stars { color: #F59E0B; font-size: 14px; margin-bottom: 4px; }
.hero-rating-float .score { font-size: 22px; font-weight: 900; color: var(--primary); line-height: 1; font-family: var(--font-head); }
.hero-rating-float .count { font-size: 11px; color: var(--text-3); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════════
   SERVICES GRID (homepage)
════════════════════════════════════════════════════════════════ */
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--trans);
  text-decoration: none;
  display: block;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card-img {
  height: 180px;
  overflow: hidden;
  background: var(--surface);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 22px; }
.service-card-icon {
  width: 44px; height: 44px;
  background: var(--accent-soft);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.service-card-icon i { color: var(--accent); font-size: 18px; }
.service-card h3 { font-size: 16px; margin-bottom: 8px; }
.service-card p  { font-size: 13px; color: var(--text-3); margin-bottom: 16px; }
.service-card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card-price .from { font-size: 12px; color: var(--text-3); }
.service-card-price .amount {
  font-size: 18px;
  font-weight: 900;
  color: var(--accent);
  font-family: var(--font-head);
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS STEPS
════════════════════════════════════════════════════════════════ */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}
.step-num {
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #fff;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 6px; }
.step-content p  { font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   CONTENT PAGE (inner pages — outputs WP content)
════════════════════════════════════════════════════════════════ */
.content-wrap { padding: 0; }
.content-wrap .entry-content { max-width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   STAT GRID — class-based so responsive works
════════════════════════════════════════════════════════════════ */
.stats-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet 1024px
════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-rating-float, .hero-stat-float { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 48px 0 40px; }
  .stats-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-box { border-right: none; padding: 20px 0; }
  .stat-box:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .stat-box:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile 768px
════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Sections */
  .section    { padding: 52px 0; }
  .section-sm { padding: 36px 0; }
  .section-xs { padding: 24px 0; }
  .section-head { margin-bottom: 32px; }

  /* Grids — stack all */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid-4 { grid-template-columns: 1fr 1fr; }

  /* Hero */
  .hero { padding: 44px 0 36px; }
  .hero-desc { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-img-card img { height: 240px; }

  /* Page hero */
  .page-hero { padding: 32px 0 28px; }
  .page-hero h1 { font-size: clamp(20px, 6.5vw, 34px); }
  .page-hero p  { font-size: 14px; }
  .page-hero-meta { gap: 10px; flex-wrap: wrap; margin-top: 16px; }
  .page-hero-meta span { font-size: 12px; gap: 6px; }
  .hero-img-wrap { margin-top: 20px; }
  .hero-img-wrap img { height: 210px !important; }

  /* Header */
  .header-cta .btn { display: none; }
  .logo-tagline { display: none; }

  /* Cards */
  .card { padding: 20px; }
  .pricing-card { padding: 24px 20px; }
  .pricing-card.featured { transform: none; }

  /* Pricing */
  .pricing-price { font-size: 38px; }

  /* Process steps */
  .process-step { padding: 16px; gap: 14px; }
  .step-num { width: 40px; height: 40px; font-size: 15px; flex-shrink: 0; }

  /* Trust bar — scrollable row */
  .trust-bar-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 20px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .trust-bar-inner::-webkit-scrollbar { display: none; }
  .trust-item { white-space: nowrap; flex-shrink: 0; }

  /* Stats */
  .stat-box { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.12); padding: 16px 0; }
  .stat-box:last-child { border-bottom: none; }
  .stat-num { font-size: 30px; }

  /* FAQ */
  .faq-q { padding: 15px 16px; font-size: 14px; }
  .faq-a.open { padding: 4px 16px 18px; }

  /* CTA */
  .cta-section { padding: 56px 0; }
  .cta-section h2 { font-size: clamp(20px, 6vw, 32px); }
  .cta-actions { flex-direction: column; align-items: center; gap: 10px; }
  .cta-actions .btn { width: 100%; max-width: 340px; justify-content: center; }

  /* Buttons */
  .btn { white-space: normal; }
  .btn-lg { padding: 15px 22px; font-size: 14px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-trust-row { flex-wrap: wrap; gap: 14px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 12px; }

  /* Page featured image */
  .page-featured-img img { height: 200px; }
  .hero-img-card img { height: 240px; }

  /* Breadcrumb */
  .breadcrumb { font-size: 12px; }

  /* Section head text */
  .section-head p { font-size: 14px; }

  /* Mobile nav */
  .mobile-nav { max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Small Mobile 480px
════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --header-h: 60px; }

  .container { padding: 0 14px; }

  /* Header — tighten */
  .header-inner { gap: 12px; }
  .logo-name { font-size: 13px; }
  .logo-icon-wrap { width: 34px; height: 34px; }
  .logo-icon-wrap i { font-size: 15px; }
  .header-phone { padding: 7px 12px; font-size: 13px; gap: 7px; }
  .phone-text-label { display: none; }

  /* Hero */
  .page-hero { padding: 24px 0 20px; }
  .page-hero h1 { font-size: clamp(18px, 7vw, 28px); letter-spacing: -0.5px; }
  .page-hero-meta { gap: 8px; }
  .page-hero-meta span { font-size: 11px; }

  /* Sections */
  .section    { padding: 40px 0; }
  .section-sm { padding: 28px 0; }

  /* Trust bar */
  .trust-bar { padding: 12px 0; }
  .trust-item { font-size: 12px; }

  /* Cards */
  .card { padding: 16px; }
  .card-icon { width: 44px; height: 44px; margin-bottom: 12px; }
  .card-icon i { font-size: 18px; }

  /* Stats */
  .stats-grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 11px; }

  /* Process step compact */
  .process-step { padding: 14px; gap: 12px; }
  .step-num { width: 36px; height: 36px; font-size: 13px; }
  .step-content h4 { font-size: 14px; }
  .step-content p  { font-size: 13px; }

  /* Pricing */
  .pricing-card { padding: 20px 16px; }
  .pricing-price { font-size: 34px; }

  /* Buttons */
  .btn-lg { padding: 14px 18px; font-size: 14px; }
  .btn-sm { padding: 8px 14px; font-size: 12px; }

  /* CTA */
  .cta-section { padding: 44px 0; }
  .cta-actions .btn { max-width: 100%; }

  /* FAQ */
  .faq-q { padding: 13px 14px; font-size: 13px; gap: 10px; }
  .faq-a.open { padding: 4px 14px 16px; }
  .faq-a p { font-size: 13px; }

  /* Footer */
  .footer-tel { font-size: 17px; }
  .site-footer { padding: 48px 0 0; }

  /* Hero image badge */
  .hero-img-badge { padding: 8px 12px; gap: 8px; }
  .hero-img-badge i { font-size: 13px; }
  .hero-img-badge strong { font-size: 12px; }
  .hero-img-badge span { font-size: 10px; }

  /* Breadcrumb */
  .breadcrumb { margin-bottom: 12px; }

  /* Section label */
  .section-label { font-size: 11px; }

  /* Service card */
  .service-card-body { padding: 18px !important; }
  .service-card h3 { font-size: 15px; }
  .service-card p  { font-size: 12px; }

  /* Location card */
  .location-card { padding: 12px 14px; }
  .location-name { font-size: 13px; }

  /* Back to top */
  .back-to-top { width: 40px; height: 40px; bottom: 16px; right: 16px; font-size: 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Tiny 360px
════════════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .logo-name  { font-size: 12px; }
  .header-phone { font-size: 12px; padding: 7px 10px; }
  .page-hero h1 { font-size: 18px; }
  .section { padding: 32px 0; }
  .section-sm { padding: 24px 0; }
  .btn-lg { font-size: 13px; padding: 13px 14px; }
  .pricing-price { font-size: 30px; }
}

/* ═══════════════════════════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
  z-index: 900;
  text-decoration: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--accent-2); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════════════════
   EMERGENCY BAR — responsive show/hide
════════════════════════════════════════════════════════════════ */
.emergency-short { display: none; }
@media (max-width: 640px) {
  .emergency-full  { display: none; }
  .emergency-short { display: inline; }
  .emergency-bar p { font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   HEADER — account for emergency bar height
════════════════════════════════════════════════════════════════ */
.emergency-bar ~ .site-header {
  top: 0; /* header is fixed, bar scrolls away naturally */
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE NAV — smooth slide open
════════════════════════════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  background: var(--primary-2);
  padding: 16px 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.40);
  z-index: 999;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-nav.open { display: block; }

/* Hamburger → X animation */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   SCHEMA / HIDDEN
════════════════════════════════════════════════════════════════ */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal;
}

/* ═══════════════════════════════════════════════════════════════
   PRINT — hide nav, CTAs, back-to-top
════════════════════════════════════════════════════════════════ */
@media print {
  .site-header, .mobile-nav, .back-to-top, .emergency-bar,
  .cta-section, .trust-bar, .header-cta { display: none !important; }
  body { padding-top: 0; }
}
