/* ========================================
   CSS VARIABLES - INDUSTRIAL DESIGN SYSTEM
   ======================================== */

:root {
  /* Color Palette - Black, Gray, Red, White */
  --primary: #1a1a1a;           /* Black */
  --primary-dark: #000000;      /* Pure black */
  --secondary: #4a5568;         /* Medium gray */
  --accent: #DC143C;            /* Crimson red */
  --accent-dark: #B01030;       /* Darker red */
  --dark: #1a1a1a;              /* Deep black */
  --light: #e5e7eb;             /* Light gray */
  --background: #f9fafb;        /* Off-white */
  --white: #ffffff;
  --gray-100: #f9fafb;
  --gray-200: #f3f4f6;
  --gray-300: #e5e7eb;
  --gray-400: #d1d5db;
  --gray-500: #9ca3af;
  --gray-600: #6b7280;
  --gray-700: #4a5568;
  --gray-800: #374151;
  --gray-900: #1f2937;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3.5rem;
  --spacing-xl: 5rem;
  --spacing-xxl: 7rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.25);

  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Container */
  --container-max: 1200px;
}

/* ========================================
   BASE STYLES
   ======================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--dark);
}

h1 {
  font-size: 3.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h3 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  font-size: 1.25rem;
  font-weight: 700;
}

h6 {
  font-size: 1rem;
  font-weight: 700;
}

p {
  margin-bottom: var(--spacing-sm);
}

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

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

ul, ol {
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-md);
}

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

/* ========================================
   LAYOUT UTILITIES
   ======================================== */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xxl) 0;
  overflow-x: hidden;
}

.section-dark {
  background-color: var(--primary);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--white);
}

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

.section-gray {
  background-color: var(--gray-100);
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav-container {
  position: fixed;
  top: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: var(--container-max);
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: all var(--transition-base);
}

.nav-container.scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  box-shadow: var(--shadow-xl);
  background: rgba(26, 26, 26, 0.98);
  padding: 0.75rem 2rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

/* Logo */
.nav-logo a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.nav-logo a:hover {
  opacity: 0.9;
}

.logo-image {
  height: 80px;
  width: auto;
  display: block;
}

/* Desktop Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links > a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links > a:hover {
  background: var(--accent);
  color: var(--white);
}

/* Navigation CTA Button */
.nav-cta-btn {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 0.625rem 1.75rem !important;
  margin-left: 0.5rem;
  box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease !important;
  isolation: isolate;
}

.nav-cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
}

.nav-cta-btn:hover {
  background: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
}

.nav-cta-btn:hover::before {
  width: 300px;
  height: 300px;
}

.nav-cta-btn:active {
  transform: translateY(0);
}

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

.nav-dropdown-btn {
  background: none;
  border: none;
  color: var(--white);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-btn:hover {
  background: var(--accent);
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
}

.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-content {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  background: var(--dark);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-xs);
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
}

.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown.active .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-content a {
  display: block;
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.nav-dropdown-content a:hover {
  background: var(--accent);
  color: var(--white);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mobile-nav > a {
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.mobile-nav > a:hover {
  background: var(--accent);
}

.mobile-dropdown-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  font-family: var(--font-body);
}

.mobile-dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: var(--spacing-sm);
  margin-top: 0.5rem;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: flex;
}

.mobile-dropdown-content a {
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  font-size: 0.85rem;
}

.mobile-dropdown-content a:hover {
  background: var(--accent);
}

/* ========================================
   HERO SECTIONS
   ======================================== */

.hero {
  background: var(--white);
  padding: calc(var(--spacing-xxl) + 100px) 0 0 0;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: var(--spacing-xxl);
}

/* Hero Content */
.hero-content {
  padding-left: var(--spacing-lg);
}

.hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--spacing-md);
  animation: fadeInDown 0.6s ease-out 0.2s both;
}

.hero h1 {
  color: var(--dark);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: var(--spacing-xl);
  max-width: 550px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100px;
  position: relative;
}

.hero-wave .shape-fill {
  fill: var(--gray-100);
}

/* Page Hero (non-homepage heroes) */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: calc(var(--spacing-xxl) + 120px) 0 calc(var(--spacing-xxl) + 40px) 0;
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero .hero-content {
  max-width: 900px;
  color: var(--white);
  padding-left: 0;
  animation: fadeInUp 0.8s ease-out;
}

.page-hero h1 {
  color: var(--white);
  font-size: 4rem;
  text-shadow: 2px 4px 16px rgba(0, 0, 0, 0.4);
  animation: none;
  margin-bottom: var(--spacing-lg);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page-hero .hero-subtitle {
  color: var(--white);
  opacity: 1;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
  animation: none;
  font-size: 1.5rem;
  margin-bottom: calc(var(--spacing-xl) + var(--spacing-md));
  font-weight: 400;
}

.page-hero .hero-accent {
  color: var(--accent);
  display: inline-block;
  position: relative;
}

.page-hero .hero-buttons {
  animation: none;
  gap: var(--spacing-lg);
  justify-content: center;
}

.page-hero .hero-wave .shape-fill {
  fill: var(--white);
}

/* Service-specific hero backgrounds */
.page-hero.sealing-hero {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.92) 0%, rgba(52, 73, 94, 0.88) 100%), url('/images/sealing/IMG_0841.jpg');
  background-size: cover;
  background-position: center;
}

.page-hero.sealing-hero .hero-accent {
  color: var(--accent);
}

/* ========================================
   MODERN HERO SECTION - CLEAN & IMPACTFUL
   ======================================== */

.modern-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 120px 0;
  overflow: hidden;
  z-index: 1;
}

.modern-hero .container {
  position: relative;
  z-index: 5;
}

/* Mountain background with SVG layers */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
  overflow: hidden;
}

.hero-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-mountains svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
}

.mountain-layer-back {
  z-index: 1;
  opacity: 0.8;
}

.mountain-layer-mid {
  z-index: 2;
  opacity: 0.9;
}

.mountain-layer-front {
  z-index: 3;
  opacity: 1;
}

.hero-background-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.008) 2px, rgba(255, 255, 255, 0.008) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.008) 2px, rgba(255, 255, 255, 0.008) 4px);
  background-size: 80px 80px;
  opacity: 0.3;
  z-index: 4;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 1000px 700px at 50% 40%, rgba(220, 20, 60, 0.04), transparent),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 5;
}

/* Sign structure wrapper */
.hero-sign-structure {
  position: relative;
  max-width: 1100px;
  margin: 40px auto 0;
  padding-bottom: 120px;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
  z-index: 5;
}

/* Banner sign frame */
.hero-banner-sign {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85), rgba(18, 18, 18, 0.9));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 3px solid rgba(220, 20, 60, 0.8);
  border-radius: 12px;
  padding: 70px 80px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 80px rgba(220, 20, 60, 0.4),
    0 0 40px rgba(220, 20, 60, 0.6),
    0 0 20px rgba(220, 20, 60, 0.8);
  animation: neonBorderFlicker 47s ease-in-out infinite;
}

.hero-content-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text-content {
  position: relative;
  z-index: 1;
  padding-right: 20px;
}

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

.hero-storefront-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 8px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 0 3px rgba(220, 20, 60, 0.3),
    0 0 30px rgba(220, 20, 60, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.15);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-storefront-img:hover {
  transform: translateY(-8px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.7),
    0 0 0 3px rgba(220, 20, 60, 0.5),
    0 0 40px rgba(220, 20, 60, 0.25);
}

.hero-banner-sign::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(
    135deg,
    rgba(220, 20, 60, 0.6),
    rgba(255, 255, 255, 0.2),
    rgba(220, 20, 60, 0.6)
  );
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(6px);
}

