/* Purcellville Appliance Repair - Luxury Light Theme System */

:root {
  --bg-dark: #f8fafc;
  /* Light slate gray background */
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.92);
  --border-glass: #e2e8f0;
  --border-gold: rgba(217, 119, 6, 0.35);

  --primary-gold: #b45309;
  --primary-gold-hover: #92400e;
  --accent-amber: #92400e;
  --text-main: #334155;
  --text-muted: #64748b;
  --text-dark: #0f172a;
  --text-light: #0f172a;
  /* Dark headings for light theme */

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --shadow-glow: 0 10px 25px -5px rgba(217, 119, 6, 0.25);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.06), 0 4px 6px -2px rgba(0, 0, 0, 0.03);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4,
.brand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.text-gold {
  color: var(--primary-gold);
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
}


/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f59e0b 0%, #92400e 100%);
  box-shadow: 0 15px 30px -5px rgba(217, 119, 6, 0.4);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-dark);
  border: 1px solid var(--border-glass);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: #f1f5f9;
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

.btn-phone {
  background: rgba(217, 119, 6, 0.1);
  color: var(--primary-gold);
  border: 1px solid var(--border-gold);
  font-weight: 700;
}

.btn-phone:hover {
  background: var(--primary-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

/* Navigation Bar */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-glass);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 1rem;
}

.navbar-brand a {
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary-gold);
}

.nav-action {
  display: flex;
  align-items: center;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile-only elements: hidden on desktop */
.mobile-call-btn,
.hamburger-menu {
  display: none;
}

/* ============================================
   MOBILE DRAWER MENU
   ============================================ */

/* Overlay */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  display: block;
  opacity: 1;
}

/* Drawer Panel */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
}

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

/* Drawer Header */
.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem 1.25rem;
  border-bottom: 1px solid var(--border-glass);
  gap: 0.75rem;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  min-width: 0;
}

.drawer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border-glass);
  padding: 4px;
  flex-shrink: 0;
}

.drawer-brand-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.drawer-company-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: var(--font-heading);
  line-height: 1.3;
}

.drawer-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.drawer-phone {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-decoration: none;
  transition: color 0.2s;
}

.drawer-phone:hover {
  color: var(--primary-gold-hover);
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: #f8fafc;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.2s;
}

.drawer-close:hover {
  background: #e2e8f0;
  color: var(--text-dark);
}

/* Drawer Nav */
.drawer-nav {
  list-style: none;
  padding: 0.75rem 0;
  flex: 1;
  overflow-y: auto;
}

.drawer-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.15s ease;
}

.drawer-nav-item:hover,
.drawer-nav-item:active {
  background: #f8fafc;
  color: var(--primary-gold);
}

.drawer-nav-item:hover .drawer-nav-icon {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.drawer-nav-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  transition: background 0.2s;
}

.drawer-nav-text {
  flex: 1;
}

/* Drawer Footer */
.drawer-footer {
  padding: 1rem 1.25rem 1.5rem 1.25rem;
  border-top: 1px solid var(--border-glass);
}

.drawer-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s, transform 0.2s;
}

.drawer-call-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* Mobile Navbar Styles */
@media (max-width: 768px) {
  .mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    order: 2;
    margin-left: auto;
    text-decoration: none;
  }

  .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    order: 3;
  }

  .nav-links {
    display: none;
  }

  .nav-action {
    display: none;
  }
}

/* Header & Hero Section */
.hero-wrapper {
  position: relative;
  min-height: 88vh;
  background-image: linear-gradient(90deg, rgb(248, 250, 252) 0%, rgb(255, 255, 255) 42%, rgb(248, 250, 252) 70%, rgba(0, 0, 0, 0.11) 100%);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 1rem 0 0.5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: center;
}

