/*
Theme Name: Viet Auto Collision
Theme URI: https://rank4sure.com
Author: Mehmood Gujjar Kasana
Author URI: https://rank4sure.com
Description: Professional custom WordPress theme for Viet Auto Collision - Auto Body Shop in Garden Grove, CA. Built for performance, SEO, and local business visibility.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
License URI: https://rank4sure.com
Text Domain: viet-auto-collision
Tags: auto-body, collision-repair, local-business, responsive
*/

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Colors — vietautocollision.com scheme */
  --color-navy:       #1a1a2e;
  --color-navy-dark:  #0f0f1a;
  --color-navy-mid:   #16213e;
  --color-charcoal:   #2d2d2d;
  --color-steel:      #6b7280;
  --color-red:        #cc0000;
  --color-red-dark:   #aa0000;
  --color-red-light:  #e60000;
  --color-white:      #ffffff;
  --color-off-white:  #f8f8f8;
  --color-light-gray: #eeeeee;
  --color-mid-gray:   #999999;
  --color-text:       #222222;
  --color-text-light: #666666;
  --color-border:     #dddddd;
  --color-overlay:    rgba(0, 0, 0, 0.72);

  /* Typography */
  --font-heading: 'Roboto', sans-serif;
  --font-body:    'Roboto', sans-serif;
  --font-size-xs:   0.75rem;
  --font-size-sm:   0.875rem;
  --font-size-base: 1rem;
  --font-size-md:   1.125rem;
  --font-size-lg:   1.25rem;
  --font-size-xl:   1.5rem;
  --font-size-2xl:  1.875rem;
  --font-size-3xl:  2.25rem;
  --font-size-4xl:  3rem;
  --font-size-5xl:  3.75rem;
  --font-size-6xl:  4.5rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --header-height: 80px;
  --header-height-scroll: 64px;

  /* Effects */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.08);
  --shadow-lg:  0 10px 30px rgba(0,0,0,0.20), 0 4px 8px rgba(0,0,0,0.10);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.25);
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   CSS RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-red);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--color-red-dark); }

ul, ol { list-style: none; }

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mt-auto { margin-top: auto; }
.mb-0    { margin-bottom: 0; }

.hidden { display: none !important; }

/* Section padding */
.section {
  padding: var(--space-16) 0;
}

.section--sm {
  padding: var(--space-10) 0;
}

.section--lg {
  padding: var(--space-20) 0;
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: var(--space-3);
  position: relative;
  padding: 0 var(--space-6);
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--color-red);
}

.section-eyebrow::before { right: 100%; margin-right: -var(--space-3); }
.section-eyebrow::after  { left: 100%; margin-left: -var(--space-3); }

.section-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.section-title--white { color: var(--color-white); }

.section-subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-subtitle--white { color: rgba(255,255,255,0.8); }

/* Divider line */
.divider {
  width: 60px;
  height: 4px;
  background: var(--color-red);
  margin: var(--space-4) auto;
  border-radius: var(--radius-full);
}

.divider--left { margin-left: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s ease;
}

.btn:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
  border: 2px solid var(--color-red);
}

.btn--primary:hover {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn--secondary:hover {
  background: var(--color-white);
  color: var(--color-navy);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-red);
  border: 2px solid var(--color-red);
}

.btn--outline:hover {
  background: var(--color-red);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--color-navy);
  color: var(--color-white);
  border: 2px solid var(--color-navy);
}

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

.btn--lg {
  padding: 18px 42px;
  font-size: var(--font-size-base);
}

.btn--sm {
  padding: 10px 22px;
  font-size: var(--font-size-xs);
}

/* ============================================================
   LOADING SPINNER
   ============================================================ */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.loader-logo span { color: var(--color-red); }

.spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--color-red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#site-header {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 100;
  background: #091929;
  transition: all var(--transition);
}

#site-header.scrolled {
  background: #091929;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

#site-header.scrolled .header-inner {
  height: var(--header-height-scroll);
}

/* Top bar */
.header-topbar {
  background: var(--color-red);
  padding: var(--space-2) 0;
  font-size: var(--font-size-xs);
  color: var(--color-white);
}

.header-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.topbar-info a {
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.topbar-info a:hover { color: rgba(255,255,255,0.8); }

.topbar-social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.topbar-social a {
  color: var(--color-white);
  opacity: 0.85;
  transition: opacity var(--transition);
}

.topbar-social a:hover { opacity: 1; }

/* Header inner */
.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  transition: height var(--transition);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--color-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
}

.logo-text-main {
  display: block;
  font-size: var(--font-size-lg);
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.logo-text-sub {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--color-mid-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Primary navigation */
.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.primary-nav a {
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.03em;
  position: relative;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--space-3);
  right: var(--space-3);
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.primary-nav a:hover,
.primary-nav a.current-page {
  color: var(--color-white);
}

.primary-nav a:hover::after,
.primary-nav a.current-page::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-item .nav-dropdown {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-navy-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--space-2) 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-xl);
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.8);
  border-radius: 0;
}

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

.nav-dropdown a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--color-white);
  padding-left: var(--space-8);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: var(--space-2);
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 85vw);
  background: var(--color-navy-dark);
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
  padding: var(--space-24) var(--space-8) var(--space-8);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--font-size-xl);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-8);
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  display: block;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}

.mobile-nav-links a:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.05);
  border-left-color: var(--color-red);
  padding-left: var(--space-6);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 15, 24, 0.88) 0%,
    rgba(13, 27, 42, 0.75) 50%,
    rgba(22, 32, 50, 0.60) 100%
  );
}

.hero-overlay-stripe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: var(--color-red);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: var(--space-24);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
}

.hero-image-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-col .hero-main-img {
  width: 100%;
  max-width: 520px;
  height: 440px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}

.hero-img-frame {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80%;
  height: 80%;
  border: 3px solid var(--color-red);
  border-radius: 16px;
  z-index: 0;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-image-col { display: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.4);
  color: var(--color-red-light);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  animation: fadeInDown 0.8s ease both;
}