.hero-banner-sign:hover::before {
  opacity: 0.3;
}

/* Sign stand structure */
.sign-stand {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: -1;
}

.sign-pole {
  width: 24px;
  height: 100px;
  background: linear-gradient(to right, #2a2a2a 0%, #3a3a3a 50%, #2a2a2a 100%);
  border-radius: 12px;
  box-shadow:
    -4px 0 12px rgba(0, 0, 0, 0.6),
    4px 0 12px rgba(0, 0, 0, 0.4),
    inset -2px 0 4px rgba(0, 0, 0, 0.5),
    inset 2px 0 4px rgba(255, 255, 255, 0.1);
  position: relative;
}

.sign-pole::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 16px;
  background: linear-gradient(to bottom, #3a3a3a 0%, #2a2a2a 100%);
  border-radius: 8px;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.6),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.sign-base {
  width: 100px;
  height: 20px;
  background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 10px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.6),
    inset 0 2px 4px rgba(255, 255, 255, 0.05);
  position: relative;
}

.sign-base::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(4px);
}

/* Sign spotlights at bottom */
.sign-spotlights {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  visibility: hidden;
  animation: spotlightsReveal 0.1s linear 1s forwards;
}

@keyframes spotlightsReveal {
  to {
    visibility: visible;
  }
}

.spotlight {
  position: absolute;
  bottom: 10px;
  width: 50px;
  height: 40px;
}

.spotlight-left {
  left: 10%;
}

.spotlight-right {
  right: 10%;
}

.spotlight-fixture {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
  border-radius: 8px 8px 0 0;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.8),
    inset 0 2px 4px rgba(255, 255, 255, 0.1),
    inset 0 -2px 4px rgba(0, 0, 0, 0.5);
}

.spotlight-fixture::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(255, 230, 180, 0.9) 0%, rgba(255, 200, 100, 0.7) 50%, rgba(80, 60, 30, 0.8) 100%);
  border-radius: 50%;
  box-shadow:
    0 0 10px rgba(255, 200, 100, 0.6),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

.spotlight-fixture::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 10px;
  background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.light-beam {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 400px;
  background: linear-gradient(
    to top,
    rgba(255, 230, 180, 0.15) 0%,
    rgba(255, 230, 180, 0.1) 30%,
    rgba(255, 230, 180, 0.05) 60%,
    transparent 100%
  );
  clip-path: polygon(45% 0%, 55% 0%, 100% 100%, 0% 100%);
  opacity: 0.8;
  filter: blur(8px);
}

.spotlight-left .light-beam {
  transform: translateX(-50%) rotate(-5deg);
  transform-origin: bottom center;
  animation: leftSpotlightFlicker 37s ease-in-out infinite;
}

.spotlight-right .light-beam {
  transform: translateX(-50%) rotate(5deg);
  transform-origin: bottom center;
  animation: rightSpotlightFlicker 41s ease-in-out infinite;
}

.spotlight-left .spotlight-fixture::before {
  animation: leftBulbFlicker 37s ease-in-out infinite;
}

.spotlight-right .spotlight-fixture::before {
  animation: rightBulbFlicker 41s ease-in-out infinite;
}

/* Light beam reflection on sign */
.hero-banner-sign::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(255, 230, 180, 0.08) 0%,
    rgba(255, 230, 180, 0.04) 50%,
    transparent 100%
  );
  pointer-events: none;
  border-radius: 0 0 12px 12px;
}

/* Text content layout */
.hero-text-content {
  position: relative;
  z-index: 1;
}

.modern-hero .hero-label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.05);
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
}

/* Bold, clean typography */
.modern-hero h1 {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.5);
}

.modern-hero .hero-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 520px;
}

/* Button group */
.modern-hero .hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Wave separator */
.modern-hero .hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.modern-hero .hero-wave svg {
  display: block;
  width: 100%;
  height: 100px;
  position: relative;
}

.modern-hero .hero-wave .shape-fill {
  fill: var(--gray-100);
}

/* Responsive design */
@media (max-width: 1200px) {
  .hero-sign-structure {
    padding-bottom: 100px;
  }

  .hero-banner-sign {
    padding: 70px 50px;
  }

  .sign-pole {
    height: 90px;
  }

  .modern-hero h1 {
    font-size: 3.75rem;
  }

  .modern-hero .hero-text {
    font-size: 1.1875rem;
  }
}

@media (max-width: 992px) {
  .modern-hero {
    padding: 140px 0 100px 0;
    min-height: 75vh;
  }

  .hero-sign-structure {
    padding-bottom: 90px;
  }

  .hero-banner-sign {
    padding: 60px 40px;
  }

  .sign-pole {
    height: 80px;
    width: 20px;
  }

  .sign-pole::before {
    width: 40px;
    height: 14px;
  }

  .sign-base {
    width: 80px;
    height: 18px;
  }

  .spotlight-fixture {
    width: 35px;
    height: 26px;
  }

  .light-beam {
    height: 350px;
  }

  .modern-hero h1 {
    font-size: 3.25rem;
  }

  .modern-hero .hero-text {
    font-size: 1.125rem;
    max-width: 640px;
  }
}

@media (max-width: 768px) {
  .modern-hero {
    min-height: auto;
    padding: 120px 0 80px 0;
  }

  .hero-sign-structure {
    padding-bottom: 70px;
  }

  .hero-banner-sign {
    padding: 50px 32px;
    border-width: 2px;
  }

  .sign-pole {
    height: 60px;
    width: 18px;
  }

  .sign-pole::before {
    width: 36px;
    height: 12px;
  }

  .sign-base {
    width: 70px;
    height: 16px;
  }

  .spotlight-fixture {
    width: 30px;
    height: 22px;
  }

  .spotlight-fixture::before {
    width: 16px;
    height: 16px;
  }

  .light-beam {
    height: 300px;
    width: 80px;
  }

  .modern-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 28px;
  }

  .modern-hero .hero-text {
    font-size: 1.0625rem;
    margin-bottom: 40px;
  }

  .modern-hero .hero-wave svg {
    height: 70px;
  }
}

@media (max-width: 576px) {
  .modern-hero {
    padding: 100px 0 60px 0;
  }

  .hero-sign-structure {
    padding-bottom: 60px;
  }

  .hero-banner-sign {
    padding: 40px 24px;
    border-width: 2px;
    border-radius: 10px;
  }

  .sign-pole {
    height: 50px;
    width: 16px;
  }

  .sign-pole::before {
    width: 32px;
    height: 10px;
  }

  .sign-base {
    width: 60px;
    height: 14px;
  }

  .sign-base::after {
    width: 80px;
  }

  .spotlight {
    width: 32px;
    height: 28px;
  }

  .spotlight-fixture {
    width: 28px;
    height: 24px;
  }

  .spotlight-fixture::before {
    width: 16px;
    height: 16px;
  }

  .light-beam {
    height: 280px;
    width: 80px;
  }

  .modern-hero h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .modern-hero .hero-text {
    font-size: 1rem;
    margin-bottom: 36px;
  }

  .modern-hero .hero-label {
    font-size: 0.75rem;
    padding: 7px 16px;
    margin-bottom: 24px;
  }

  .modern-hero .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .modern-hero .hero-buttons .btn {
    width: 100%;
  }

  .modern-hero .hero-wave svg {
    height: 50px;
  }
}

/* ========================================
   BUTTONS - PROFESSIONAL DESIGN
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  isolation: isolate;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(220, 20, 60, 0.25);
  border: 1px solid rgba(220, 20, 60, 0.5);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 20, 60, 0.35);
  border-color: var(--accent-dark);
}

.btn-primary:active {
  color: var(--white);
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn-dark:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn-dark:active {
  transform: translateY(0);
}

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

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(220, 20, 60, 0.25);
}

.btn-outline:active {
  transform: scale(0.98);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1rem;
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.section-header h2 {
  margin-bottom: var(--spacing-md);
}

.section-header p {
  font-size: 1.1875rem;
  color: var(--gray-600);
  line-height: 1.6;
  font-weight: 400;
}

.section-dark .section-header p {
  color: var(--light);
}

/* ========================================
   SERVICE CARDS
   ======================================== */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

