/* Global Variables & Premium Color System */
:root {
  --primary: #0a1931;       /* Deep Navy */
  --primary-hover: #15305b;
  --accent: #ffc107;        /* Star Gold */
  --accent-hover: #e0a800;
  --secondary: #ff3e3e;     /* Crimson Red */
  --secondary-hover: #d62828;
  
  --bg-dark: #050c1a;
  --bg-light: #f4f6f9;
  --bg-card: #ffffff;
  --text-main: #111827;
  --text-muted: #4b5563;
  --text-white: #ffffff;
  --border-light: #e5e7eb;
  
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  
  --font-family: 'Poppins', 'Albert Sans', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --box-shadow: 0 15px 35px -12px rgba(10, 25, 49, 0.08);
  --box-shadow-hover: 0 25px 45px -10px rgba(10, 25, 49, 0.16);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button, input, select, textarea {
  font-family: inherit;
}

/* Floating Navigation Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

header.scrolled {
  padding: 12px 0;
  background-color: rgba(255, 253, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 62, 62, 0.2);
  box-shadow: 0 10px 30px -10px rgba(10, 25, 49, 0.08);
}

header.scrolled .nav-link {
  color: var(--text-muted);
}

header.scrolled .nav-link:hover {
  color: var(--secondary);
}

header.scrolled .phone-link {
  color: var(--primary);
}

header.scrolled .phone-link:hover {
  color: var(--secondary);
}

header.scrolled .hamburger-bar {
  background-color: var(--primary);
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

header.scrolled .logo-img {
  height: 44px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

/* Transparent Header overrides on Desktop */
@media (min-width: 769px) {
  header:not(.scrolled) .logo-text {
    color: var(--text-white);
  }
  header:not(.scrolled) .logo-accent {
    color: var(--accent);
  }
  header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.85);
  }
  header:not(.scrolled) .nav-link:hover {
    color: var(--secondary);
  }
  header:not(.scrolled) .phone-link {
    color: var(--text-white);
  }
  header:not(.scrolled) .phone-link:hover {
    color: var(--secondary);
  }
}

/* Desktop Navigation */
.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* Navigation CTA Button */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--primary);
  font-size: 16px;
}

.phone-svg-icon {
  width: 18px;
  height: 18px;
  fill: var(--secondary);
  animation: pulse-phone 2s infinite;
}

@keyframes pulse-phone {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.btn-dispatch-nav {
  padding: 12px 24px;
  background-color: var(--secondary);
  color: var(--text-white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px -8px rgba(255, 62, 62, 0.4);
  transition: var(--transition);
}

.btn-dispatch-nav:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(255, 62, 62, 0.6);
}

/* Hamburger Mobile Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger-bar {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 4px;
  transition: var(--transition);
}

.nav-toggle.open .hamburger-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.open .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .hamburger-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Split Hero Section */
.hero-split {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 120px 0 40px;
  background: url('./assets/photos/luxury_garage_driveway.png') no-repeat center center;
  background-size: cover;
  position: relative;
}

.hero-split::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 25, 49, 0.92) 0%, rgba(5, 12, 26, 0.82) 100%);
  z-index: 1;
}

.hero-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 13px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.highlight-text {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.value-bullets {
  list-style: none;
  margin-bottom: 20px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-hero-primary {
  padding: 16px 36px;
  background-color: var(--secondary);
  color: var(--text-white);
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 10px 25px -10px rgba(255, 62, 62, 0.4);
}

.btn-hero-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -8px rgba(255, 62, 62, 0.5);
}

.btn-hero-secondary {
  padding: 16px 36px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Booking Form Card */
.booking-card-wrapper {
  background-color: var(--bg-card);
  border-radius: 16px;
  box-shadow: var(--box-shadow-hover);
  border: 1px solid rgba(10, 25, 49, 0.05);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.booking-card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--secondary) 50%, var(--primary) 100%);
}

.booking-card-header {
  margin-bottom: 16px;
}

.booking-card-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.booking-card-header p {
  font-size: 13.5px;
  color: var(--text-muted);
}

.dispatch-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input, .form-group select {
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 15px;
  color: var(--text-main);
  background-color: #f9fafb;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--primary);
  background-color: var(--text-white);
  box-shadow: 0 0 0 4px rgba(10, 25, 49, 0.06);
}

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