.hero-badge svg {
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-title .highlight {
  color: var(--color-red-light);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: var(--space-10);
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
  animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-stats {
  display: flex;
  gap: var(--space-10);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.hero-stat-number span {
  color: var(--color-red-light);
}

.hero-stat-label {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.5);
  font-size: var(--font-size-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius-full);
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(192, 57, 43, 0.2);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(192, 57, 43, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  transition: all var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--color-red);
}

.service-card:hover .service-card-icon svg {
  color: var(--color-white);
}

.service-card-icon svg {
  color: var(--color-red);
  transition: color var(--transition);
}

.service-card-body {
  padding: var(--space-8);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.service-card-text {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap var(--transition);
}

.service-card-link:hover {
  gap: var(--space-3);
  color: var(--color-red-dark);
}

.service-card-image {
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.06);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  background: linear-gradient(135deg, #0d2137 0%, #0f3050 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.06);
  pointer-events: none;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.why-us-content .section-title { color: var(--color-white); }

.why-us-content .section-subtitle {
  color: rgba(255,255,255,0.7);
  text-align: left;
  margin: 0 0 var(--space-10);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.why-feature {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-red-light);
  transition: all var(--transition);
}

.why-feature:hover .why-feature-icon {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}

.why-feature-text h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.why-feature-text p {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.why-us-image {
  position: relative;
}

.why-us-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-us-image-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.why-us-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-red);
  color: var(--color-white);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.why-us-badge-number {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: 900;
  line-height: 1;
  display: block;
}

.why-us-badge-text {
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-bar {
  background: #ffffff;
  padding: var(--space-10) 0;
  border-top: 3px solid var(--color-navy);
  border-bottom: 1px solid var(--color-border);
}

.trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
}

.trust-badge-icon {
  width: 50px;
  height: 50px;
  background: var(--color-navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}

.trust-badge-text strong {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-navy);
}

.trust-badge-text span {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: var(--space-3);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--color-navy);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-zoom {
  width: 50px;
  height: 50px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  transform: scale(0.7);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-zoom {
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 20px;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { right: calc(100% + 20px); }
.lightbox-next { left: calc(100% + 20px); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: #f0f4f8;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  position: relative;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-6);
  right: var(--space-8);
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--color-red);
  opacity: 0.12;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
  color: #f59e0b;
}

.testimonial-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-white);
  font-size: var(--font-size-sm);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--font-size-sm);
  color: var(--color-navy);
}

.testimonial-location {
  font-size: var(--font-size-xs);
  color: var(--color-mid-gray);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  margin-top: var(--space-10);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.google-badge-rating {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--font-size-2xl);
  color: var(--color-navy);
}

.google-badge-info {
  font-size: var(--font-size-sm);
}

.google-badge-stars {
  color: #f59e0b;
  display: block;
}

.google-badge-count {
  color: var(--color-text-light);
  font-size: var(--font-size-xs);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::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.04'%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");
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.cta-subtitle {
  font-size: var(--font-size-md);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-10);
  align-items: start;
}

.contact-info-card {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-10);
  border-radius: var(--radius-lg);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 800;
  margin-bottom: var(--space-2);
}

.contact-info-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-8);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.contact-detail {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(192, 57, 43, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red-light);
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-1);
  font-weight: 600;
}

.contact-detail-value {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.contact-detail-value a {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.contact-detail-value a:hover { color: var(--color-red-light); }

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size-sm);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hours-row:last-child { border-bottom: none; }
.hours-day { color: rgba(255,255,255,0.6); }
.hours-time { color: rgba(255,255,255,0.9); font-weight: 600; }
.hours-closed { color: var(--color-mid-gray); }

/* Contact form */
.contact-form-wrapper {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.contact-form-subtitle {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-8);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.form-label .required { color: var(--color-red); }

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
-webkit-appearance: none;
appearance: none;}

.form-control:focus {
  outline: none;
  border-color: var(--color-red);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-control::placeholder {
  color: var(--color-mid-gray);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-notice {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  margin-top: var(--space-4);
}

.form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.form-error {
  display: none;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
}

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-12);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
  background: var(--color-white);
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-6) var(--space-8);
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-navy);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transition: all var(--transition);
}

.faq-question:hover { color: var(--color-red); }

.faq-item.open .faq-question { color: var(--color-red); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-light);
}

.faq-item.open .faq-icon {
  background: var(--color-red);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 var(--space-8) var(--space-6);
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  line-height: 1.8;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-5);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: var(--color-navy);
  padding: calc(var(--header-height) + var(--space-20)) 0 var(--space-20);
  position: relative;
  overflow: hidden;
}

.about-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'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%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");
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.about-hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: var(--font-size-md);
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.breadcrumb a {
  font-size: var(--font-size-xs);
  font-family: var(--font-heading);
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.breadcrumb a:hover { color: rgba(255,255,255,0.9); }

.breadcrumb-sep {
  color: rgba(255,255,255,0.3);
  font-size: var(--font-size-xs);
}

.breadcrumb-current {
  font-size: var(--font-size-xs);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-red-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-story-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.about-story-text .section-title {
  text-align: left;
}

.about-story-text .divider {
  margin-left: 0;
}

.about-story-text p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.about-values {
  background: var(--color-off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(192, 57, 43, 0.2);
  transform: translateY(-4px);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(192, 57, 43, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  color: var(--color-red);
  transition: all var(--transition);
}

.value-card:hover .value-icon {
  background: var(--color-red);
  color: var(--color-white);
}

.value-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.value-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-card-image {
  height: 260px;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-card-image img {
  transform: scale(1.05);
}

.team-card-body {
  padding: var(--space-6);
}

.team-name {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-1);
}

.team-role {
  font-size: var(--font-size-sm);
  color: var(--color-red);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.team-bio {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-hero {
  background: var(--color-navy);
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
}

.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-10);
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-6));
}

.sidebar-nav {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-6);
}

.sidebar-nav-title {
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 700;
  padding: var(--space-4) var(--space-6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sidebar-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition);
  font-family: var(--font-heading);
}

.sidebar-nav-links a:last-child { border-bottom: none; }

.sidebar-nav-links a:hover,
.sidebar-nav-links a.active {
  background: rgba(192, 57, 43, 0.04);
  color: var(--color-red);
  padding-left: var(--space-8);
}

.sidebar-cta-card {
  background: var(--color-red);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
}

.sidebar-cta-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 800;
  margin-bottom: var(--space-3);
}

.sidebar-cta-text {
  font-size: var(--font-size-sm);
  opacity: 0.9;
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.sidebar-cta-phone {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 900;
  color: var(--color-white);
  display: block;
  margin-bottom: var(--space-4);
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: var(--space-6);
}

.blog-category {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: var(--space-3);
}

.blog-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
  margin-bottom: var(--space-3);
}

.blog-title a {
  color: inherit;
  transition: color var(--transition);
}

.blog-title a:hover { color: var(--color-red); }

.blog-excerpt {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--font-size-xs);
  color: var(--color-mid-gray);
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.75);
}

.footer-main {
  padding: var(--space-24) 0 var(--space-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: var(--space-12);
}

.footer-brand .site-logo {
  margin-bottom: var(--space-5);
}

.footer-tagline {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-red);
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-links a::before {
  content: '›';
  color: var(--color-red);
  font-size: 18px;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--color-white);
  gap: var(--space-3);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
}

.footer-contact-icon {
  color: var(--color-red-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

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

.footer-hours-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-3);
  margin-top: var(--space-4);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-6) 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-links a {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */

/* Floating call/whatsapp buttons */
.floating-actions {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  z-index: 500;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--color-white);
}

.float-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  color: var(--color-white);
}