/* 2-column layout for desktop only */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: var(--spacing-xl);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-base);
  text-align: center;
  border: 1px solid var(--gray-200);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.service-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md) auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 21, 56, 0.1), rgba(139, 21, 56, 0.05));
  border-radius: 12px;
  transition: all var(--transition-base);
}

.service-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  stroke-width: 2;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon-wrapper {
  background: linear-gradient(135deg, rgba(139, 21, 56, 0.15), rgba(139, 21, 56, 0.08));
  transform: translateY(-4px);
}

.service-card:hover .service-icon {
  color: var(--dark);
  transform: scale(1.1);
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card:nth-child(5) {
  animation-delay: 0.5s;
}

.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(139, 21, 56, 0.2);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: var(--spacing-md);
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 700;
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
  font-size: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-card .btn {
  margin-top: auto;
}

/* ========================================
   PROCESS STEPS
   ======================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.process-step {
  position: relative;
  text-align: left;
  padding: var(--spacing-lg);
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.process-step:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.process-number {
  width: 56px;
  height: 56px;
  margin: 0 0 var(--spacing-md) 0;
  background: var(--accent);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  transition: transform var(--transition-base);
}

.process-step:hover .process-number {
  transform: rotate(360deg) scale(1.1);
}

.process-step h3 {
  margin-bottom: var(--spacing-md);
  color: var(--dark);
  font-size: 1.375rem;
}

.process-step p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 1.0625rem;
}

.section-dark .process-step h3 {
  color: var(--dark);
}

.section-dark .process-step p {
  color: var(--gray-600);
}

/* ========================================
   BENEFITS GRID
   ======================================== */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.benefit-item {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  position: relative;
}

.benefit-icon-wrapper {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--spacing-md) auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 21, 56, 0.1), rgba(139, 21, 56, 0.05));
  border-radius: 12px;
  transition: all var(--transition-base);
}

.benefit-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: rgba(139, 21, 56, 0.2);
}

.benefit-item:hover .benefit-icon-wrapper {
  background: linear-gradient(135deg, rgba(139, 21, 56, 0.15), rgba(139, 21, 56, 0.08));
  transform: translateY(-4px);
}

.benefit-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  stroke-width: 2;
  transition: all var(--transition-base);
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
  color: var(--dark);
}

.benefit-item h3 {
  color: var(--dark);
  margin-bottom: var(--spacing-md);
  font-size: 1.25rem;
  font-weight: 700;
}

.benefit-item h4 {
  color: var(--dark);
  margin-bottom: var(--spacing-md);
  font-size: 1.25rem;
  font-weight: 700;
}

.benefit-item p {
  color: var(--gray-600);
  margin: 0;
  line-height: 1.7;
  font-size: 1rem;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-choose-section {
  position: relative;
  overflow: hidden;
}

.why-choose-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.why-choose-curve svg {
  display: block;
  width: 100%;
  height: 100px;
  position: relative;
  transform: translateZ(0);
}

.why-choose-curve .shape-fill {
  fill: #ffffff;
}

.why-choose-header {
  max-width: 800px;
  margin: 0 auto var(--spacing-xxl) auto;
}

.why-choose-intro {
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #2b0000;
  background: rgba(139, 21, 56, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: var(--spacing-md);
}

.section-dark .section-label {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.why-choose-intro h2 {
  margin-bottom: var(--spacing-md);
  font-size: 3rem;
  font-weight: 800;
}

.why-choose-intro p {
  font-size: 1.1875rem;
  color: var(--light);
  line-height: 1.7;
  opacity: 0.9;
}

.benefits-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: var(--spacing-xl);
  transition: all var(--transition-base);
  position: relative;
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

.benefit-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.benefit-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
  letter-spacing: -0.02em;
  transition: transform var(--transition-base);
}

.benefit-card:hover .benefit-number {
  transform: scale(1.1);
}

.benefit-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.benefit-card p {
  color: var(--light);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.85;
}

/* ========================================
   CTA SECTIONS
   ======================================== */

.cta-section {
  background: var(--accent);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.6s ease-out;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-size: 2.75rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* CTA Curve */
.cta-curve {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--accent);
  margin-top: -1px;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.stat-item {
  text-align: center;
  padding: var(--spacing-md);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
  transition: transform var(--transition-base);
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  font-size: 1.125rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.section-dark .stat-label {
  color: var(--light);
}

/* ========================================
   FORMS
   ======================================== */

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */

.content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.content-text h2 {
  margin-bottom: var(--spacing-md);
}

.content-text p {
  color: var(--gray-600);
  margin-bottom: var(--spacing-md);
  font-size: 1.0625rem;
}

.content-text ul {
  margin-bottom: var(--spacing-md);
}

.content-text ul li {
  color: var(--gray-600);
  margin-bottom: var(--spacing-xs);
  font-size: 1.0625rem;
}

.content-image {
  width: 100%;
  height: 400px;
  background: var(--gray-300);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 1.125rem;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--dark);
  color: var(--light);
  padding: var(--spacing-xxl) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--spacing-md);
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--spacing-md);
}

.footer-logo-image {
  max-width: 180px;
  height: auto;
  margin-bottom: var(--spacing-md);
}

.footer-section h2 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.footer-section p {
  color: var(--gray-300);
  line-height: 1.8;
}

.footer-section p a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--white);
}

.footer-section p a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
  color: var(--gray-300);
  transition: color var(--transition-fast);
  text-decoration: underline;
  text-decoration-color: transparent;
}

.footer-section ul li a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.footer-bottom p {
  color: var(--gray-300);
  font-size: 0.9rem;
}

.footer-credit-link {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--white);
  font-weight: 600;
}