.hero-left {
  background: rgba(255, 255, 255, 0.77);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-right {
  /* Intentional Empty / Transparent area to show technician photo */
  min-height: 400px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.site-logo {
  max-height: 84px;
  width: auto;
  object-fit: contain;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.company-tagline {
  font-size: 0.85rem;
  color: var(--primary-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(217, 119, 6, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--primary-gold);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 95%;
}

.hero-ratings-block {
  margin-bottom: 1.75rem;
}

.trust-badges-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.06));
  transition: transform 0.3s ease;
}

.trust-badges-img:hover {
  transform: scale(1.03);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.feature-item svg {
  color: var(--primary-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-phone-box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1.25rem;
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-phone-box:hover {
  border-color: var(--primary-gold);
  background: rgba(217, 119, 6, 0.05);
}

.phone-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-gold);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.phone-meta {
  display: flex;
  flex-direction: column;
}

.phone-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.phone-number {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Trust Bar / Stats */
.trust-bar {
  background: #ffffff;
  border: 1px solid var(--border-glass);
  /*padding: 2.5rem 0;*/
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-item {
  padding: 1rem;
  border-right: 1px solid var(--border-glass);
}

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

.trust-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-gold);
  font-family: var(--font-heading);
  margin-bottom: 0.3rem;
}

.trust-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Section Common */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  color: var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Brand Portfolio Showcase */
.brand-block {
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 3rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.brand-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-gold), var(--primary-gold-hover));
}

.brand-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-glass);
}

.brand-info {
  max-width: 750px;
}

.brand-name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
}

.brand-badge {
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(217, 119, 6, 0.1);
  color: var(--primary-gold);
  border: 1px solid var(--border-gold);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.brand-seo-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.brand-cta-box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Image Grid per Brand (2 cards per row) */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.portfolio-card {
  background: #f8fafc;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: pointer;
}

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

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

.image-overlay-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  border: 1px solid var(--border-glass);
}

.zoom-hint {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--primary-gold);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.card-image-wrap:hover .zoom-hint {
  opacity: 1;
  transform: scale(1);
}

.card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.card-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
}

.card-actions .btn {
  flex: 1;
}

/* Middle CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  margin: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  color: #ffffff;
}

.cta-banner .cta-banner-title {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-banner .cta-banner-desc {
  color: #94a3b8;
  max-width: 650px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
}

.cta-banner-btns {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Modal Lead Form */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #f1f5f9;
  border: none;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--primary-gold);
  color: #ffffff;
}

.modal-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.modal-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #f8fafc;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

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

/* Lightbox Modal */
.lightbox-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 2rem;
}

.lightbox-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 1000px;
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.lightbox-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 350px;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 550px;
  object-fit: contain;
}

.lightbox-details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lightbox-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.lightbox-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background: #0f172a;
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem 0;
  color: #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  height: 100%;
}

.footer-logo {
  max-height: 180px;
  width: auto;
  object-fit: contain;
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
}

/* ============================================
   MOBILE HERO PHOTO CARD
   ============================================ */

/* Hidden on desktop, shown on mobile */
.hero-photo-card {
  display: none;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-photo-img {
  width: 100%;
  /*height: 280px;*/
  object-fit: cover;
  object-position: center top;
  display: block;
  /*opacity: 0.88;*/
}

.hero-photo-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1e1b18;
  color: #d97706;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 119, 6, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-photo-reviews {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 0.6rem;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.hero-photo-review-pill {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(30, 27, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  backdrop-filter: blur(8px);
}

.hero-photo-review-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  color: #ffffff;
}

.hero-photo-review-icon--google {
  background: #4285F4;
}

.hero-photo-review-icon--yelp {
  background: #d32323;
}

.hero-photo-review-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero-photo-review-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.hero-photo-review-stars {
  font-size: 0.7rem;
  color: #fbbc04;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-photo-review-count {
  color: #94a3b8;
  font-size: 0.7rem;
}

/* ============================================
   RESPONSIVE BREAKPOINTS — MOBILE OPTIMIZED
   ============================================ */

/* === Tablet (≤1024px) === */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .hero-wrapper {
    min-height: auto;
    padding: 1rem 0 4rem 0;
    background-image: linear-gradient(180deg,
        rgba(248, 250, 252, 0.97) 0%,
        rgba(248, 250, 252, 0.9) 100%);
  }

  .hero-left {
    padding: 2rem;
  }

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

  .trust-item:nth-child(2) {
    border-right: none;
  }

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

  .lightbox-img-wrap {
    min-height: 280px;
  }

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

  .brand-block {
    padding: 2rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}