.float-btn--call { background: var(--color-red); }
.float-btn--whatsapp { background: #25D366; }

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: var(--space-6);
  left: var(--space-6);
  width: 44px;
  height: 44px;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 500;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: var(--color-red);
  transform: translateY(-3px);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.85);
  padding: var(--space-5) var(--space-8);
  z-index: 9998;
  border-top: 3px solid var(--color-red);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

#cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  max-width: var(--container-max);
  margin: 0 auto;
}

.cookie-text {
  font-size: var(--font-size-sm);
  flex: 1;
}

.cookie-text a {
  color: var(--color-red-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #1a2332 0%, #243447 100%);
  padding: var(--space-16) 0 var(--space-12);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-red);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.page-hero-subtitle {
  font-size: var(--font-size-md);
  color: rgba(255,255,255,0.7);
  max-width: 580px;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-404-page {
  min-height: 100vh;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-8);
}

.error-404-number {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: var(--space-6);
}

.error-404-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.error-404-text {
  color: rgba(255,255,255,0.65);
  font-size: var(--font-size-md);
  margin-bottom: var(--space-10);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-image { display: none; }

  .about-story-grid { grid-template-columns: 1fr; }
  .about-story-images { display: none; }

  .service-content-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
    order: -1;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .container { padding: 0 var(--space-4); }

  .section { padding: var(--space-16) 0; }
  .section--lg { padding: var(--space-20) 0; }

  .primary-nav { display: none; }
  .header-cta .btn { display: none; }
  .header-cta .btn:last-child { display: inline-flex; }
  .hamburger { display: flex; }

  .topbar-info span:first-child { display: none; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-stats {
    gap: var(--space-6);
  }

  .section-title { font-size: var(--font-size-2xl); }

  .services-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

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

  .trust-grid { gap: var(--space-6); }

  .why-features { gap: var(--space-4); }

  .contact-form-wrapper { padding: var(--space-6); }
  .contact-info-card { padding: var(--space-6); }

  .cta-actions { flex-direction: column; align-items: center; }

  .cookie-inner { flex-direction: column; }

  .floating-actions {
    bottom: var(--space-4);
    right: var(--space-4);
  }

  .lightbox-nav { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: var(--space-4); }
  .hero-stat { display: flex; align-items: center; gap: var(--space-3); }
  .hero-stat-number { font-size: var(--font-size-2xl); }

  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  #site-header,
  .floating-actions,
  #cookie-banner,
  #page-loader,
  #back-to-top { display: none; }

  body { font-size: 12pt; }
  a[href]::after { content: " (" attr(href) ")"; }
}
/* ============================================================
   BLOG PAGE EXTRA STYLES
   ============================================================ */

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-red);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    transition: gap var(--transition-fast);
}
.blog-read-more:hover { gap: 8px; }

.blog-meta-date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

.blog-card-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    min-height: 200px;
}
.blog-placeholder-img {
    color: var(--color-text-light);
    opacity: 0.4;
}

/* Empty state */
.blog-empty {
    text-align: center;
    padding: var(--space-16) var(--space-8);
}
.blog-empty-icon {
    color: var(--color-text-light);
    opacity: 0.3;
    margin-bottom: var(--space-6);
}
.blog-empty-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-3);
}
.blog-empty-text {
    color: var(--color-text-light);
    max-width: 480px;
    margin: 0 auto var(--space-8);
}

/* Topics */
.topics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: var(--space-8);
}
.topic-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    color: var(--color-text-dark);
    font-size: var(--font-size-sm);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-fast);
}
.topic-tag:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    color: #fff;
}
.topic-count {
    background: var(--color-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50px;
    min-width: 20px;
    text-align: center;
}
.topic-tag:hover .topic-count {
    background: rgba(255,255,255,0.3);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-12);
    flex-wrap: wrap;
}
.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: all var(--transition-fast);
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: var(--color-red);
    border-color: var(--color-red);
    color: #fff;
}
.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
    width: auto;
    padding: 0 16px;
}

/* ============================================================
   LEGAL PAGES STYLES
   ============================================================ */
.legal-content h2 {
  scroll-margin-top: 2rem;
}

.legal-content ul li::marker,
.legal-content ol li::marker {
  color: var(--color-red);
}

/* ============================================================
   HERO SPLIT LAYOUT FIX
   ============================================================ */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr !important;
    padding-top: calc(var(--header-height) + 40px);
  }
  .hero-image-col {
    display: none !important;
  }
}

/* ============================================================
   PAGE HERO - make top padding work for non-sticky header
   ============================================================ */
.page-hero {
  padding-top: var(--space-20) !important;
}

.about-hero {
  padding-top: var(--space-20) !important;
}

.service-hero {
  padding-top: var(--space-20) !important;
}

/* ============================================================
   IMPROVED MOBILE NAVIGATION
   ============================================================ */
@media (max-width: 768px) {
  .hero-content {
    padding-top: calc(var(--header-height) + 30px) !important;
    padding-bottom: var(--space-16);
  }

  .topbar-info {
    gap: var(--space-3);
  }

  .topbar-info > span {
    display: none;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
  }

  .hero-badge {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .topbar-info > a:last-child {
    display: none;
  }
}

/* ============================================================
   HEADER TOPBAR IMPROVEMENTS
   ============================================================ */
.topbar-info span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 500;
  font-size: var(--font-size-xs);
}

/* ============================================================
   SECTION BACKGROUND ALTERNATION FOR LIGHT THEME
   ============================================================ */
.section:nth-of-type(even) {
  background-color: #ffffff;
}

/* Trust bar on white bg */
.trust-badge-text strong {
  color: var(--color-navy);
}

/* ============================================================
   SINGLE SERVICE PAGE - sidebar top offset for non-sticky
   ============================================================ */
.service-sidebar {
  top: var(--space-6) !important;
}

/* ============================================================
   IMPROVE FOOTER LINKS WRAPPING ON MOBILE
   ============================================================ */
@media (max-width: 480px) {
  .footer-bottom-links {
    gap: var(--space-2);
  }
  .footer-bottom-links a {
    font-size: 0.65rem;
  }
}
/* ============================================================
   STEP 1: HERO SECTION — COMPLETE REDESIGN
   Modern, premium, world-class hero with advanced UI/UX
   ============================================================ */

/* Override hero base */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #060d18;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  animation: heroZoom 14s ease-in-out infinite alternate;
  filter: brightness(0.55) saturate(0.8);
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.16); }
}

/* Multi-layer overlay for premium depth */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(4, 10, 22, 0.95) 0%,
    rgba(8, 20, 40, 0.80) 45%,
    rgba(10, 20, 38, 0.50) 100%
  );
  z-index: 1;
}

/* Diagonal accent stripe — more polished */
.hero-overlay-stripe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
  z-index: 2;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
}

/* Noise texture overlay for premium feel */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
}

/* Radial light glow on left */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -5%;
  width: 55%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(220,38,38,0.08) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: var(--space-32);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-20);
  align-items: center;
}