.footer-credit-link:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* ========================================
   PHOTO GALLERY
   ======================================== */

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 1px solid var(--gray-200);
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.25s; }
.gallery-item:nth-child(5) { animation-delay: 0.3s; }
.gallery-item:nth-child(6) { animation-delay: 0.35s; }

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  border-color: var(--accent);
}

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

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
  /* Typography */
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  /* Hero Billboard - Tablet */
  .hero-content-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-banner-sign {
    padding: 50px 60px;
  }

  .hero-text-content {
    padding-right: 0;
    text-align: center;
  }

  .hero-image-content {
    display: flex;
    justify-content: center;
  }

  .hero-storefront-img {
    max-width: 450px;
  }

  .modern-hero h1 {
    font-size: 3rem;
  }

  .modern-hero .hero-text {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .modern-hero .hero-buttons {
    justify-content: center;
  }

  /* Navigation */
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-container {
    width: 95%;
  }

  /* Content sections */
  .content-section {
    grid-template-columns: 1fr;
  }

  .content-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 2.5rem;
    line-height: 1.15;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  body {
    font-size: 1rem;
  }

  /* Hero */
  .hero {
    padding: calc(var(--spacing-xl) + 80px) 0 var(--spacing-xl) 0;
  }

  .hero-grid {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .hero-content {
    padding-left: 0;
    order: 1;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-text {
    font-size: 1.0625rem;
  }

  .hero-wave svg {
    height: 70px;
  }

  .page-hero {
    min-height: 400px;
    padding: calc(var(--spacing-xl) + 100px) 0 calc(var(--spacing-xl) + 30px) 0;
  }

  /* Modern Hero Layout */
  .hero-content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text-content {
    order: 2;
    padding-right: 0;
    text-align: center;
  }

  .hero-image-content {
    order: 1;
  }

  .hero-banner-sign {
    padding: 40px 30px;
  }

  .modern-hero h1 {
    font-size: 2.25rem;
  }

  .modern-hero .hero-text {
    font-size: 1.0625rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .modern-hero .hero-buttons {
    justify-content: center;
  }

  .hero-storefront-img {
    max-width: 100%;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  /* Services - mobile adjustments */
  .service-card {
    padding: var(--spacing-md);
  }

  .page-hero .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
  }

  .page-hero .hero-buttons {
    gap: var(--spacing-md);
  }

  .why-choose-curve svg {
    height: 70px;
  }

  .cta-curve svg {
    height: 60px;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .billboard-ad {
    padding: var(--spacing-lg);
  }

  .billboard-ad h1 {
    font-size: 2.25rem;
  }

  /* Benefits */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  /* Benefits Showcase */
  .benefits-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-number {
    font-size: 3rem;
  }

  .why-choose-intro h2 {
    font-size: 2.25rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  /* Sections */
  .section {
    padding: var(--spacing-xl) 0;
  }

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

@media (max-width: 576px) {
  /* Typography */
  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.625rem;
  }

  /* Buttons - allow wrapping on small screens */
  .btn {
    white-space: normal;
    line-height: 1.3;
  }

  /* Navigation */
  .nav-container {
    width: 100%;
    border-radius: 0;
    top: 0;
  }

  .nav-container.scrolled {
    top: 0;
  }

  .logo-image {
    height: 75px;
  }


  /* Hero */
  .hero {
    padding: calc(var(--spacing-xl) + 60px) 0 var(--spacing-xl) 0;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-label {
    font-size: 0.8rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .billboard-ad {
    padding: var(--spacing-md);
  }

  .billboard-ad h1 {
    font-size: 2rem;
  }

  .billboard-ad .hero-text {
    font-size: 0.95rem;
  }

  .hero-wave svg {
    height: 50px;
  }

  .page-hero {
    min-height: 350px;
    padding: calc(var(--spacing-xl) + 80px) 0 calc(var(--spacing-xl) + 20px) 0;
  }

  .page-hero h1 {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  .page-hero .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
  }

  .page-hero .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .page-hero .hero-buttons .btn {
    width: 100%;
  }

  .billboard-ad h1 {
    font-size: 1.75rem;
  }

  .billboard-ad .hero-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .why-choose-curve svg {
    height: 50px;
  }

  .cta-curve svg {
    height: 40px;
  }

  /* Benefits */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  /* Benefits Showcase */
  .benefits-showcase {
    grid-template-columns: 1fr;
  }

  .benefit-number {
    font-size: 2.5rem;
  }

  .benefit-card {
    padding: var(--spacing-lg);
  }

  /* Services - smaller mobile */
  .service-card {
    padding: var(--spacing-sm);
    min-width: 0;
    overflow-wrap: break-word;
  }

  .service-card .btn {
    max-width: 100%;
    font-size: 0.8rem;
    padding: 0.875rem 1.5rem;
  }

  .section-label {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  /* Spacing */
  :root {
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
  }

  .container {
    padding: 0 1.25rem;
  }
}

/* Extra small mobile devices */
@media (max-width: 375px) {
  .container {
    padding: 0 1rem;
  }

  .service-card {
    padding: 1rem;
    border-radius: 12px;
    min-width: 0;
  }

  .service-card .btn {
    max-width: 100%;
    font-size: 0.75rem;
    padding: 0.75rem 1.25rem;
  }

  .services-grid {
    gap: 1rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 0.9375rem;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

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

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Left spotlight flicker - 37 second cycle */
@keyframes leftSpotlightFlicker {
  0%, 4%, 36%, 40%, 71%, 75%, 100% {
    opacity: 0.8;
  }
  /* First flicker at ~5% (2s) */
  5% {
    opacity: 0.2;
  }
  5.5% {
    opacity: 0.75;
  }
  6% {
    opacity: 0.15;
  }
  6.5% {
    opacity: 0.8;
  }
  7% {
    opacity: 0.3;
  }
  7.5% {
    opacity: 0.8;
  }
  /* Second flicker at ~38% (14s) */
  37.5% {
    opacity: 0.25;
  }
  38% {
    opacity: 0.8;
  }
  38.5% {
    opacity: 0.1;
  }
  39% {
    opacity: 0.7;
  }
  39.5% {
    opacity: 0.8;
  }
  /* Third flicker at ~73% (27s) */
  72% {
    opacity: 0.3;
  }
  72.5% {
    opacity: 0.75;
  }
  73% {
    opacity: 0.2;
  }
  73.5% {
    opacity: 0.8;
  }
  74% {
    opacity: 0.35;
  }
  74.5% {
    opacity: 0.8;
  }
}

/* Right spotlight flicker - 41 second cycle */
@keyframes rightSpotlightFlicker {
  0%, 13%, 17%, 45%, 49%, 77%, 81%, 100% {
    opacity: 0.8;
  }
  /* First flicker at ~15% (6s) */
  14% {
    opacity: 0.15;
  }
  14.5% {
    opacity: 0.7;
  }
  15% {
    opacity: 0.25;
  }
  15.5% {
    opacity: 0.8;
  }
  16% {
    opacity: 0.2;
  }
  16.5% {
    opacity: 0.8;
  }
  /* Second flicker at ~46% (19s) */
  46% {
    opacity: 0.3;
  }
  46.5% {
    opacity: 0.75;
  }
  47% {
    opacity: 0.1;
  }
  47.5% {
    opacity: 0.8;
  }
  48% {
    opacity: 0.25;
  }
  48.5% {
    opacity: 0.8;
  }
  /* Third flicker at ~78% (32s) */
  78% {
    opacity: 0.2;
  }
  78.5% {
    opacity: 0.8;
  }
  79% {
    opacity: 0.15;
  }
  79.5% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.3;
  }
  80.5% {
    opacity: 0.8;
  }
}

/* Left bulb flicker - synced with left spotlight */
@keyframes leftBulbFlicker {
  0%, 4%, 36%, 40%, 71%, 75%, 100% {
    box-shadow:
      0 0 10px rgba(255, 200, 100, 0.6),
      inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  }
  5%, 6%, 7% {
    box-shadow:
      0 0 3px rgba(255, 200, 100, 0.2),
      inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  }
  5.5%, 6.5%, 7.5% {
    box-shadow:
      0 0 10px rgba(255, 200, 100, 0.6),
      inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  }
  37.5%, 38.5% {
    box-shadow:
      0 0 2px rgba(255, 200, 100, 0.15),
      inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  }
  38%, 39%, 39.5% {
    box-shadow:
      0 0 10px rgba(255, 200, 100, 0.6),
      inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  }
  72%, 73%, 74% {
    box-shadow:
      0 0 3px rgba(255, 200, 100, 0.2),
      inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  }
  72.5%, 73.5%, 74.5% {
    box-shadow:
      0 0 10px rgba(255, 200, 100, 0.6),
      inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  }
}

/* Right bulb flicker - synced with right spotlight */
@keyframes rightBulbFlicker {
  0%, 13%, 17%, 45%, 49%, 77%, 81%, 100% {
    box-shadow:
      0 0 10px rgba(255, 200, 100, 0.6),
      inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  }
  14%, 15%, 16% {
    box-shadow:
      0 0 2px rgba(255, 200, 100, 0.15),
      inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  }
  14.5%, 15.5%, 16.5% {
    box-shadow:
      0 0 10px rgba(255, 200, 100, 0.6),
      inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  }
  46%, 47%, 48% {
    box-shadow:
      0 0 3px rgba(255, 200, 100, 0.2),
      inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  }
  46.5%, 47.5%, 48.5% {
    box-shadow:
      0 0 10px rgba(255, 200, 100, 0.6),
      inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  }
  78%, 79%, 80% {
    box-shadow:
      0 0 2px rgba(255, 200, 100, 0.15),
      inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  }
  78.5%, 79.5%, 80.5% {
    box-shadow:
      0 0 10px rgba(255, 200, 100, 0.6),
      inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  }
}

/* Realistic neon border flicker - 47 second cycle */
@keyframes neonBorderFlicker {
  0%, 18%, 21%, 44%, 48%, 69%, 73%, 100% {
    border-color: rgba(220, 20, 60, 0.8);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 80px rgba(220, 20, 60, 0.4),
      0 0 40px rgba(220, 20, 60, 0.6),
      0 0 20px rgba(220, 20, 60, 0.8);
  }
  /* First flicker at ~19.5% (9s) */
  19% {
    border-color: rgba(220, 20, 60, 0.55);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 55px rgba(220, 20, 60, 0.25),
      0 0 28px rgba(220, 20, 60, 0.38),
      0 0 14px rgba(220, 20, 60, 0.55);
  }
  19.3% {
    border-color: rgba(220, 20, 60, 0.75);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 75px rgba(220, 20, 60, 0.38),
      0 0 38px rgba(220, 20, 60, 0.55),
      0 0 19px rgba(220, 20, 60, 0.75);
  }
  19.6% {
    border-color: rgba(220, 20, 60, 0.45);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 45px rgba(220, 20, 60, 0.2),
      0 0 23px rgba(220, 20, 60, 0.3),
      0 0 12px rgba(220, 20, 60, 0.45);
  }
  19.9% {
    border-color: rgba(220, 20, 60, 0.7);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 70px rgba(220, 20, 60, 0.35),
      0 0 35px rgba(220, 20, 60, 0.5),
      0 0 18px rgba(220, 20, 60, 0.7);
  }
  20.2% {
    border-color: rgba(220, 20, 60, 0.6);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 60px rgba(220, 20, 60, 0.28),
      0 0 30px rgba(220, 20, 60, 0.42),
      0 0 15px rgba(220, 20, 60, 0.6);
  }
  20.5% {
    border-color: rgba(220, 20, 60, 0.8);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 80px rgba(220, 20, 60, 0.4),
      0 0 40px rgba(220, 20, 60, 0.6),
      0 0 20px rgba(220, 20, 60, 0.8);
  }
  /* Second flicker at ~46% (22s) */
  45.5% {
    border-color: rgba(220, 20, 60, 0.5);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 50px rgba(220, 20, 60, 0.22),
      0 0 25px rgba(220, 20, 60, 0.35),
      0 0 13px rgba(220, 20, 60, 0.5);
  }
  45.8% {
    border-color: rgba(220, 20, 60, 0.8);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 80px rgba(220, 20, 60, 0.4),
      0 0 40px rgba(220, 20, 60, 0.6),
      0 0 20px rgba(220, 20, 60, 0.8);
  }
  46.1% {
    border-color: rgba(220, 20, 60, 0.55);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 55px rgba(220, 20, 60, 0.25),
      0 0 28px rgba(220, 20, 60, 0.38),
      0 0 14px rgba(220, 20, 60, 0.55);
  }
  46.5% {
    border-color: rgba(220, 20, 60, 0.75);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 75px rgba(220, 20, 60, 0.38),
      0 0 38px rgba(220, 20, 60, 0.55),
      0 0 19px rgba(220, 20, 60, 0.75);
  }
  47% {
    border-color: rgba(220, 20, 60, 0.8);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 80px rgba(220, 20, 60, 0.4),
      0 0 40px rgba(220, 20, 60, 0.6),
      0 0 20px rgba(220, 20, 60, 0.8);
  }
  /* Third flicker at ~71% (33s) */
  70% {
    border-color: rgba(220, 20, 60, 0.6);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 60px rgba(220, 20, 60, 0.28),
      0 0 30px rgba(220, 20, 60, 0.42),
      0 0 15px rgba(220, 20, 60, 0.6);
  }
  70.4% {
    border-color: rgba(220, 20, 60, 0.7);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 70px rgba(220, 20, 60, 0.35),
      0 0 35px rgba(220, 20, 60, 0.5),
      0 0 18px rgba(220, 20, 60, 0.7);
  }
  70.8% {
    border-color: rgba(220, 20, 60, 0.5);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 50px rgba(220, 20, 60, 0.22),
      0 0 25px rgba(220, 20, 60, 0.35),
      0 0 13px rgba(220, 20, 60, 0.5);
  }
  71.2% {
    border-color: rgba(220, 20, 60, 0.8);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 80px rgba(220, 20, 60, 0.4),
      0 0 40px rgba(220, 20, 60, 0.6),
      0 0 20px rgba(220, 20, 60, 0.8);
  }
  71.6% {
    border-color: rgba(220, 20, 60, 0.65);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 65px rgba(220, 20, 60, 0.3),
      0 0 33px rgba(220, 20, 60, 0.45),
      0 0 17px rgba(220, 20, 60, 0.65);
  }
  72% {
    border-color: rgba(220, 20, 60, 0.8);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 0 80px rgba(220, 20, 60, 0.4),
      0 0 40px rgba(220, 20, 60, 0.6),
      0 0 20px rgba(220, 20, 60, 0.8);
  }
}

/* ========================================

/* ========================================
   ENHANCED 3D BILLBOARD HERO - Red/White Theme
   ======================================== */

.billboard-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(220, 20, 60, 0.15), transparent 50%),
    linear-gradient(160deg, #04050a 0%, #0c0f18 50%, #050506 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.billboard-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 15, 0.7) 0%, rgba(4, 5, 8, 0.2) 55%, transparent 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 15% 70%, rgba(220, 20, 60, 0.2), transparent 60%),
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.12), transparent 45%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: ambientPulse 12s ease-in-out infinite;
}

.billboard-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 320px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 80%),
    linear-gradient(0deg, rgba(8, 8, 12, 0.85) 0%, rgba(8, 8, 12, 0.3) 45%, transparent 90%),
    repeating-linear-gradient(
      90deg,
      rgba(18, 18, 24, 0.95) 0 110px,
      rgba(10, 10, 14, 0.95) 110px 180px
    );
  clip-path: polygon(0 100%, 0 40%, 8% 44%, 15% 36%, 25% 42%, 32% 30%, 42% 46%, 55% 34%, 63% 42%, 72% 35%, 82% 47%, 90% 38%, 100% 44%, 100% 100%);
  pointer-events: none;
}

.billboard-scene {
  position: relative;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding-top: 3rem;
}

.billboard-rigging {
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 150px;
  pointer-events: none;
  z-index: 0;
}

.rig-beam {
  position: absolute;
  top: 0;
  width: 42%;
  height: 12px;
  background: linear-gradient(90deg, rgba(30,30,32,0.9), rgba(14,14,18,0.95));
  border-radius: 6px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.6);
}

.rig-beam-left {
  left: 0;
}

.rig-beam-right {
  right: 0;
}

.rig-cable {
  position: absolute;
  top: 12px;
  width: 3px;
  height: 140px;
  background: linear-gradient(180deg, rgba(210, 210, 220, 0.7), rgba(100, 100, 120, 0.8));
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

.rig-cable::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(120, 120, 135, 0.9), rgba(70, 70, 85, 0.95));
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.rig-cable-left {
  left: 15%;
}

.rig-cable-right {
  right: 15%;
}

.billboard-wrapper {
  position: relative;
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1500px;
  padding: 1.5rem 1.5rem 3rem;
  z-index: 1;
}

.billboard-sign {
  position: relative;
  width: 100%;
  max-width: 1400px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
  z-index: 2;
}

.billboard-trusses {
  position: absolute;
  top: -35px;
  left: 4%;
  right: 4%;
  height: 35px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.truss {
  width: 48%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    rgba(26, 26, 28, 0.8),
    rgba(26, 26, 28, 0.8) 10px,
    rgba(12, 12, 16, 0.9) 10px,
    rgba(12, 12, 16, 0.9) 20px
  );
  border-radius: 6px;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.6);
}

.billboard-frame {
  position: relative;
  background:
    linear-gradient(120deg, rgba(18, 18, 18, 0.97), rgba(8, 8, 8, 0.98));
  backdrop-filter: blur(10px);
  padding: 2rem 3.5rem;
  border-radius: 14px;
  box-shadow:
    0 0 35px rgba(220, 20, 60, 0.45),
    0 0 80px rgba(220, 20, 60, 0.25),
    0 25px 45px rgba(0, 0, 0, 0.85),
    inset 0 0 70px rgba(220, 20, 60, 0.2),
    inset 0 3px 8px rgba(255, 255, 255, 0.1);
  border: 4px solid rgba(220, 20, 60, 0.85);
  overflow: visible;
  transform: rotateX(4deg) translateZ(40px);
  animation: panelFlicker 11s linear infinite;
}

/* Animated border glow */
.billboard-frame::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    45deg,
    rgba(220, 20, 60, 0.6),
    rgba(255, 255, 255, 0.3),
    rgba(220, 20, 60, 0.6),
    rgba(255, 255, 255, 0.3),
    rgba(220, 20, 60, 0.6)
  );
  background-size: 400% 400%;
  border-radius: 16px;
  animation: borderFlow 4s linear infinite;
  z-index: -1;
  filter: blur(8px);
}

/* Inner frame detail */
.billboard-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  pointer-events: none;
  box-shadow: 
    inset 0 0 20px rgba(220, 20, 60, 0.2),
    0 0 15px rgba(220, 20, 60, 0.3);
}