/* === Mobile (≤768px) === */
@media (max-width: 768px) {

  /* Navbar */
  .navbar {
    padding: 0.75rem 0;
  }

  .hamburger-menu {
    display: block;
    order: 3;
    margin-left: 1rem;
  }

  .nav-action {
    order: 2;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 1.5rem 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

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

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 1.05rem;
  }

  .nav-action span {
    display: none;
  }

  /* Hero — mobile: remove background image, show photo card instead */
  .hero-wrapper {
    min-height: auto;
    padding: 1.25rem 0 2.5rem 0;
    background-image: none;
    background-color: var(--bg-dark);
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* Show mobile photo card */
  .hero-photo-card {
    display: block;
  }

  .hero-left {
    padding: 1.25rem;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    backdrop-filter: none;
  }

  .logo-container {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .site-logo {
    max-height: 50px;
  }

  .company-name {
    font-size: 1.1rem;
  }

  .company-tagline {
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  /* Hide duplicate review pills — already shown in the photo card above */
  .hero-ratings-block {
    display: none;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .hero-phone-box {
    justify-content: center;
  }

  /* Reviews */
  .reviews-container {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Trust Bar */
  .trust-bar {
    margin-top: 1rem;
    border-radius: var(--radius-sm);
  }

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

  .trust-item {
    padding: 1.25rem 0.75rem;
  }

  .trust-number {
    font-size: 1.8rem;
  }

  /* Section */
  .section {
    padding: 2.5rem 0;
  }

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

  .section-title-wrap {
    margin-bottom: 2rem;
  }

  /* Brand Block */
  .brand-block {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .brand-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .brand-cta-box {
    flex-direction: column;
    align-items: stretch;
  }

  .brand-cta-box .btn {
    text-align: center;
    justify-content: center;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 2rem 1.25rem;
    margin: 2rem 0;
    border-radius: var(--radius-md);
  }

  .cta-banner .cta-banner-title {
    font-size: 1.6rem;
  }

  .cta-banner .cta-banner-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .cta-banner-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner-btns .btn {
    justify-content: center;
  }

  /* Footer */
  .footer {
    padding: 2.5rem 0 1.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  /* Modal */
  .modal-box {
    padding: 1.5rem;
    max-width: 100%;
    border-radius: var(--radius-md);
  }

  .modal-title {
    font-size: 1.4rem;
  }

  /* Lightbox */
  .lightbox-backdrop {
    padding: 1rem;
  }

  .lightbox-content {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }

  .lightbox-img-wrap {
    min-height: 220px;
  }

  .lightbox-details {
    padding: 1.25rem;
  }

  .lightbox-title {
    font-size: 1.15rem;
  }

  /* Shield badges */
  .shield-badge {
    min-width: unset;
    padding: 0.6rem 1rem;
  }

  .trust-shields {
    gap: 0.75rem;
  }
}

/* === Small Mobile (≤480px) === */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

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

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
  }

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

  .trust-number {
    font-size: 1.6rem;
  }

  .trust-text {
    font-size: 0.8rem;
  }

  .review-pill {
    padding: 0.5rem 1.25rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .brand-name {
    font-size: 1.25rem;
  }

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

  .cta-banner .cta-banner-title {
    font-size: 1.4rem;
  }

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

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border-glass);
  }

  .trust-item:last-child {
    border-bottom: none;
  }
}

/* Review & Trust Badges Styles */
.reviews-container {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.review-pill {
  background-color: #1e1b18;
  /* Dark brown/black matching the screenshot */
  color: #ffffff;
  border-radius: 9999px;
  padding: 0.6rem 1.8rem;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.review-pill-content {
  display: flex;
  flex-direction: column;
}

.review-pill-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  letter-spacing: 0.2px;
}

.review-pill-stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-pill-stars {
  display: flex;
  gap: 2px;
}

.review-pill-count {
  font-size: 0.75rem;
  color: #a8a29e;
}

.trust-shields {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.shield-badge {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5);
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.shield-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shield-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.shield-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shield-stars {
  color: #fbbc04;
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

.shield-year {
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
  margin-top: 0.25rem;
}

/* Reviews are handled above in the 768px breakpoint */
/* ============================================
   FLOATING MOBILE CALL BUTTON
   ============================================ */
.floating-call-btn {
  display: none;
}

@media (max-width: 768px) {
  .floating-call-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #c53929;
    color: white;
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: transform 0.3s ease;
  }

  .floating-call-btn:active {
    transform: scale(0.95);
  }

  .pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(197, 57, 41, 0.4);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  @keyframes pulse-ring {
    0% {
      width: 60px;
      height: 60px;
      opacity: 1;
    }

    100% {
      width: 120px;
      height: 120px;
      opacity: 0;
    }
  }
}


/* ============================================
   GOOGLE REVIEWS SECTION
   ============================================ */
.google-reviews-section {
  background: #f8fafc;
  /* subtle gray background */
  padding: 4rem 0;
  border-top: 1px solid var(--border-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.google-review-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Avatar Colors to pass WCAG contrast with white text */
.google-review-card:nth-child(1) .reviewer-avatar {
  background-color: #1558d6;
}

.google-review-card:nth-child(2) .reviewer-avatar {
  background-color: #c5221f;
}

.google-review-card:nth-child(3) .reviewer-avatar {
  background-color: #137333;
}

.google-review-card:nth-child(4) .reviewer-avatar {
  background-color: #b33f00;
}

.google-review-card:nth-child(5) .reviewer-avatar {
  background-color: #6a1b9a;
}

.google-review-card:nth-child(6) .reviewer-avatar {
  background-color: #c2185b;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.reviewer-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.reviewer-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.google-logo {
  width: 24px;
  height: 24px;
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  color: #fbbc04;
  /* Google star yellow */
  font-size: 1.1rem;
}

.review-time {
  color: #70757a;
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

.review-text {
  font-size: 0.9rem;
  color: #3c4043;
  line-height: 1.5;
}


/* ============================================
   FAQ SECTION (ACCORDION)
   ============================================ */
.faq-section {
  background: white;
  padding: 5rem 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 0.5rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

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

.faq-icon {
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
  color: var(--primary-gold);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  /* arbitrary large max-height */
  padding-bottom: 1.25rem;
}


/* ============================================
   SERVICE AREA SECTION
   ============================================ */
.service-area-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f2340 100%);
  overflow: hidden;
}

.service-area-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.service-area-inner {
  position: relative;
  z-index: 1;
}

.area-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.area-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  backdrop-filter: blur(4px);
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.area-card:hover {
  border-color: rgba(212, 160, 23, 0.4);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
}

.area-card--primary {
  border-color: rgba(212, 160, 23, 0.5);
  background: rgba(212, 160, 23, 0.08);
}

.area-card--primary:hover {
  background: rgba(212, 160, 23, 0.12);
}

.area-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(212, 160, 23, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
}

.area-card--primary .area-card-icon {
  background: rgba(212, 160, 23, 0.25);
}

.area-card-body {
  flex: 1;
}

.area-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.area-card-zip {
  font-size: 0.75rem;
  color: var(--primary-gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.area-card-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.area-card-tag {
  position: absolute;
  top: -1px;
  right: 12px;
  background: var(--primary-gold);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.area-cta-row {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.area-cta-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .area-cards-grid {
    grid-template-columns: 1fr;
  }

  .area-cta-row {
    flex-direction: column;
    gap: 1rem;
  }
}


/* ============================================
   HERO REDESIGN v2 � NEW STYLES
   ============================================ */

/* Override grid: 2 cols, left content + right photo */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 88vh;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 1.5rem;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
  max-width: 560px;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}

.hero-tech-img {
  width: 100%;
  height: 100%;
  max-height: 92vh;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

/* Location tag */
.hero-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

/* H1 */
.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.75rem;
  color: var(--text-dark);
}

/* Ratings row */
.hero-ratings-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-rating-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #2d2d2d;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 12px;
  padding: 0.8rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.hero-rating-score {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-rating-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-rating-stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 1px;
}

.hero-rating-platform {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.hero-rating-count {
  font-size: 0.85rem;
  color: #fff;
}

/* Trust signals & Awards Row */
.hero-trust-awards-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.hero-trust-signals {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.hero-trust-item svg {
  color: var(--primary-gold);
  flex-shrink: 0;
}

/* Hero Awards */
.hero-awards {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-award-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

/* Phone CTA */
.btn-phone-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--text-dark);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.3px;
}

.btn-phone-hero:hover {
  background: var(--primary-gold);
  transform: translateY(-2px);
}

.hero-schedule-link {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.hero-schedule-link:hover {
  color: var(--primary-gold);
}

/* Trust Bar � extended with logo */
.trust-bar-top {
  padding: 1.2rem 2rem;
  border-bottom: 1px solid var(--border-glass);
}

.trust-bar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-bar-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.trust-bar-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-bar-company {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.trust-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-gold);
}

/* Responsive hero v2 */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
    min-height: auto;
    align-items: flex-end;
  }

  .hero-left {
    max-width: 100%;
    padding: 2.5rem 0;
  }

  .hero-right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 420px;
    /*max-height: 560px;*/
    overflow: hidden;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 0.3rem;
    align-items: flex-end;
  }

  .hero-left {
    display: contents;
  }

  .hero-trust-awards-row {
    display: contents;
  }

  .hero-brand-logo-wrap {
    grid-column: 1 / -1;
    order: 1;
    margin-bottom: 0.8rem;
  }

  .hero-location-tag {
    grid-column: 1 / -1;
    order: 2;
    font-size: 0.82rem;
    margin-bottom: 0.6rem;
  }

  .hero-title {
    grid-column: 1 / -1;
    order: 3;
    font-size: 1.85rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
  }

  /* Grouped Ratings & Awards Column placed on LEFT column (column 1) - Vertically Centered */
  .hero-ratings-awards-col {
    grid-column: 1;
    order: 4;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
    align-self: center;
    width: 100%;
  }

  .hero-ratings-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin: 0;
    width: 100%;
  }

  .hero-rating-card {
    padding: 0.35rem 0.45rem;
    gap: 0.35rem;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-rating-score {
    font-size: 1.2rem;
  }

  .hero-rating-stars {
    font-size: 0.65rem;
    letter-spacing: 0;
  }

  .hero-rating-count {
    font-size: 0.65rem;
  }

  .hero-rating-platform {
    font-size: 0.72rem;
  }

  /* Hero Awards placed directly below ratings inside the grouped column */
  .hero-awards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.2rem;
    margin-bottom: 0;
    width: 100%;
  }

  .hero-award-img {
    height: 60px;
    width: auto;
    object-fit: contain;
  }

  /* WIDER & STRETCHED Technician photo placed on RIGHT column (column 2) - MOVED UP */
  .hero-right {
    grid-column: 2;
    order: 4;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 360px;
    min-height: auto;
    width: 100%;
    overflow: visible;
    margin: 0;
    align-self: flex-end;
  }

  .hero-tech-img {
    width: 115%;
    height: 100%;
    max-height: 360px;
    object-fit: contain;
    object-position: bottom center;
    transform: translateY(12px) scale(1.1);
    transform-origin: bottom center;
  }

  /* 3 Trust Signals text - MOVED DOWN BELOW TECH & RATINGS BLOCK */
  .hero-trust-signals {
    grid-column: 1 / -1;
    order: 5;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    grid-column: 1 / -1;
    order: 6;
    margin-bottom: 1rem;
  }

  .btn-phone-hero {
    font-size: 1.05rem;
    padding: 0.8rem 1.5rem;
    width: 100%;
    justify-content: center;
  }

  .trust-bar-top {
    padding: 0.8rem;
  }

  .trust-bar-company {
    font-size: 0.85rem;
  }
}


/* Sub-Zero SVG Logo Header Styles */
.hero-brand-logo-wrap {
  margin-bottom: 1.2rem;
}

.hero-brand-logo {
  height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-brand-logo:hover {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
  .hero-brand-logo {
    height: 42px;
    max-width: 210px;
  }
}

/* Vibrant CTA Call Button in Hero Section */
.btn-phone-hero {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0.95rem 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.42), 0 2px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-phone-hero:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #ea580c 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.6), 0 4px 10px rgba(0, 0, 0, 0.15);
  color: #ffffff !important;
}

.btn-phone-hero svg {
  transition: transform 0.3s ease;
}

.btn-phone-hero:hover svg {
  transform: rotate(12deg) scale(1.1);
}

/* Video Feature Block */
.video-feature-wrapper {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.video-feature-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
  align-items: center;
}

.feature-video {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  background: #000;
}

.content-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.feature-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.feature-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.feature-photo-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (max-width: 768px) {
  .video-feature-grid {
    grid-template-columns: 1fr;
  }
}