/* ---- Hero Text Column ---- */
.hero-text-col {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.35);
  color: #f87171;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-7);
  width: fit-content;
  animation: fadeInDown 0.9s ease both;
  backdrop-filter: blur(6px);
}

.hero-badge svg {
  flex-shrink: 0;
  animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25) rotate(10deg); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.03;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-7);
  max-width: 640px;
  animation: fadeInUp 0.9s ease 0.15s both;
}

.hero-title .highlight {
  color: #ef4444;
  display: block;
  position: relative;
  padding-bottom: 4px;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #dc2626, #ef4444, transparent);
  border-radius: 2px;
  animation: lineReveal 1.2s ease 0.8s both;
  transform-origin: left;
}

@keyframes lineReveal {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: var(--space-10);
  animation: fadeInUp 0.9s ease 0.3s both;
  font-weight: 400;
}

/* CTA Buttons */
.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-14);
  animation: fadeInUp 0.9s ease 0.45s both;
}

.hero-actions .btn--primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border: none;
  padding: 16px 38px;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.45);
  border-radius: 6px;
}

.hero-actions .btn--primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.6);
  transform: translateY(-3px);
  color: var(--color-white);
}

.hero-actions .btn--secondary {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 16px 36px;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border-radius: 6px;
  color: white;
}

.hero-actions .btn--secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-3px);
  color: white;
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s both;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  text-align: left;
  position: relative;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: calc(-1 * var(--space-4));
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.hero-stat-number span {
  color: #ef4444;
  font-size: 1.4rem;
}

.hero-stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ---- Hero Image Column ---- */
.hero-image-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1s ease 0.4s both;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-img-frame {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 85%;
  height: 88%;
  border: 2px solid rgba(220, 38, 38, 0.45);
  border-radius: 20px;
  z-index: 0;
  animation: framePulse 3s ease-in-out infinite alternate;
}

@keyframes framePulse {
  from { opacity: 0.4; transform: translate(0,0); }
  to   { opacity: 0.7; transform: translate(-3px, 3px); }
}

.hero-image-col .hero-main-img {
  width: 100%;
  max-width: 520px;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
  filter: brightness(0.92) contrast(1.05);
}

/* Floating rating card — now better positioned */
.hero-image-col > div[style*="position:absolute"] {
  animation: floatCard 4s ease-in-out infinite alternate !important;
  border-radius: 14px !important;
  backdrop-filter: blur(10px) !important;
}

@keyframes floatCard {
  from { transform: translateY(0) rotate(-1deg); }
  to   { transform: translateY(-8px) rotate(1deg); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-12);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: heroScrollBounce 2.5s ease-in-out infinite;
  z-index: 4;
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(-10px); opacity: 0.7; }
}

/* ============================================================
   STEP 2: TRUST BAR — PREMIUM REDESIGN
   ============================================================ */
.trust-bar {
  background: var(--color-white);
  padding: var(--space-8) 0;
  border-top: none;
  border-bottom: 1px solid var(--color-light-gray);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
  z-index: 10;
}

.trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  padding: var(--space-4) var(--space-8);
  border-right: 1px solid var(--color-light-gray);
  transition: background var(--transition);
}

.trust-badge:last-child {
  border-right: none;
}

.trust-badge:hover {
  background: #f8fafc;
}

.trust-badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0d2137, #1a3049);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13, 33, 55, 0.25);
}

.trust-badge-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
}

.trust-badge-text span {
  font-size: 0.7rem;
  color: var(--color-text-light);
}

/* ============================================================
   STEP 3: SERVICES GRID — IMPROVED
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.06);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-color: rgba(220, 38, 38, 0.15);
}

.service-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

/* ============================================================
   STEP 4: WHY US — IMPROVED
   ============================================================ */
.why-us {
  background: linear-gradient(135deg, #09192e 0%, #0f2844 50%, #0a1e35 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.02) 0%, transparent 70%);
  pointer-events: none;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ============================================================
   STEP 5: GALLERY — IMPROVED
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: var(--color-navy);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,33,55,0.7), rgba(220,38,38,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-zoom {
  width: 52px;
  height: 52px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  transform: scale(0.6) rotate(-10deg);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-zoom {
  transform: scale(1) rotate(0deg);
}

/* ============================================================
   STEP 6: TESTIMONIALS — IMPROVED
   ============================================================ */
.testimonials {
  background: linear-gradient(180deg, #f0f4f8 0%, #e8edf4 100%);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: var(--space-8);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-5);
  right: var(--space-7);
  font-size: 100px;
  font-family: Georgia, serif;
  color: var(--color-red);
  opacity: 0.07;
  line-height: 1;
}

.testimonial-text {
  font-size: var(--font-size-sm);
  color: #4a5568;
  line-height: 1.85;
  margin-bottom: var(--space-6);
  font-style: italic;
  flex: 1;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy), #1a3049);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-white);
  font-size: var(--font-size-sm);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13,33,55,0.3);
}

/* Google badge */
.google-badge {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: var(--space-5) var(--space-8);
  width: fit-content;
  margin: var(--space-10) auto 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  flex-wrap: wrap;
  justify-content: center;
}

.google-badge-rating {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--font-size-2xl);
  color: var(--color-navy);
  line-height: 1;
}

/* ============================================================
   STEP 7: CTA SECTION — IMPROVED
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 40%, #ef4444 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::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.05'%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");
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: var(--space-5);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-10);
  line-height: 1.7;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn {
  border-radius: 8px;
  padding: 17px 42px;
}

/* ============================================================
   STEP 8: CONTACT STRIP — IMPROVED
   ============================================================ */
.contact-strip-section {
  background: var(--color-off-white);
  padding: var(--space-16) 0;
}

/* ============================================================
   STEP 9: SECTION HEADERS — IMPROVED
   ============================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: var(--space-3);
  padding: 0 var(--space-4);
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-red);
  flex-shrink: 0;
}

/* Divider improvement */
.divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red), #f87171);
  margin: var(--space-4) auto;
  border-radius: var(--radius-full);
}

.divider--left { margin-left: 0; }

/* ============================================================
   STEP 10: HEADER — STICKY IMPROVEMENT
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #091929;
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

#site-header.scrolled {
  background: rgba(9, 25, 41, 0.97);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}

/* ============================================================
   STEP 11: BUTTON IMPROVEMENTS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s ease;
}

.btn:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.btn--primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: var(--color-white);
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220, 38, 38, 0.45);
}

/* ============================================================
   STEP 12: FULL MOBILE RESPONSIVENESS
   ============================================================ */

/* ---- Large Desktop (1400px+) ---- */
@media (min-width: 1400px) {
  .hero-title {
    font-size: 5.5rem;
  }
  .hero-content {
    gap: var(--space-24);
  }
}