.billboard-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.billboard-ad {
  width: 100%;
  text-align: center;
}

.billboard-ad .hero-label {
  background: rgba(220, 20, 60, 0.15);
  color: var(--accent);
  border-radius: 4px;
  padding: 0.4rem 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  border-left: 3px solid var(--accent);
}

.billboard-ad h1 {
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-transform: none;
  font-weight: 900;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(220, 20, 60, 0.3);
}

.billboard-ad .hero-text {
  color: rgba(255, 255, 255, 0.9);
  max-width: 100%;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.billboard-ad .hero-buttons {
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.billboard-ad .btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.billboard-ad .btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
  color: var(--white);
}

.billboard-ad .btn-primary {
  background: var(--accent);
  box-shadow:
    0 4px 15px rgba(220, 20, 60, 0.5),
    0 0 20px rgba(220, 20, 60, 0.3);
}

.billboard-ad .btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  box-shadow:
    0 6px 25px rgba(220, 20, 60, 0.7),
    0 0 40px rgba(220, 20, 60, 0.5);
}

.billboard-tagline {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
  animation: neonFlicker 12s linear infinite;
  animation-delay: -2s;
}

.billboard-text {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 
    /* Red neon glow layers */
    0 0 15px rgba(220, 20, 60, 1),
    0 0 30px rgba(220, 20, 60, 0.8),
    0 0 45px rgba(220, 20, 60, 0.6),
    0 0 60px rgba(220, 20, 60, 0.4),
    0 0 90px rgba(220, 20, 60, 0.3),
    0 0 120px rgba(220, 20, 60, 0.2),
    /* Depth shadow */
    3px 3px 6px rgba(0, 0, 0, 0.9),
    6px 6px 12px rgba(0, 0, 0, 0.6);
  animation: neonPulseRed 2.5s ease-in-out infinite alternate;
  line-height: 0.9;
  margin-bottom: 0.35rem;
  transform: translateZ(30px);
  filter: drop-shadow(0 5px 15px rgba(220, 20, 60, 0.5));
  animation: neonPulseRed 2.5s ease-in-out infinite alternate, neonFlicker 9s linear infinite;
}