.address-group {
  position: relative;
}

/* Autocomplete address suggestions */
.autocomplete-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: var(--box-shadow-hover);
  z-index: 100;
  max-height: 240px;
  overflow-y: auto;
}

.suggestion-item {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: var(--transition);
}

.suggestion-item:hover {
  background-color: rgba(255, 193, 7, 0.08);
}

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

.primary-text {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-main);
}

.secondary-text {
  font-size: 11px;
  color: var(--text-muted);
}

.input-error {
  border-color: var(--secondary) !important;
  box-shadow: 0 0 0 4px rgba(255, 62, 62, 0.08) !important;
}

.btn-submit-dispatch {
  padding: 15px;
  background-color: var(--secondary);
  color: var(--text-white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px -8px rgba(255, 62, 62, 0.4);
  transition: var(--transition);
  text-align: center;
}

.btn-submit-dispatch:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -6px rgba(255, 62, 62, 0.5);
}

/* Trust Ratings Ribbon Section */
.trust-ratings-ribbon {
  background-color: var(--bg-dark);
  padding: 12px 0;
  color: var(--text-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ribbon-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

.ribbon-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ribbon-icon {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.google-color { color: #ffc107; }
.yelp-color { color: #ff3e3e; }
.thumbtack-color { color: #00d2c4; }
.nextdoor-color { color: #2ecc71; }
.angie-color { color: #ff5a00; }
.bbb-color { color: #3498db; }
.guarantee-color { color: #10b981; }

.ribbon-content {
  display: flex;
  flex-direction: column;
}

.ribbon-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ribbon-stars {
  font-size: 15px;
  font-weight: 700;
}

/* Brands Section & Scrolling Marquee */
.brands-section {
  padding: 40px 0;
  background-color: #f8fafc;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.brands-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.brands-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 5rem;
  align-items: center;
  animation: scrollInfinite 32s linear infinite;
}

.marquee-track a {
  display: inline-block;
  flex-shrink: 0;
  outline: none;
}

.marquee-track img {
  height: 38px;
  width: auto;
  max-width: none;
  opacity: 0.95;
  transition: opacity 0.3s ease, transform 0.3s ease;
  object-fit: contain;
}

.marquee-track img:hover {
  opacity: 1;
  transform: scale(1.08);
}

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

/* Core Services Section */
.services-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
  border-color: rgba(10, 25, 49, 0.08);
}

.card-image-box {
  position: relative;
  height: 240px;
  overflow: hidden;
  background-color: #e5e7eb;
}

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

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

.card-placeholder-image {
  width: 100%;
  height: 100%;
}

.card-smart-bg {
  background: linear-gradient(135deg, rgba(10, 25, 49, 0.85) 0%, rgba(255, 62, 62, 0.85) 100%);
}

.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.card-content {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.card-content p {
  font-size: 15px;
  color: var(--text-muted);
  flex-grow: 1;
}

.card-action-link {
  font-weight: 700;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.card-action-link:hover {
  color: var(--primary);
}

/* Custom Door Showcase Section */
.custom-showcase-section {
  padding: 100px 0;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.custom-showcase-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--box-shadow-hover);
  border: 1px solid var(--border-light);
  aspect-ratio: 4/3;
  transition: var(--transition);
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-visual:hover {
  transform: scale(1.02);
}

.showcase-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.showcase-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.showcase-title {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--primary);
}

.showcase-description {
  font-size: 16px;
  color: var(--text-muted);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
  margin: 8px 0;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-number {
  font-size: 30px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.spec-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.btn-showcase-cta {
  padding: 16px 32px;
  background-color: var(--primary);
  color: var(--text-white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 25px -8px rgba(10, 25, 49, 0.4);
  transition: var(--transition);
}

.btn-showcase-cta:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -6px rgba(10, 25, 49, 0.5);
}

/* Meet Our Team Section */
.team-banner-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.team-banner-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.team-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.team-subtitle {
  font-size: 12px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 2.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.team-title {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.team-desc {
  font-size: 16px;
  color: var(--text-muted);
}

.team-visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.team-visual-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-light);
}

.team-visual-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

#team-visual-group {
  max-width: 800px;
  margin: 0 auto;
}

#team-visual-group img {
  object-position: center 25%;
}

.team-visual-item:hover img {
  transform: scale(1.03);
}

.visual-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(10, 25, 49, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-bullets-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-bullet-card {
  background-color: var(--bg-card);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--box-shadow);
  position: relative;
  transition: var(--transition);
}

.team-bullet-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 193, 7, 0.3);
  box-shadow: var(--box-shadow-hover);
}

.bullet-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 193, 7, 0.15);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.team-bullet-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.team-bullet-card p {
  font-size: 14px;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  color: var(--text-white);
  position: relative;
}

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

.testimonial-showcase-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.testimonial-image-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 1/1;
}

.testimonial-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-content-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.star-rating-row {
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
}

.author-location {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Accordion FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

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

.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border-light);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  box-shadow: var(--box-shadow-hover);
  border-color: rgba(10, 25, 49, 0.1);
}

.faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary);
  transition: var(--transition);
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--text-muted);
  border-top: 1px solid transparent;
}

.faq-item[open] .faq-answer {
  border-top-color: #f3f4f6;
}

/* Modal Backdrop & Success Modal Card */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(5, 12, 26, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--secondary);
}

.modal-icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.checkmark-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #10b981;
}