/* ---- Desktop (1025px - 1200px) ---- */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr 0.85fr;
    gap: var(--space-14);
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-badge {
    padding: var(--space-3) var(--space-5);
  }
}

/* ---- Tablet landscape (901px - 1024px) ---- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: var(--space-20);
  }
  .hero-image-col {
    display: none;
  }
  .hero-title {
    font-size: clamp(2.4rem, 7vw, 4rem);
    max-width: 100%;
  }
  .hero-subtitle { max-width: 100%; }
  .hero-stats { gap: var(--space-6); }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .why-us-image { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .about-story-grid { grid-template-columns: 1fr; }
  .about-story-images { display: none; }

  .service-content-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; order: -1; }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    height: auto;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---- Tablet portrait (601px - 900px) ---- */
@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: var(--space-20);
  }
  .hero-image-col { display: none; }

  .hero-title {
    font-size: clamp(2.2rem, 6.5vw, 3.6rem);
  }

  .hero-stats {
    gap: var(--space-5);
  }

  .trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .trust-badge {
    border-right: 1px solid var(--color-light-gray);
    border-bottom: 1px solid var(--color-light-gray);
    padding: var(--space-4);
    justify-content: center;
  }
  .trust-badge:nth-child(even) { border-right: none; }
  .trust-badge:nth-child(n+4) { border-bottom: none; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Mobile (max 768px) ---- */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .container { padding: 0 var(--space-4); }
  .section { padding: var(--space-14) 0; }
  .section--lg { padding: var(--space-16) 0; }
  .section--sm { padding: var(--space-10) 0; }

  /* Header */
  .primary-nav { display: none; }
  .header-cta .btn:not(:last-child):not(.hamburger) { display: none; }
  .hamburger { display: flex; }
  .topbar-info span:first-child { display: none; }

  /* Hero */
  .hero-content {
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: var(--space-16);
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-10);
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
  }
  .hero-stats {
    gap: var(--space-5);
    flex-wrap: wrap;
  }
  .hero-scroll { display: none; }

  /* Trust bar */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-badge {
    padding: var(--space-3);
    gap: var(--space-2);
  }
  .trust-badge-icon {
    width: 38px;
    height: 38px;
  }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .section-title { font-size: var(--font-size-2xl); }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .google-badge {
    padding: var(--space-4);
    gap: var(--space-3);
  }

  /* CTA */
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .footer-main { padding: var(--space-16) 0 var(--space-10); }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: var(--space-6); }
  .contact-info-card { padding: var(--space-6); }

  /* Why features */
  .why-features { gap: var(--space-4); }

  /* Cookie */
  .cookie-inner { flex-direction: column; gap: var(--space-4); }

  /* Floating buttons */
  .floating-actions {
    bottom: var(--space-4);
    right: var(--space-4);
  }

  .lightbox-nav { display: none; }

  /* Contact strip */
  .contact-strip-section [style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* ---- Small Mobile (max 480px) ---- */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }
  .hero-badge {
    font-size: 0.62rem;
    padding: 6px 14px;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
  .hero-stat:not(:last-child)::after { display: none; }
  .hero-stat-number { font-size: 2rem; }

  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-badge {
    border-right: none;
    border-bottom: 1px solid var(--color-light-gray);
    justify-content: flex-start;
    padding: var(--space-3) var(--space-4);
  }
  .trust-badge:last-child { border-bottom: none; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { height: 200px; }
  .gallery-item:nth-child(1) {
    grid-column: span 1;
    height: 220px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .btn--lg {
    padding: 15px 28px;
    font-size: 0.82rem;
  }

  .google-badge {
    flex-direction: column;
    text-align: center;
  }

  .testimonials-grid { grid-template-columns: 1fr; }

  .topbar-info { gap: var(--space-3); }
  .topbar-info a:nth-child(2) { display: none; }

  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ---- Extra Small (max 360px) ---- */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.65rem;
  }
  .container { padding: 0 var(--space-3); }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stat-number { font-size: 1.8rem; }
}

/* ============================================================
   STEP 13: ADDITIONAL POLISH
   ============================================================ */

/* Section header consistency */
.section-header {
  text-align: center;
  margin-bottom: var(--space-14);
}

/* Smooth focus for accessibility */
:focus-visible {
  outline: 2px solid #ef4444;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Better service card on mobile */
@media (max-width: 768px) {
  .service-card-image { height: 180px; }
  .service-card-body { padding: var(--space-6); }
}

/* Why features mobile fix */
@media (max-width: 768px) {
  .why-feature {
    gap: var(--space-3);
  }
  .why-feature-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }
}

/* Contact info strip responsive */
@media (max-width: 768px) {
  .contact-strip-section .container > div {
    grid-template-columns: 1fr 1fr !important;
    gap: var(--space-6) !important;
  }
}

@media (max-width: 480px) {
  .contact-strip-section .container > div {
    grid-template-columns: 1fr !important;
  }
}

/* Footer grid tablet fix */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Image performance */
img {
  content-visibility: auto;
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg img { animation: none !important; }
  .hero-badge svg { animation: none !important; }
}

/* ============================================================
   STEP 14: HEADER CTA MOBILE FIX
   ============================================================ */
@media (max-width: 768px) {
  .header-cta {
    gap: var(--space-2);
  }
  .header-cta .btn--secondary {
    display: none;
  }
  .hamburger {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .header-cta .btn--primary {
    display: none;
  }
}

/* ============================================================
   STEP 15: TOPBAR RESPONSIVE FIX
   ============================================================ */
@media (max-width: 768px) {
  .header-topbar {
    display: none;
  }
}

/* ============================================================
   STEP 16: SECTION EYEBROW CENTERING FIX
   ============================================================ */
.section-header .section-eyebrow {
  display: inline-flex;
  align-items: center;
}

.section-header .section-eyebrow::before,
.section-header .section-eyebrow::after {
  content: '';
  width: 28px;
  height: 2px;
  background: currentColor;
}

/* ============================================================
   STEP 17: SERVICES RESPONSIVE (3→2→1)
   ============================================================ */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HERO FLOAT CARD — NEW ELEMENT
   ============================================================ */
.hero-float-card {
  position: absolute;
  bottom: -16px;
  left: -20px;
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite alternate;
}

.hero-float-card-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(9, 25, 41, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  color: white;
  min-width: 220px;
}

.hero-float-card-rating {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.hero-float-card-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@keyframes floatCard {
  0%   { transform: translateY(0) rotate(-0.5deg); }
  100% { transform: translateY(-10px) rotate(0.5deg); }
}

/* ============================================================
   TRANSITION-FAST (missing var fix)
   ============================================================ */
:root {
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   SERVICE CARD IMAGE HEIGHT FIX FOR 3-COLUMN
   ============================================================ */
@media (min-width: 901px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   GALLERY GRID HEIGHT FIX
   ============================================================ */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(3, 200px) !important;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 2 !important;
    grid-row: span 1 !important;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  .gallery-item {
    height: 200px;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 1 !important;
    height: 220px;
  }
}

/* ============================================================
   VIETAUTOCOLLISION.COM COLOR SCHEME OVERRIDES
   v6 — White header, Red topbar, Professional look
   ============================================================ */

/* ── Body & Base ── */
body {
  background: #ffffff;
  color: #222222;
}

/* ── TOPBAR — Red strip at very top ── */
.header-topbar {
  background: #cc0000;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 0;
  border-bottom: none;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.topbar-item svg { flex-shrink: 0; opacity: 0.85; }

.topbar-phone {
  font-weight: 700;
  font-size: 0.82rem;
  color: #ffffff !important;
  letter-spacing: 0.03em;
}

.topbar-phone:hover { color: rgba(255,255,255,0.8) !important; }
.topbar-item:hover  { color: rgba(255,255,255,0.8); }

/* ── MAIN HEADER — White background ── */
#site-header {
  background: #ffffff !important;
  border-bottom: 2px solid #cc0000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.14);
  background: #ffffff !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 72px;
}

/* ── LOGO — matches vietautocollision.com ── */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-emblem {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(204,0,0,0.3));
  transition: transform 0.3s ease;
}

.site-logo:hover .logo-emblem {
  transform: scale(1.06) rotate(-2deg);
}

/* Remove old logo-icon styles */
.logo-icon { display: none; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text-main {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #cc0000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-text-sub {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 600;
  color: #444444;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── PRIMARY NAV — Dark text on white ── */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.primary-nav a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  position: relative;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #cc0000;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 1px;
}

.primary-nav a:hover,
.primary-nav a.current-page {
  color: #cc0000;
  background: rgba(204,0,0,0.05);
}

.primary-nav a:hover::after,
.primary-nav a.current-page::after {
  transform: scaleX(1);
}

/* ── HEADER CTA BUTTONS ── */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-cta .btn--secondary {
  background: transparent;
  color: #cc0000;
  border: 2px solid #cc0000;
  font-size: 0.75rem;
  padding: 9px 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-cta .btn--secondary:hover {
  background: #cc0000;
  color: #ffffff;
}

.header-cta .btn--primary {
  background: #cc0000;
  color: #ffffff;
  border: 2px solid #cc0000;
  font-size: 0.75rem;
  padding: 9px 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 3px 12px rgba(204,0,0,0.35);
}

.header-cta .btn--primary:hover {
  background: #aa0000;
  border-color: #aa0000;
  color: #ffffff;
  box-shadow: 0 5px 18px rgba(204,0,0,0.45);
}

/* ── HAMBURGER — Dark on white ── */
.hamburger span {
  background: #333333 !important;
}

/* ── MOBILE NAV — White panel ── */
.mobile-nav {
  background: #ffffff;
  border-left: 4px solid #cc0000;
}

.mobile-nav-links a {
  color: #222222;
  border-bottom: 1px solid #eeeeee;
  font-weight: 600;
}

.mobile-nav-links a:hover {
  color: #cc0000;
  background: rgba(204,0,0,0.05);
  padding-left: 2rem;
}

.mobile-nav-close {
  color: #333333;
}

.mobile-nav-logo-text { color: #cc0000 !important; }

/* ── PAGE LOADER — Red ── */
#page-loader {
  background: #ffffff;
}

.loader-logo {
  color: #cc0000;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.loader-logo span { color: #222222; }

.spinner {
  border-color: #eeeeee;
  border-top-color: #cc0000;
}

/* ── HERO — Keep dark overlay on image ── */
.hero { background: #111111; }

.hero-bg img {
  filter: brightness(0.45) saturate(0.7);
}

.hero-overlay {
  background: linear-gradient(
    115deg,
    rgba(0,0,0,0.92) 0%,
    rgba(10,10,10,0.75) 45%,
    rgba(0,0,0,0.45) 100%
  );
}

.hero-overlay-stripe {
  background: linear-gradient(180deg, #cc0000 0%, #e60000 50%, #cc0000 100%);
  box-shadow: 0 0 20px rgba(204,0,0,0.6);
}

.hero::before {
  background: radial-gradient(ellipse at center, rgba(204,0,0,0.08) 0%, transparent 70%);
}

#site-header.at-hero-top {
  background: rgba(0,0,0,0.15) !important;
  border-bottom-color: rgba(204,0,0,0.4);
  box-shadow: none;
  backdrop-filter: blur(4px);
}

#site-header.at-hero-top .primary-nav a,
#site-header.at-hero-top .logo-text-main,
#site-header.at-hero-top .logo-text-sub {
  color: #ffffff;
}

#site-header.at-hero-top .primary-nav a:hover,
#site-header.at-hero-top .primary-nav a.current-page { color: #ff6666; }

#site-header.at-hero-top .header-cta .btn--secondary {
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}

#site-header.at-hero-top .header-cta .btn--secondary:hover {
  background: rgba(255,255,255,0.15);
}

#site-header.at-hero-top .hamburger span { background: #ffffff !important; }

/* ── TRUST BAR — White bg ── */
.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.trust-badge-icon {
  background: linear-gradient(135deg, #cc0000, #aa0000);
  box-shadow: 0 4px 12px rgba(204,0,0,0.25);
}

.trust-badge-text strong { color: #222222; }
.trust-badge-text span   { color: #666666; }

/* ── SECTION COLORS — Light theme ── */
.section { background: #ffffff; }
.section--alt { background: #f8f8f8; }

.why-us {
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #0f0f0f 100%) !important;
}

/* ── SERVICE CARDS ── */
.service-card { border-color: #eeeeee; }
.service-card:hover { border-color: rgba(204,0,0,0.2); }

/* ── SECTION EYEBROW ── */
.section-eyebrow { color: #cc0000; }
.section-eyebrow::before, .section-eyebrow::after { background: #cc0000; }

/* ── DIVIDER ── */
.divider {
  background: linear-gradient(90deg, #cc0000, #ff3333);
}

/* ── TESTIMONIALS ── */
.testimonials { background: linear-gradient(180deg, #f8f8f8 0%, #f0f0f0 100%); }
.testimonial-card::before { color: #cc0000; }

/* ── GOOGLE BADGE ── */
.google-badge { border-color: #dddddd; }
.google-badge-rating { color: #222222; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #aa0000 0%, #cc0000 40%, #e60000 100%) !important;
}

/* ── FOOTER ── */
.footer-main { background: #111111; }
.footer-bottom { background: #000000; }
.footer-heading { color: #cc0000; }

/* ── BUTTONS global ── */
.btn--primary {
  background: linear-gradient(135deg, #cc0000, #aa0000);
  box-shadow: 0 4px 16px rgba(204,0,0,0.3);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #e60000, #cc0000);
  box-shadow: 0 8px 28px rgba(204,0,0,0.45);
  color: #ffffff;
}

.btn--secondary {
  border-color: #cc0000;
  color: #cc0000;
}

.btn--secondary:hover {
  background: #cc0000;
  color: #ffffff;
}

/* CTA section special buttons */
.btn--cta-white {
  background: #ffffff;
  color: #cc0000;
  border: 2px solid #ffffff;
  font-weight: 800;
}

.btn--cta-white:hover {
  background: #f0f0f0;
  color: #aa0000;
  transform: translateY(-2px);
}

.btn--cta-ghost {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(4px);
}

.btn--cta-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
  color: #ffffff;
}

/* ── HERO BUTTONS ── */
.hero-actions .btn--primary {
  background: linear-gradient(135deg, #cc0000, #aa0000);
  box-shadow: 0 8px 32px rgba(204,0,0,0.5);
}

.hero-actions .btn--primary:hover {
  background: linear-gradient(135deg, #e60000, #cc0000);
  box-shadow: 0 12px 40px rgba(204,0,0,0.65);
}

/* ── CONTACT STRIP — full redesign ── */
.contact-strip {
  background: #ffffff;
  border-top: 4px solid #cc0000;
  border-bottom: 1px solid #eeeeee;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.contact-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #cc0000, #e60000, #cc0000);
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-strip-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-right: 2rem;
  border-right: 1px solid #eeeeee;
}

.contact-strip-icon {
  width: 52px;
  height: 52px;
  background: #cc0000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(204,0,0,0.3);
}

.contact-strip-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #222222;
  margin: 0 0 6px;
  line-height: 1.2;
}

.contact-strip-desc {
  font-size: 0.82rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.contact-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-left: 1rem;
}

.contact-strip-item-icon {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  flex-shrink: 0;
}

.contact-strip-item-icon--red {
  background: rgba(204,0,0,0.1);
  color: #cc0000;
}

.contact-strip-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  color: #cc0000;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.contact-strip-value {
  font-size: 0.85rem;
  color: #444444;
  line-height: 1.65;
  margin: 0 0 6px;
}

.contact-strip-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: #cc0000;
  text-decoration: none;
  line-height: 1.1;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.contact-strip-phone:hover { color: #aa0000; }

.contact-strip-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: #cc0000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.contact-strip-link:hover { color: #aa0000; }

/* Contact strip responsive */
@media (max-width: 1024px) {
  .contact-strip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
  .contact-strip-brand {
    grid-column: span 2;
    border-right: none;
    border-bottom: 1px solid #eeeeee;
    padding-right: 0;
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 640px) {
  .contact-strip-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-strip-brand { grid-column: span 1; }
  .contact-strip-item  { padding-left: 0; }
}

/* ── TOPBAR RESPONSIVE ── */
@media (max-width: 768px) {
  .header-topbar { display: none; }
}

/* ── HEADER HEIGHT ADJUSTMENT (no topbar = shorter) ── */
:root { --header-height: 72px; }

/* ── HERO adjusts for white header at-top class ── */
.hero-content {
  padding-top: calc(var(--header-height) + 70px);
}

/* ── CTA BADGE ── */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.95);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}

/* ── CTA TRUST ROW ── */
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 480px) {
  .cta-trust { gap: 1rem; }
  .cta-trust span { font-size: 0.68rem; }
  .topbar-hours { display: none; }
}

/* ── HERO STAT FIX — white numbers look good on dark bg ── */
.hero-stat-number { color: #ffffff; }
.hero-stat-label  { color: rgba(255,255,255,0.5); }

/* ── WHY-US features text ── */
.why-feature-title { color: #ffffff; }
.why-feature-text  { color: rgba(255,255,255,0.7); }

/* ── GALLERY item overlay ── */
.gallery-item-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(204,0,0,0.45));
}

/* ── BACK TO TOP ── */
.back-to-top {
  background: #cc0000;
  box-shadow: 0 4px 16px rgba(204,0,0,0.4);
}

.back-to-top:hover { background: #aa0000; }

/* ── FLOATING ACTION BUTTONS ── */
.fab-call { background: #cc0000; }
.fab-whatsapp { background: #25d366; }

/* ── SECTION TITLE COLOR ── */
.section-title { color: #222222; }
.section-subtitle { color: #555555; }

/* ── WHY-US section title (on dark bg) ── */
.why-us .section-title { color: #ffffff; }
.why-us .section-eyebrow { color: #ff6666; }
.why-us .section-eyebrow::before,
.why-us .section-eyebrow::after { background: #ff6666; }
.why-us .section-subtitle { color: rgba(255,255,255,0.65); }
.why-us .divider { background: linear-gradient(90deg, #cc0000, #ff4444); }

/* ── SERVICE CARD — red accent on hover ── */
.service-card-category { color: #cc0000; }
.service-card-link { color: #cc0000; }

/* ── TESTIMONIAL STARS ── */
.stars { color: #cc0000; }

/* ── CONTACT FORM ── */
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: #cc0000;
  box-shadow: 0 0 0 3px rgba(204,0,0,0.12);
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

/* ── BREADCRUMB ── */
.breadcrumb-current { color: #cc0000; }

/* ── FAQ ACCORDION ── */
.faq-question.active { color: #cc0000; }
.faq-icon { color: #cc0000; }

/* ── BLOG CARD ── */
.blog-card-category { background: #cc0000; }

/* ── SIDEBAR ── */
.sidebar-cta {
  background: linear-gradient(135deg, #cc0000, #aa0000);
}

/* ── COOKIE BANNER ── */
.cookie-banner .btn--primary {
  background: #cc0000;
}

/* ============================================================
   v6.1 — LOGO, MOBILE NAV, SPACING COMPLETE FIX
   ============================================================ */

/* ── LOGO — Image 3 exact style ── */
.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Remove old logo-icon if still rendered anywhere */
.logo-icon { display: none !important; }

.logo-emblem {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 6px rgba(204,0,0,0.35));
  transition: transform 0.3s ease;
}
.site-logo:hover .logo-emblem { transform: scale(1.05); }

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Single line: VIET(red) AUTO COLLISION(white/dark) */
.logo-text-line {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.logo-viet {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #cc0000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 5px;
}

.logo-auto {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #222222;         /* dark on white header */
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Footer version — white text */
.logo-auto--footer { color: #ffffff; }

.logo-text-sub {
  font-family: var(--font-heading);
  font-size: 0.52rem;
  font-weight: 600;
  color: #888888;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
}

.logo-text-sub--footer { color: rgba(255,255,255,0.45); }

/* When header is transparent over hero — make AUTO COLLISION white */
#site-header.at-hero-top .logo-auto { color: #ffffff; }
#site-header.at-hero-top .logo-text-sub { color: rgba(255,255,255,0.5); }
#site-header.at-hero-top .logo-viet { color: #ff4444; }

/* Footer logo spacing */
.footer-logo { margin-bottom: 1.25rem; }

/* ── SECTION SPACING — Reduced ── */
.section         { padding: 60px 0; }
.section--sm     { padding: 40px 0; }
.section--lg     { padding: 80px 0; }
.section-header  { margin-bottom: 2.5rem; }

/* Hero content padding fix */
.hero-content {
  padding-top: 120px;
  padding-bottom: 80px;
}

/* Why us features gap fix */
.why-features { gap: 1.25rem; }
.why-feature  { gap: 1rem; }

/* Services grid gap fix */
.services-grid { gap: 1.25rem; }

/* Testimonials grid gap fix */
.testimonials-grid { gap: 1.25rem; }

/* Footer grid gap fix */
.footer-grid { gap: 2.5rem; }

/* ── MOBILE NAV — Complete Professional Redo ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid #dddddd;
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.hamburger:hover { border-color: #cc0000; background: rgba(204,0,0,0.05); }
.hamburger:hover span { background: #cc0000; }

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #333333;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Panel */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 9999;
  overflow-y: auto;
  overflow-x: hidden;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid #cc0000;
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}

.mobile-nav.active { right: 0; }

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }

/* Mobile nav header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eeeeee;
  background: #111111;
  flex-shrink: 0;
}

.mobile-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mobile-nav-logo-viet   { color: #cc0000; font-weight: 900; font-size: 1rem; font-family: var(--font-heading); letter-spacing: 0.05em; }
.mobile-nav-logo-rest   { color: #ffffff; font-weight: 900; font-size: 1rem; font-family: var(--font-heading); letter-spacing: 0.05em; }

.mobile-nav-close {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-close:hover { background: #cc0000; border-color: #cc0000; }

/* Mobile nav links */
.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  flex: 1;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}

.mobile-nav-links a::after {
  content: '›';
  font-size: 1rem;
  color: #cc0000;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.current-page {
  color: #cc0000;
  background: rgba(204,0,0,0.04);
  padding-left: 26px;
}

.mobile-nav-links a:hover::after,
.mobile-nav-links a.current-page::after { opacity: 1; transform: translateX(0); }

/* Mobile nav CTA area */
.mobile-nav-cta {
  padding: 20px;
  background: #f8f8f8;
  border-top: 1px solid #eeeeee;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.mobile-nav-cta .btn--primary {
  background: #cc0000;
  color: #ffffff;
  padding: 14px;
  font-size: 0.82rem;
}

.mobile-nav-cta .btn--secondary {
  background: transparent;
  color: #cc0000;
  border: 2px solid #cc0000;
  padding: 12px;
  font-size: 0.82rem;
}

/* Mobile nav contact strip */
.mobile-nav-contact {
  padding: 16px 20px;
  background: #111111;
  border-top: 1px solid #222222;
  flex-shrink: 0;
}

.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.8rem;
  padding: 5px 0;
  transition: color 0.2s;
}

.mobile-nav-contact a:hover { color: #ffffff; }
.mobile-nav-contact a svg   { color: #cc0000; flex-shrink: 0; }

/* ── RESPONSIVE BREAKPOINTS ── */

/* Tablet landscape */
@media (max-width: 1100px) {
  .primary-nav a { padding: 8px 10px; font-size: 0.74rem; }
  .header-cta .btn--secondary { display: none; }
}

/* Tablet portrait — show hamburger */
@media (max-width: 900px) {
  .hamburger    { display: flex !important; }
  .primary-nav  { display: none !important; }

  .header-cta .btn--secondary { display: none; }
  .header-cta .btn--primary {
    display: flex;
    font-size: 0.72rem;
    padding: 8px 14px;
  }

  .header-inner { height: 64px; }
  :root { --header-height: 64px; }
}

/* Mobile — hide call btn too, hamburger only */
@media (max-width: 600px) {
  .header-cta .btn--primary { display: none; }
  .header-inner { height: 60px; }
  :root { --header-height: 60px; }

  .logo-viet, .logo-auto { font-size: 1.1rem; }
  .logo-emblem svg { width: 36px; height: 36px; }
  .logo-text-sub { display: none; }

  .hero-content {
    padding-top: 90px;
    padding-bottom: 60px;
  }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }

  .section { padding: 48px 0; }
  .section--sm { padding: 32px 0; }
  .section-header { margin-bottom: 2rem; }

  .services-grid { grid-template-columns: 1fr; }
  .trust-grid    { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-stat:not(:last-child)::after { display: none; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.75rem; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }

  .contact-strip-grid { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Extra small phones */
@media (max-width: 380px) {
  .logo-auto { display: none; }   /* only VIET on tiny screens */
  .logo-viet { font-size: 1.2rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* ── TOPBAR mobile hide ── */
@media (max-width: 768px) {
  .header-topbar { display: none; }
  .topbar-hours  { display: none; }
}

/* ── FOOTER RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── HERO IMAGE COL — hide below 1024 ── */
@media (max-width: 1024px) {
  .hero-image-col { display: none; }
  .hero-content   { grid-template-columns: 1fr; }
  .hero-title     { max-width: 100%; }
}

/* ── WHY-US grid — stack on mobile ── */
@media (max-width: 900px) {
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-image { display: none; }
}

/* ── GALLERY mobile ── */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: repeat(3, 180px) !important;
  }
  .gallery-item:first-child {
    grid-column: span 2 !important;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  .gallery-item { height: 200px !important; }
  .gallery-item:first-child { grid-column: span 1 !important; }
}

/* ── CONTACT STRIP responsive ── */
@media (max-width: 900px) {
  .contact-strip-grid { grid-template-columns: 1fr 1fr; }
  .contact-strip-brand {
    grid-column: span 2;
    border-right: none;
    border-bottom: 1px solid #eeeeee;
    padding: 0 0 1.5rem;
  }
}

@media (max-width: 540px) {
  .contact-strip-grid { grid-template-columns: 1fr; }
  .contact-strip-brand { grid-column: span 1; }
}

/* ── FLOAT CARD — hide on small screens ── */
@media (max-width: 900px) {
  .hero-float-card { display: none; }
}

/* ── PREVENT OVERFLOW on all screens ── */
* { max-width: 100%; box-sizing: border-box; }
img { max-width: 100%; height: auto; }
.container { overflow: visible; }
body { overflow-x: hidden; }

/* ── FIX: hero-stats on hero dark bg ── */
.hero-stats {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  margin-top: 0;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* ── TRUST BAR mobile 2-col ── */
@media (max-width: 768px) {
  .trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .trust-badge {
    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    justify-content: flex-start;
    padding: 14px 16px;
  }
  .trust-badge:nth-child(even)   { border-right: none; }
  .trust-badge:nth-child(n+3)    { border-bottom: none; }
}

@media (max-width: 440px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-badge { border-right: none !important; }
  .trust-badge:nth-child(n+3) { border-bottom: 1px solid #eeeeee; }
  .trust-badge:last-child { border-bottom: none !important; }
}