.billboard-text-sub {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 
    /* White neon glow */
    0 0 15px rgba(255, 255, 255, 1),
    0 0 30px rgba(255, 255, 255, 0.8),
    0 0 45px rgba(255, 255, 255, 0.6),
    0 0 60px rgba(255, 255, 255, 0.4),
    /* Depth shadow */
    3px 3px 6px rgba(0, 0, 0, 0.9),
    6px 6px 12px rgba(0, 0, 0, 0.6);
  animation: neonPulseWhite 2.5s ease-in-out infinite alternate;
  line-height: 0.95;
  transform: translateZ(25px);
  filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.4));
  animation: neonPulseWhite 2.5s ease-in-out infinite alternate, neonFlicker 9s linear infinite;
}

.billboard-divider {
  width: 140px;
  height: 2px;
  margin: 1rem auto 0.5rem;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  opacity: 0.8;
}

.billboard-location {
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  animation: neonFlicker 13s linear infinite;
  animation-delay: -4s;
}

.billboard-catwalk {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -50px;
  height: 40px;
  pointer-events: none;
}

.catwalk-railing {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, rgba(120, 120, 130, 0.9), rgba(70, 70, 80, 0.9));
  border-radius: 4px;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.catwalk-platform {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 18px;
  background: linear-gradient(180deg, rgba(35, 35, 40, 0.95), rgba(15, 15, 20, 0.95));
  border-radius: 10px 10px 4px 4px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
}

.billboard-spotlight {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(35, 35, 35, 0.85), rgba(12, 12, 12, 0.95));
  border-radius: 50%;
  bottom: -70px;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1), 0 8px 20px rgba(0, 0, 0, 0.7);
  overflow: visible;
}

.billboard-spotlight::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 260px;
  transform: translate(-50%, -10%) rotate(-8deg);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.25), transparent 70%);
  opacity: 0.15;
  filter: blur(2px);
}

.spotlight-left {
  left: 20%;
}

.spotlight-left::after {
  transform: translate(-50%, -10%) rotate(-12deg);
}

.spotlight-right {
  right: 20%;
}

.spotlight-right::after {
  transform: translate(-50%, -10%) rotate(12deg);
}

/* 3D Billboard pole with realistic depth */
.billboard-pole {
  position: absolute;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%) translateZ(-20px);
  width: 30px;
  height: 180px;
  background: linear-gradient(to right, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  border-radius: 15px;
  box-shadow: 
    -5px 0 15px rgba(0, 0, 0, 0.8),
    5px 0 15px rgba(0, 0, 0, 0.6),
    inset -2px 0 5px rgba(0, 0, 0, 0.5),
    inset 2px 0 5px rgba(255, 255, 255, 0.1);
  overflow: visible;
}

.billboard-supports {
  position: absolute;
  bottom: -120px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 18%;
}

.support {
  width: 6px;
  height: 120px;
  background: linear-gradient(180deg, rgba(120, 120, 130, 0.6), rgba(40, 40, 45, 0.9));
  transform-origin: top;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.support-left {
  transform: skewX(-12deg);
}

.support-right {
  transform: skewX(12deg);
}

.billboard-braces {
  position: absolute;
  bottom: -110px;
  left: 0;
  right: 0;
  height: 140px;
  pointer-events: none;
  z-index: 0;
}

.brace {
  position: absolute;
  width: 8px;
  height: 140px;
  background: linear-gradient(180deg, rgba(90, 90, 100, 0.9), rgba(35, 35, 45, 0.95));
  border-radius: 4px;
  box-shadow: inset 0 -2px 3px rgba(0, 0, 0, 0.6), 0 4px 12px rgba(0, 0, 0, 0.6);
  transform-origin: bottom;
  bottom: -10px;
}

.brace::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(125, 125, 135, 0.9), rgba(70, 70, 80, 0.95));
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.brace-left {
  left: calc(50% - 4px);
  transform: rotate(-18deg);
}