.checkmark {
  display: inline-block;
  width: 16px;
  height: 30px;
  border: solid #10b981;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
  margin-top: -4px;
}

.modal-title {
  font-size: 24px;
  font-weight: 850;
  color: var(--primary);
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-details {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 16px;
  text-align: left;
  margin-bottom: 24px;
  font-size: 14px;
  border: 1px solid var(--border-light);
}

.modal-detail-row {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.modal-detail-row:last-child {
  margin-bottom: 0;
}

.modal-detail-label {
  font-weight: 700;
  color: var(--text-muted);
}

.modal-detail-val {
  font-weight: 800;
  color: var(--primary);
}

.modal-action-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.btn-modal-dismiss {
  width: 100%;
  padding: 14px;
  background-color: var(--primary);
  color: var(--text-white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-modal-dismiss:hover {
  background-color: var(--primary-hover);
}

/* Mobile Sticky Call Bar */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary);
  z-index: 999;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.sticky-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  color: var(--text-white);
  font-weight: 800;
  font-size: 14px;
  text-align: center;
}

.sticky-call-btn .phone-svg-icon {
  fill: var(--text-white);
}

/* Footer Section */
.site-footer {
  background-color: var(--primary);
  color: var(--text-white);
  padding: 80px 0 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-license {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  margin-top: 10px;
}

.footer-contact-details a:hover {
  color: var(--accent);
}

.footer-social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-icon-link {
  color: var(--text-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.social-icon-link svg {
  width: 20px;
  height: 20px;
}

.social-icon-link:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
  border-color: var(--accent);
}

.footer-disclaimer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-disclaimer h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.footer-disclaimer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-bottom {
  background-color: var(--bg-dark);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 24px;
}

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

/* Before & After Restoration Carousel Styles */
.ba-carousel-section {
  background-color: #faf9f6;
  background-image: 
    linear-gradient(rgba(10, 25, 49, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 25, 49, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 6rem 2rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.ba-carousel-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  border: 1px dashed rgba(10, 25, 49, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.ba-section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.ba-section-header {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.ba-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ba-header-badge {
  background: rgba(255, 62, 62, 0.08);
  color: var(--secondary);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  border: 1px solid rgba(255, 62, 62, 0.15);
}

.ba-header-title {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -1px;
}

.ba-header-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.ba-carousel-controls {
  display: flex;
  gap: 12px;
}

.ba-control-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.ba-control-btn:hover {
  border-color: var(--secondary);
  background: rgba(255, 62, 62, 0.04);
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-hover);
}

.ba-carousel-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0 20px 0;
}

.ba-carousel-track {
  display: flex;
  gap: 32px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.ba-card {
  flex: 0 0 calc(33.333% - 21.333px);
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 20px;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.ba-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.ba-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  touch-action: none;
  --clip-pos: 50%;
}

.ba-slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.ba-slider-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-slider-after {
  z-index: 1;
}

.ba-slider-before {
  z-index: 2;
  width: 100%;
  clip-path: inset(0 calc(100% - var(--clip-pos, 50%)) 0 0);
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  left: var(--clip-pos, 50%);
  width: 2px;
  height: 100%;
  background: #ffffff;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.ba-slider-arrows {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border: 2px solid #ffffff;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.ba-slider-container:hover .ba-slider-arrows {
  transform: scale(1.1);
}

.ba-icon-overlay {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-light);
}

.ba-icon-overlay svg {
  color: var(--secondary);
  width: 24px;
  height: 24px;
}

.ba-card-label {
  position: absolute;
  top: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.label-before {
  left: 12px;
  background: rgba(255, 62, 62, 0.9);
  color: #ffffff;
}

.label-after {
  right: 12px;
  background: rgba(16, 185, 129, 0.9);
  color: #ffffff;
}

.ba-card-title {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  color: var(--primary);
  margin: 36px 0 8px 0;
}

.ba-card-cta-wrapper {
  text-align: center;
}

.ba-card-cta {
  font-size: 13px;
  font-weight: 800;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ba-card-cta:hover {
  color: var(--primary);
  transform: translateX(4px);
}

/* Verified Reviews Grid Section Styles */
.reviews-section {
  padding: 100px 0;
  background-color: var(--primary);
  color: var(--text-white);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.avatar-d { background-color: #f43f5e; }
.avatar-c { background-color: #3b82f6; }
.avatar-j { background-color: #10b981; }

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author-name {
  font-weight: 700;
  font-size: 15px;
}

.review-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 1px;
}

.review-source-badge {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.review-text {
  font-size: 14px;
  line-height: 1.65;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  flex-grow: 1;
}

.technician-reply {
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 13px;
}

.technician-reply strong {
  display: block;
  color: var(--accent);
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.technician-reply p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Mobile & Tablet Responsiveness Media Queries */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .value-bullets {
    display: inline-block;
    text-align: left;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .custom-showcase-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .team-visual-grid {
    grid-template-columns: 1fr;
  }
  
  .team-visual-item img {
    height: 300px;
  }
  
  .ba-section-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 3rem;
  }
  
  .ba-header-title {
    font-size: 32px;
  }
  
  .ba-card {
    flex: 0 0 calc(50% - 16px);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ribbon-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 16px 0;
    background-color: rgba(255, 253, 240, 0.98);
    border-bottom: 1px solid rgba(255, 193, 7, 0.12);
  }
  
  header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .desktop-nav {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    height: 100vh;
    width: 280px;
    background-color: var(--bg-card);
    z-index: 1050;
    padding: 100px 32px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    overflow-y: auto;
  }
  
  .desktop-nav.active {
    right: 0;
  }
  
  .desktop-nav ul {
    flex-direction: column;
    gap: 24px;
  }
  
  .nav-link {
    font-size: 18px;
  }
  
  .nav-cta {
    display: none;
  }
  
  .hero-split {
    padding: 120px 0 60px;
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .booking-card-wrapper {
    padding: 24px;
  }
  
  .marquee-track {
    gap: 3.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .team-bullets-container {
    grid-template-columns: 1fr;
  }
  
  .mobile-sticky-cta {
    display: block;
  }
  
  body {
    padding-bottom: 56px; /* Space for mobile sticky CTA */
  }
  
  .site-footer {
    padding: 60px 0 0;
  }

  .ba-carousel-section {
    padding: 4.5rem 1.5rem;
  }
  
  .ba-header-title {
    font-size: 28px;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ba-card {
    flex: 0 0 85%;
  }
  
  .ba-carousel-viewport {
    padding: 10px 0 10px 0;
  }
  
  .ba-header-title {
    font-size: 24px;
  }
  
  .ba-header-desc {
    font-size: 14px;
  }
  
  .ribbon-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .marquee-track {
    gap: 2.5rem;
  }
  
  .form-row-double {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }
}

/* Hero Badges Group Styles */
.hero-badges-group {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  justify-content: flex-start;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-badges-group {
    justify-content: center;
  }
}

/* Gold Seal Badge */
.badge-gold-seal {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.seal-inner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe066 0%, #d4af37 60%, #aa8010 100%);
  border: 3px double #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #0b1a30;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  z-index: 2;
}

.seal-text-top, .seal-text-bottom {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.seal-text-center {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin: 1px 0;
  color: #0b1a30;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.seal-stars {
  font-size: 6px;
  color: #0b1a30;
  line-height: 1;
}

/* Red Ribbon behind Gold Seal */
.ribbon-left, .ribbon-right {
  position: absolute;
  bottom: 35px;
  width: 50px;
  height: 24px;
  background-color: #d62828;
  z-index: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.ribbon-left {
  left: -10px;
  transform: rotate(-30deg);
  clip-path: polygon(0% 0%, 100% 0%, 80% 50%, 100% 100%, 0% 100%, 20% 50%);
}

.ribbon-right {
  right: -10px;
  transform: rotate(30deg);
  clip-path: polygon(0% 0%, 100% 0%, 80% 50%, 100% 100%, 0% 100%, 20% 50%);
}

/* Orange/Yellow Badge */
.badge-orange-circle {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.circle-inner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffca28 0%, #ff8f00 100%);
  border: 4px solid #ffffff;
  outline: 2px solid #ff8f00;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #0b1a30;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.crown-icon {
  width: 16px;
  height: 16px;
  fill: #ffffff;
  margin-bottom: 2px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.estimate-title {
  font-size: 15px;
  font-weight: 900;
  color: #0b1a30;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.estimate-subtitle {
  font-size: 9px;
  font-weight: 800;
  color: #0b1a30;
  letter-spacing: 0.5px;
}

.badge-lines {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  color: #ffffff;
  margin-top: 2px;
}

/* Customer Video Testimonials Section styling */
.video-testimonials-section {
  padding: 80px 0;
  background-color: #f8fafc;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.video-testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.video-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio square format for consistency */
  background-color: #000000;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.video-author {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
}

.video-caption {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.4;
  font-style: italic;
}

@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-testimonials-section {
    padding: 60px 0;
  }
}

/* ==========================================================================
   11. Scroll-Reveal Animation System
   ========================================================================== */
.reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-down {
  transform: translateY(-40px);
}

.reveal-left {
  transform: translateX(40px);
}

.reveal-right {
  transform: translateX(-40px);
}

.reveal-scale {
  transform: scale(0.95);
}

.reveal-fade {
  /* pure fade, no transform */
}

/* Active State to trigger transitions */
.reveal.active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Staggered Delay Helpers */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
.delay-600 { transition-delay: 600ms; }


/* ==========================================================================
   12. Coupon Popup Modal (10% Off New Customers)
   ========================================================================== */
.coupon-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(5, 12, 26, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.coupon-card {
  background: linear-gradient(135deg, rgba(10, 25, 49, 0.95), rgba(5, 12, 26, 0.98));
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 20px;
  padding: 40px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5), 
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  text-align: center;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-white);
}

.coupon-modal-backdrop.active .coupon-card {
  transform: translateY(0) scale(1);
}

.coupon-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.coupon-close-btn:hover {
  color: var(--secondary);
}

.coupon-header-badge {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--text-white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(255, 62, 62, 0.3);
}

.coupon-title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--text-white);
}

.coupon-subtitle {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.coupon-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 193, 7, 0.5);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.coupon-code {
  font-family: 'Poppins', monospace;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.coupon-copy-btn {
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.coupon-copy-btn:hover {
  background-color: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.coupon-copy-btn.copied {
  background-color: #28a745;
  color: var(--text-white);
  border-color: #28a745;
}

.coupon-action-btn {
  display: block;
  width: 100%;
  background-color: var(--secondary);
  color: var(--text-white);
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px -5px rgba(255, 62, 62, 0.3);
  transition: var(--transition);
}

.coupon-action-btn:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(255, 62, 62, 0.4);
}

.coupon-card-footer {
  margin-top: 16px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
}


/* ==========================================================================
   13. Privacy Policy Page Styles
   ========================================================================== */
.privacy-banner-section {
  position: relative;
  background-color: var(--primary);
  padding: 150px 0 90px;
  text-align: center;
  color: var(--text-white);
  overflow: hidden;
}

.privacy-banner-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 193, 7, 0.12), transparent 50%),
              radial-gradient(circle at bottom left, rgba(255, 62, 62, 0.12), transparent 50%);
  z-index: 1;
}

.privacy-banner-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.privacy-title {
  font-size: 46px;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.privacy-subtitle {
  font-size: 18px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.privacy-date-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.privacy-policy-body {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.privacy-body-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.privacy-content-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.privacy-content-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-hover);
}

.privacy-content-card h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  border-left: 4px solid var(--accent);
  padding-left: 14px;
}

.privacy-content-card p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.privacy-content-card p:last-child {
  margin-bottom: 0;
}

.privacy-content-card ul {
  margin-left: 20px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy-content-card li {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.privacy-content-card li strong {
  color: var(--primary);
}

.privacy-contact-info {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 4px solid var(--secondary);
}

.privacy-contact-info p {
  margin-bottom: 0;
}

.privacy-contact-info a {
  color: var(--secondary);
  font-weight: 600;
}

.privacy-contact-info a:hover {
  color: var(--secondary-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-banner-section {
    padding: 130px 0 70px;
  }
  .privacy-title {
    font-size: 34px;
  }
  .privacy-policy-body {
    padding: 50px 0;
  }
  .privacy-content-card {
    padding: 24px;
  }
  .privacy-content-card h2 {
    font-size: 19px;
  }
}

/* ==========================================================================
   14. Blog Page Styles
   ========================================================================== */
.blog-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.blog-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--box-shadow-hover);
  border-color: rgba(255, 62, 62, 0.2);
}

.blog-card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.blog-card:hover .blog-card-img-wrapper img {
  transform: scale(1.05);
}

.blog-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--secondary);
  color: var(--text-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(255, 62, 62, 0.2);
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.blog-card-meta {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.35;
  transition: var(--transition);
}

.blog-card-title:hover {
  color: var(--secondary);
}

.blog-card-excerpt {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.blog-card-btn {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin-top: auto;
  transition: var(--transition);
}

.blog-card-btn:hover {
  color: var(--primary);
  transform: translateX(4px);
}

/* Blog Article Modal Backdrop & Card */
.blog-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(5, 12, 26, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.blog-modal-card {
  background-color: var(--bg-card);
  border-radius: 20px;
  max-width: 760px;
  width: 100%;
  max-height: 85vh;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-modal-backdrop.active .blog-modal-card {
  transform: scale(1) translateY(0);
}

.blog-modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(10, 25, 49, 0.5);
  border: none;
  font-size: 28px;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.blog-modal-close-btn:hover {
  background-color: var(--secondary);
  color: #ffffff;
}

.blog-modal-header-img {
  height: 280px;
  width: 100%;
  position: relative;
}

.blog-modal-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-modal-header-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 60%, rgba(10, 25, 49, 0.9) 100%);
}

.blog-modal-header-info {
  position: absolute;
  bottom: 24px;
  left: 32px;
  right: 32px;
  color: #ffffff;
}

.blog-modal-tag {
  background-color: var(--secondary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 10px;
}

.blog-modal-title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.blog-modal-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.blog-modal-body {
  padding: 32px;
  overflow-y: auto;
  flex-grow: 1;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.blog-modal-body p {
  margin-bottom: 16px;
}

.blog-modal-body h3 {
  color: var(--primary);
  font-size: 19px;
  font-weight: 800;
  margin: 24px 0 12px 0;
}

.blog-modal-body ul, .blog-modal-body ol {
  margin-left: 20px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-modal-body li {
  color: var(--text-muted);
}

.blog-modal-body li strong {
  color: var(--primary);
}

.blog-modal-cta {
  background: var(--bg-light);
  border-left: 4px solid var(--secondary);
  padding: 20px;
  border-radius: 0 12px 12px 0;
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-modal-cta-text {
  flex-grow: 1;
}

.blog-modal-cta-text h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.blog-modal-cta-text p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.blog-modal-cta-btn {
  background-color: var(--secondary);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(255, 62, 62, 0.2);
}

.blog-modal-cta-btn:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 62, 62, 0.3);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-modal-card {
    max-height: 90vh;
  }
  .blog-modal-header-img {
    height: 200px;
  }
  .blog-modal-header-info {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .blog-modal-title {
    font-size: 20px;
  }
  .blog-modal-body {
    padding: 24px;
  }
}