.brace-right {
  left: calc(50% - 4px);
  transform: rotate(18deg);
}

/* Pole mounting bracket */
.billboard-pole::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 25px;
  background: linear-gradient(to bottom, #2d2d2d 0%, #1a1a1a 50%, #0a0a0a 100%);
  border-radius: 6px;
  box-shadow: 
    0 4px 10px rgba(0, 0, 0, 0.6),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

/* Pole base shadow */
.billboard-pole::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
}

/* Light rays effect */
.billboard-frame .light-rays {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 30%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  border-radius: 16px;
  pointer-events: none;
  opacity: 0.6;
  animation: raysShimmer 3s ease-in-out infinite alternate;
}

/* Animations */
@keyframes neonPulseRed {
  0%, 100% {
    text-shadow: 
      0 0 15px rgba(220, 20, 60, 1),
      0 0 30px rgba(220, 20, 60, 0.8),
      0 0 45px rgba(220, 20, 60, 0.6),
      0 0 60px rgba(220, 20, 60, 0.4),
      0 0 90px rgba(220, 20, 60, 0.3),
      0 0 120px rgba(220, 20, 60, 0.2),
      3px 3px 6px rgba(0, 0, 0, 0.9),
      6px 6px 12px rgba(0, 0, 0, 0.6);
  }
  50% {
    text-shadow: 
      0 0 20px rgba(220, 20, 60, 1),
      0 0 40px rgba(220, 20, 60, 1),
      0 0 60px rgba(220, 20, 60, 0.8),
      0 0 80px rgba(220, 20, 60, 0.6),
      0 0 110px rgba(220, 20, 60, 0.4),
      0 0 140px rgba(220, 20, 60, 0.3),
      3px 3px 6px rgba(0, 0, 0, 0.9),
      6px 6px 12px rgba(0, 0, 0, 0.6);
  }
}

@keyframes neonPulseWhite {
  0%, 100% {
    text-shadow: 
      0 0 15px rgba(255, 255, 255, 1),
      0 0 30px rgba(255, 255, 255, 0.8),
      0 0 45px rgba(255, 255, 255, 0.6),
      0 0 60px rgba(255, 255, 255, 0.4),
      3px 3px 6px rgba(0, 0, 0, 0.9),
      6px 6px 12px rgba(0, 0, 0, 0.6);
  }
  50% {
    text-shadow: 
      0 0 20px rgba(255, 255, 255, 1),
      0 0 40px rgba(255, 255, 255, 1),
      0 0 60px rgba(255, 255, 255, 0.8),
      0 0 80px rgba(255, 255, 255, 0.6),
      3px 3px 6px rgba(0, 0, 0, 0.9),
      6px 6px 12px rgba(0, 0, 0, 0.6);
  }
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes billboardFloat {
  0%, 100% {
    transform: translateY(0px) rotateX(5deg);
  }
  50% {
    transform: translateY(-15px) rotateX(5deg) rotateZ(0.5deg);
  }
}

@keyframes ambientPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes raysShimmer {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes neonFlicker {
  0%, 15%, 30%, 60%, 100% {
    opacity: 1;
    filter: brightness(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.25));
  }
  16%, 31% {
    opacity: 0.85;
    filter: brightness(0.85) drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
  }
  18%, 33%, 61% {
    opacity: 0.65;
    filter: brightness(0.7) drop-shadow(0 0 3px rgba(255, 255, 255, 0.15));
  }
  19%, 34%, 62% {
    opacity: 1;
  }
  45% {
    opacity: 0.9;
  }
}

@keyframes panelFlicker {
  0%, 20%, 55%, 100% {
    filter: brightness(1);
    box-shadow:
      0 0 40px rgba(220, 20, 60, 0.45),
      0 0 90px rgba(220, 20, 60, 0.25),
      0 30px 60px rgba(0, 0, 0, 0.85),
      inset 0 0 80px rgba(220, 20, 60, 0.2),
      inset 0 3px 8px rgba(255, 255, 255, 0.1);
  }
  21%, 22% {
    filter: brightness(0.8);
    box-shadow:
      0 0 25px rgba(220, 20, 60, 0.35),
      0 0 60px rgba(220, 20, 60, 0.2),
      0 30px 50px rgba(0, 0, 0, 0.75),
      inset 0 0 40px rgba(220, 20, 60, 0.15),
      inset 0 3px 5px rgba(255, 255, 255, 0.08);
  }
  40% {
    filter: brightness(0.9);
  }
  56% {
    filter: brightness(0.75);
  }
  57% {
    filter: brightness(1);
  }
}

/* Responsive Billboard */
@media (max-width: 968px) {
  .billboard-wrapper {
    min-height: 260px;
  }

  .billboard-rigging {
    top: -10px;
  }

  .billboard-sign {
    max-width: 1100px;
  }

  .billboard-frame {
    padding: 1.75rem 2.5rem;
  }

  .billboard-ad h1 {
    font-size: 2rem;
  }

  .billboard-ad .hero-text {
    font-size: 0.95rem;
  }

  .billboard-spotlight::after {
    width: 180px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .billboard-wrapper {
    min-height: 240px;
  }

  .billboard-sign {
    max-width: 900px;
  }

  .billboard-frame {
    padding: 1.5rem 2rem;
  }

  .billboard-ad h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .billboard-ad .hero-text {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }

  .billboard-ad .hero-label {
    font-size: 0.7rem;
    padding: 0.35rem 1rem;
  }

  .billboard-ad .hero-buttons {
    gap: 0.75rem;
  }

  .billboard-ad .btn-large {
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
  }

  .billboard-catwalk {
    bottom: -40px;
  }

  .billboard-supports {
    padding: 0 12%;
  }

  .billboard-pole {
    width: 25px;
    height: 150px;
    bottom: -150px;
  }

  .billboard-spotlight {
    width: 48px;
    height: 48px;
  }

  .billboard-spotlight::after {
    width: 150px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .billboard-wrapper {
    min-height: 200px;
  }

  .billboard-sign {
    max-width: 100%;
  }

  .billboard-frame {
    padding: 1.25rem 1.5rem;
    border-width: 3px;
  }

  .billboard-ad h1 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .billboard-ad .hero-text {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .billboard-ad .hero-label {
    font-size: 0.65rem;
    padding: 0.3rem 0.85rem;
    margin-bottom: 0.75rem;
  }

  .billboard-ad .hero-buttons {
    flex-direction: column;
    gap: 0.65rem;
  }

  .billboard-ad .btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    width: 100%;
  }

  .billboard-catwalk {
    bottom: -30px;
  }

  .billboard-supports {
    padding: 0 8%;
    bottom: -90px;
  }

  .billboard-pole {
    width: 20px;
    height: 120px;
    bottom: -120px;
  }

  .billboard-spotlight {
    display: none;
  }
}

/* ========================================
   BILLBOARD HERO TEXT OVERRIDES - Red Theme
   ======================================== */

.billboard-hero .hero-content {
  padding-left: 0;
  padding-top: var(--spacing-lg);
}

.billboard-hero .hero-label {
  color: var(--accent);
  background: rgba(220, 20, 60, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border-left: 3px solid var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 0 10px rgba(220, 20, 60, 0.2);
}

.billboard-hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(220, 20, 60, 0.3);
  margin-bottom: var(--spacing-md);
}

.billboard-hero .hero-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  line-height: 1.8;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  max-width: 600px;
}

.billboard-hero .btn-primary {
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  box-shadow: 
    0 4px 15px rgba(220, 20, 60, 0.5),
    0 0 20px rgba(220, 20, 60, 0.3);
  transition: all var(--transition-base);
  border: 2px solid rgba(220, 20, 60, 0.5);
}

.billboard-hero .btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  box-shadow:
    0 6px 25px rgba(220, 20, 60, 0.7),
    0 0 40px rgba(220, 20, 60, 0.5);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.billboard-hero .btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.billboard-hero .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 
    0 4px 20px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments for billboard hero text */
@media (max-width: 768px) {
  .billboard-hero h1 {
    font-size: 2.5rem;
  }

  .billboard-hero .hero-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .billboard-hero h1 {
    font-size: 2rem;
  }

  .billboard-hero .hero-label {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }

  .billboard-hero .hero-text {
    font-size: 0.95rem;
  }
}

/* ===================================
   Lightbox Styles
   =================================== */

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: var(--spacing-lg);
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  animation: lightboxZoom 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

@keyframes lightboxZoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-xl);
  color: var(--white);
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
  line-height: 1;
  user-select: none;
}

.lightbox-close:hover {
  color: var(--accent);
  transform: scale(1.1);
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  padding: var(--spacing-md);
  max-width: 800px;
  font-size: 1rem;
  margin-top: var(--spacing-md);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95%;
    max-height: 80vh;
  }

  .lightbox-close {
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 2.5rem;
  }

  .lightbox {
    padding: var(--spacing-md);
  }
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.testimonial-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border-top: 4px solid var(--accent);
}

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

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--spacing-md);
  color: #f5a623;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  font-style: italic;
}

.testimonial-author {
  margin-bottom: 0.5rem;
}

.testimonial-author strong {
  color: var(--dark);
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-business {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: block;
}

.testimonial-date {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.testimonials-footer {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid #e0e0e0;
}

.testimonials-footer p {
  color: var(--text-muted);
  font-size: 1rem;
}

.testimonials-footer a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.testimonials-footer a:hover {
  color: var(--dark);
  text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .testimonial-card {
    padding: var(--spacing-md);
  }

  .testimonial-text {
    font-size: 0.95rem;
  }
}

/* ===================================
   Wave Divider Styles
   =================================== */

.hero-wave .wave-divider,
.modern-hero .hero-wave .wave-divider {
  display: block;
  width: 100%;
  height: 100px;
  position: relative;
}

.why-choose-curve .wave-divider {
  display: block;
  width: 100%;
  height: 100px;
  position: relative;
  transform: translateZ(0);
}

.cta-curve .wave-divider {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  transform: rotate(180deg);
}

/* Responsive wave heights */
@media (max-width: 768px) {
  .hero-wave .wave-divider,
  .modern-hero .hero-wave .wave-divider {
    height: 70px;
  }

  .why-choose-curve .wave-divider {
    height: 70px;
  }

  .cta-curve .wave-divider {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .hero-wave .wave-divider,
  .modern-hero .hero-wave .wave-divider {
    height: 50px;
  }

  .why-choose-curve .wave-divider {
    height: 50px;
  }

  .cta-curve .wave-divider {
    height: 40px;
  }
}

/* ===================================
   Company Section
   =================================== */

.company-section {
  padding: var(--spacing-xxl) 0;
}

.company-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
  margin-bottom: var(--spacing-xxl);
}

.company-left {
  max-width: 600px;
}

.company-left .section-label {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}

.company-left h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.company-left p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin: 0;
}

.company-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.value-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.value-card:hover {
  background: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  flex-shrink: 0;
}

.value-card span {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacing-md);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--gray-200);
}

.company-stat-item {
  text-align: center;
  padding: var(--spacing-md);
  position: relative;
}

.company-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--gray-200);
}

.company-stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.company-stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 968px) {
  .company-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .company-left h2 {
    font-size: 2rem;
  }

  .company-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .company-stat-item:nth-child(3)::after {
    display: none;
  }
}

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

  .company-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }

  .company-stat-item:nth-child(even)::after {
    display: none;
  }

  .company-stat-number {
    font-size: 1.75rem;
  }

  .company-left h2 {
    font-size: 1.75rem;
  }
}

/* ========================================
   Contact Page - Optimized Compact Design
   ======================================== */

/* Compact Hero Section */
.contact-hero-compact {
  position: relative;
  background: linear-gradient(135deg, var(--gray-900), var(--primary));
  padding: calc(var(--spacing-xl) + 100px) 0 calc(var(--spacing-xl) + 60px) 0;
  overflow: hidden;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-hero-main h1 {
  color: white;
  margin-bottom: var(--spacing-sm);
  font-size: 3.5rem;
}

.contact-hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
}

.contact-phone-display {
  display: block;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: var(--spacing-md);
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.contact-phone-display:hover {
  transform: scale(1.03);
}

.contact-hero-main .btn {
  display: inline-flex;
  align-items: center;
}

/* Compact Business Hours */
.contact-hours-compact {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hours-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  color: white;
}

.contact-hours-header i {
  color: var(--accent);
}

.contact-hours-header h3 {
  margin: 0;
  color: white;
  font-size: 1.25rem;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-xs) 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hours-row:last-child {
  border-bottom: none;
}

.contact-hours-row.closed {
  opacity: 0.6;
}

.contact-hours-row .day {
  font-weight: 600;
}

.contact-hours-row .time {
  color: rgba(255, 255, 255, 0.75);
}

/* Contact Main Section */
.contact-main {
  padding: var(--spacing-xl) 0;
}

.contact-info-compact {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.contact-section-header h2 {
  font-size: 2rem;
  color: var(--primary);
}

/* Compact Benefits Grid */
.contact-benefits-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.benefit-item-compact {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: white;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}

.benefit-item-compact:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.benefit-icon-compact {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.benefit-item-compact h4 {
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 1.125rem;
}

.benefit-item-compact p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.4;
}

/* Contact Methods Section with Storefront */
.contact-methods-section {
  background: var(--gray-50);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  overflow: hidden;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.method-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.contact-method-item h4 {
  margin-bottom: var(--spacing-xs);
  color: var(--primary);
  font-size: 1.125rem;
}

.contact-method-item p {
  margin: 0 0 var(--spacing-xs) 0;
  color: var(--gray-700);
  line-height: 1.5;
}

.contact-method-item a {
  display: block;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: var(--spacing-xs);
  transition: color 0.3s ease;
}

.contact-method-item a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.method-note {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-500);
  font-style: italic;
}

/* Storefront Showcase */
.contact-storefront-showcase {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15),
    0 0 0 3px rgba(220, 20, 60, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-storefront-showcase:hover {
  transform: translateY(-4px);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.2),
    0 0 0 3px rgba(220, 20, 60, 0.4);
}

.storefront-image {
  width: 100%;
  height: auto;
  display: block;
}

.storefront-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  padding: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: white;
}

.storefront-overlay i {
  color: var(--accent);
  flex-shrink: 0;
}

.storefront-overlay p {
  margin: 0;
  font-weight: 600;
  font-size: 1.125rem;
}

/* Tablet Responsive */
@media (max-width: 992px) {
  .contact-hero-grid {
    gap: 40px;
  }

  .contact-hero-main h1 {
    font-size: 3rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-hero-compact {
    padding: calc(var(--spacing-xl) + 80px) 0 calc(var(--spacing-xl) + 40px) 0;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .contact-hero-main {
    text-align: center;
  }

  .contact-hero-main h1 {
    font-size: 2.5rem;
  }

  .contact-phone-display {
    font-size: 2rem;
  }

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

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

  .contact-methods-section {
    padding: var(--spacing-lg);
  }
}
