/* ============================================================
   /css/style.css — Complete Styles (refactored)
   ============================================================ */

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

:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --dark-bg: #29303D;
  --dark-bg-light: #353d4d;
  --gray: #4a5568;
  --gray-light: #718096;
  --gray-lighter: #e2e8f0;
  --gold: #d4af37;
  --gold-light: #f4d03f;
  --gold-dark: #b8941e;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #b8941e 100%);
  --glass-bg: rgba(41, 48, 61, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: default;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ----- Custom Cursor ----- */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: all 0.1s ease;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
}

/* ----- Preloader ----- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-logo img {
  max-width: 250px;
  height: auto;
  display: block;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--dark-bg-light);
  margin-top: 2rem;
  border-radius: 3px;
  overflow: hidden;
}

.preloader-progress {
  height: 100%;
  background: var(--gradient-gold);
  animation: loading 1.2s ease-in-out;
}

@keyframes loading {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ----- Particles Background ----- */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.2;
  animation: float 15s infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.2;
    transform: translateY(90vh) translateX(10px) scale(1);
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-10vh) translateX(100px) scale(0);
    opacity: 0;
  }
}

/* ----- Top Bar (sticky contacts) ----- */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 1002;
  background: #ffffff;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 0.5rem 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transform: translateZ(0);
}

.top-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1e2a3a;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}

.top-phone:hover {
  color: #d4af37;
}

.top-phone svg {
  flex-shrink: 0;
}

.top-phone strong {
  font-weight: 700;
}

/* Mobile compact contacts */
.mobile-contacts {
  display: none;
}

.top-phone-mobile {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: #1e2a3a;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  transition: color 0.3s;
  gap: 0.15rem;
}

.top-phone-mobile:hover {
  color: #d4af37;
}

.top-phone-mobile .top-label {
  font-size: 0.65rem;
  letter-spacing: 0.3px;
}

/* ----- Main Navigation (fixed, glass effect) ----- */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.2rem 5% 0.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.main-nav.scrolled {
  background: rgba(41, 48, 61, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-logo img {
  display: block;
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
}

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

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

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(41, 48, 61, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  border-radius: 12px;
  min-width: 220px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.5rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 400;
  transition: background 0.3s;
}

.dropdown-menu a:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-phone {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-cta {
  background: var(--gradient-gold);
  color: var(--black);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 30px;
  height: 3px;
  background: #ffffff;
  transition: all 0.3s;
}

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

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

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

/* ----- Marquee (moving ticker) ----- */
.marquee-wrap {
  background: var(--dark-bg);
  padding: 0.8rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  gap: 4rem;
}

.marquee--reverse {
  animation: marquee-reverse 25s linear infinite;
}

.marquee span {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

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

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

/* ----- Marquee Logos (second ticker) ----- */
.marquee-logos {
  background: var(--white);
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.marquee-logos .marquee {
  gap: 3rem;
  animation-duration: 20s;
}

.marquee-logos .marquee span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark);
  font-weight: 500;
  font-size: 1rem;
}

.review-logo {
  width: 24px;
  height: 24px;
  fill: var(--gray);
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* ----- Hero Slider ----- */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
  min-height: 100vh;
}

.slider-container {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease;
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide picture,
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.slide img {
  filter: brightness(0.4);
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 2rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.slide-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s backwards;
}

.btn {
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--black);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.btn-gold:hover::before {
  left: 100%;
}

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

.btn-outline:hover {
  background: var(--gradient-gold);
  color: var(--black);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-icon {
  font-size: 1.3rem;
}

.floating-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 1s backwards;
}

.floating-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}

.floating-badge:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

.floating-badge .icon {
  color: var(--gold);
  font-size: 1.2rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.4);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.slider-btn:hover {
  background: rgba(212, 175, 55, 0.3);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.slider-dots span.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 30px;
  height: 30px;
  fill: var(--gold);
}

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

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

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

/* ----- Section Common ----- */
section {
  padding: 5rem 5%;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  position: relative;
  padding: 0 2rem;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-tag::before {
  left: -20px;
}

.section-tag::after {
  right: -20px;
}

.section-tag.gold {
  color: var(--gold);
}

.section-tag.gold::before,
.section-tag.gold::after {
  background: var(--gold);
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--dark);
}

.section-title.light {
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  font-weight: 300;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.7);
}

/* ----- Dark Background ----- */
.dark-bg {
  background: var(--dark-bg);
  color: #ffffff;
}

.dark-bg .section-title,
.dark-bg .section-title.light {
  color: #ffffff;
}

.dark-bg .section-subtitle,
.dark-bg .section-subtitle.light {
  color: rgba(255, 255, 255, 0.7);
}

/* ----- Page Section with Image Overlay ----- */
.page-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-section .dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(41, 48, 61, 0.85);
  z-index: 0;
}

.page-section .container {
  position: relative;
  z-index: 1;
}

/* ----- Features (Why Choose Us) ----- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: var(--off-white);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
}

.feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-gold);
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.95rem;
}

.feature-card.dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.feature-card.dark h3 {
  color: #ffffff;
}

.feature-card.dark p {
  color: rgba(255, 255, 255, 0.7);
}

.feature-card.dark:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-icon.gold-bg {
  background: rgba(212, 175, 55, 0.15);
}

.feature-card.dark:hover .feature-icon.gold-bg {
  background: var(--gradient-gold);
}

/* ----- Insurance Partners (on home page) ----- */
.insurance-partners {
  background: var(--off-white);
  padding: 5rem 5%;
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.insurance-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s;
}

.insurance-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.12);
}

.insurance-icon svg {
  fill: #d4af37;
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto 1rem;
}

.insurance-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.insurance-card p {
  color: var(--gray);
  line-height: 1.6;
}

.insurance-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.insurance-cta p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Insurance Logos Block (4x4) ----- */
.insurance-logos-section {
  padding: 5rem 5%;
  background: var(--white);
}

.insurance-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
  min-height: 80px;
}

.logo-item:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.logo-item img {
  max-width: 100%;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.insurance-logos-note {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.insurance-logos-note p {
  color: var(--gray);
  font-size: 1.1rem;
  font-weight: 500;
}

/* ----- Stats Section ----- */
.stats-section {
  background: var(--off-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ----- CTA Rental (Free Rental Car & Deductible Assistance) ----- */
.cta-rental {
  background: var(--white);
  padding: 4rem 5%;
}

.cta-rental-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-rental-text {
  flex: 1;
}

.cta-rental-text .section-tag {
  color: var(--gold-dark);
}

.cta-rental-text .section-title {
  margin-bottom: 1rem;
}

.cta-rental-text p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-rental-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-rental-image {
  flex: 1;
  max-width: 50%;
}

.cta-rental-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 300px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ----- Services (Our Services) ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: var(--off-white);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px);
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(212, 175, 55, 0.12);
}

.service-number {
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  margin-bottom: 1rem;
  display: block;
}

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

.service-card p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 1rem;
}

.service-card.dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.service-card.dark h3 {
  color: #ffffff;
}

.service-card.dark p {
  color: rgba(255, 255, 255, 0.7);
}

.service-card.dark:hover {
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-card.dark .service-link {
  color: var(--gold);
}

/* ----- Video Section ----- */
.video-section {
  background: var(--off-white);
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  background: var(--dark-bg);
  aspect-ratio: 16/9;
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  transition: transform 0.3s;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
  filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.4));
}

.video-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(41, 48, 61, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.video-loader.active {
  display: flex;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-top: 5px solid var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

.video-wrapper.playing .video-poster,
.video-wrapper.playing .video-play-btn {
  display: none;
}

.video-wrapper.playing video {
  display: block !important;
}

/* ----- Testimonials Slider ----- */
.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 3rem 2rem;
  text-align: center;
  background: var(--off-white);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.testimonial-card.dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 4px;
}

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-style: italic;
}

.testimonial-card.dark p {
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-author {
  font-weight: 600;
}

.testimonial-author strong {
  display: block;
  font-size: 1.1rem;
  color: var(--dark);
}

.testimonial-card.dark .testimonial-author strong {
  color: #ffffff;
}

.testimonial-author span {
  font-weight: 400;
  color: var(--gray);
  font-size: 0.9rem;
}

.testimonial-card.dark .testimonial-author span {
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 1.5rem;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 10;
}

.testimonial-btn:hover {
  background: var(--gradient-gold);
  color: var(--black);
}

.testimonial-btn.prev { left: -20px; }
.testimonial-btn.next { right: -20px; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

.testimonial-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dots span.active {
  background: var(--gold);
}

/* ----- CTA Banner ----- */
.cta-banner {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 5rem 5%;
}

.cta-banner.light {
  background: var(--off-white);
  color: var(--dark);
}

.cta-banner.dark-bg {
  background: var(--dark-bg);
  color: #ffffff;
}

.cta-banner h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--gray-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner.light p {
  color: var(--gray);
}

.cta-banner.dark-bg p {
  color: rgba(255, 255, 255, 0.7);
}

.cta-banner.dark-bg h2.light {
  color: #ffffff;
}

/* ----- Floating Call Button (left side) ----- */
.floating-call {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
}

.floating-call-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gradient-gold);
  color: var(--black);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
  transition: all 0.3s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.floating-call-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.7);
}

.floating-call-btn svg {
  fill: var(--black);
}

/* ----- Page Header (inner pages) ----- */
.page-header {
  padding: 10rem 5% 4rem;
  text-align: center;
}

.page-header.dark-bg {
  background: var(--dark-bg);
}

.page-header.dark-bg .section-title {
  color: #ffffff;
}

.page-header.dark-bg .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* ----- Page Content (for inner pages) ----- */
.page-content {
  padding: 4rem 5%;
  background: var(--white);
}

.content-grid {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.content-grid.reverse {
  flex-direction: row-reverse;
}

.content-text {
  flex: 1;
}

.content-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.content-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-text ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.content-text ul li {
  padding: 0.5rem 0;
  color: var(--gray);
  padding-left: 1.8rem;
  position: relative;
}

.content-text ul li::before {
  content: "✓ ";
  color: var(--gold-dark);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.content-image {
  flex: 1;
}

.content-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 350px;
}

.need-help-contact {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 12px;
}

.need-help-contact p {
  margin-bottom: 0.3rem;
}

.need-help-contact a {
  color: var(--gold-dark);
  font-weight: 600;
}

/* ----- Services Full (services page) ----- */
.services-full {
  background: var(--white);
}

.service-item {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 2rem;
  background: var(--off-white);
  border-radius: 25px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.5s;
}

.service-item:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.1);
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-item picture,
.service-item img {
  width: 45%;
  border-radius: 20px;
  object-fit: cover;
  height: 280px;
}

.service-item h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-item p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-item .btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
}

/* ----- About Page ----- */
.about-content {
  background: var(--white);
  padding: 4rem 5%;
}

.about-grid {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-grid picture,
.about-grid img {
  width: 45%;
  border-radius: 20px;
  object-fit: cover;
  height: 350px;
}

.about-grid h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.about-grid p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-contact {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: var(--off-white);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.contact-card .contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--black);
}

.contact-card h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.contact-card p {
  color: var(--gray);
}

.contact-card a {
  color: var(--gold-dark);
  font-weight: 600;
}

.about-address {
  text-align: center;
  padding: 2rem;
  background: var(--off-white);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.about-address p {
  color: var(--gray);
  line-height: 1.8;
}

.about-address a {
  color: var(--gold-dark);
  font-weight: 600;
}

/* ----- Gallery ----- */
.gallery {
  padding: 4rem 5%;
}

.gallery.light-bg {
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.5s;
  cursor: pointer;
}

.gallery-item:hover {
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.gallery-item picture,
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.gallery-item span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ----- Insurance Content (insurance page) ----- */
.insurance-content {
  padding: 4rem 5%;
  background: var(--white);
}

.insurance-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  margin: 1rem 0 1.5rem;
}

.insurance-list li {
  padding: 0.3rem 0;
  color: var(--gray);
}

.insurance-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.benefit-card {
  text-align: center;
  padding: 2rem;
  background: var(--off-white);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.benefit-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ----- Referrals ----- */
.referrals-content {
  padding: 4rem 5%;
  background: var(--white);
}

.referrals-hero {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.referrals-info {
  flex: 1;
}

.referrals-info h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.referrals-info p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.referrals-info ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.referrals-info ul li {
  padding: 0.5rem 0;
  color: var(--gray);
  padding-left: 1.8rem;
  position: relative;
}

.referrals-info ul li::before {
  content: "✦ ";
  color: var(--gold-dark);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.referrals-image {
  flex: 1;
}

.referrals-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 350px;
}

.referrals-steps {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.referrals-steps h3 {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: var(--dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  padding: 2rem;
  background: var(--off-white);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s;
}

.step-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.step-number {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.step-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.step-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ----- Contact Page ----- */
.contact {
  padding: 4rem 5%;
}

.contact.light-bg {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--dark);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s;
}

.contact-detail:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  transform: translateX(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--gradient-gold);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  fill: #000000;
  width: 28px;
  height: 28px;
  display: block;
}

.contact-detail h4 {
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--dark);
}

.contact-detail p {
  color: var(--gray);
  line-height: 1.6;
}

.contact-detail a {
  color: var(--gold-dark);
  font-weight: 600;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.contact-form-container {
  background: var(--off-white);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-form-container h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--dark);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: var(--gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  color: var(--dark);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

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

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 1.2rem;
  background: var(--gradient-gold);
  color: var(--black);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.form-submit:hover::before {
  left: 100%;
}

/* ----- Popup (modal) ----- */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.popup-overlay.open {
  display: flex;
}

.popup {
  background: var(--white);
  max-width: 500px;
  width: 90%;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.popup-overlay.open .popup {
  opacity: 1;
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  transition: color 0.3s;
}

.popup-close:hover {
  color: var(--gold-dark);
}

.popup h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.popup p {
  color: var(--gray);
  margin-bottom: 2rem;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--dark);
  color: var(--gray-light);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-col p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-logo img {
  display: block;
  height: auto;
  max-width: 180px;
  margin-bottom: 1rem;
}

.footer-email {
  color: var(--gold);
  font-weight: 600;
  display: inline-block;
  margin-top: 0.25rem;
}

.footer-email:hover {
  text-decoration: underline;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--gray-light);
  transition: color 0.3s;
}

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

/* Social links in footer */
.footer-col .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-col .social-links a {
  display: inline-block;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
  font-weight: 700;
  color: var(--gold);
  transition: all 0.4s;
  text-decoration: none;
}

.footer-col .social-links a:hover {
  background: var(--gradient-gold);
  color: var(--black);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  border-color: transparent;
}

.footer-legal {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal a {
  color: var(--gray-light);
  font-size: 0.85rem;
  transition: color 0.3s;
}

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

.legal-separator {
  color: var(--gray-light);
  margin: 0 0.5rem;
  opacity: 0.5;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
}

/* ----- Cookie Consent Banner ----- */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(41, 48, 61, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  z-index: 9999;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.3s;
}

.cookie-text a:hover {
  color: var(--gold-light);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-sm {
  padding: 0.6rem 1.8rem;
  font-size: 0.9rem;
}

/* ----- Quick Links (contact page) ----- */
.quick-links-section {
  padding: 2rem 5%;
  background: var(--off-white);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.quick-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.btn-anchor {
  min-width: 200px;
  justify-content: center;
  padding: 1rem 2rem;
}

.btn-anchor .btn-icon {
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

/* ----- Location blocks (contact page) ----- */
.contact-location {
  padding: 4rem 5%;
  background: var(--white);
}

.contact-location:nth-child(even) {
  background: var(--off-white);
}

.location-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.location-header .section-title {
  margin-bottom: 0.5rem;
}

.location-header .section-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.location-info .contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s;
}

.location-info .contact-detail:hover {
  border-color: var(--gold);
  transform: translateX(5px);
}

.location-info .contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-info .contact-icon svg {
  fill: #000000;
}

.location-info .contact-detail h4 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.location-info .contact-detail p {
  color: var(--gray);
  line-height: 1.6;
}

.location-info .contact-detail a {
  color: var(--gold-dark);
  font-weight: 600;
}

.location-info .contact-detail a:hover {
  text-decoration: underline;
}

.location-services {
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.location-services h4 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.location-services ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1rem;
}

.location-services ul li {
  color: var(--gray);
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.location-services ul li::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.location-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ----- Contact form section (contact page) ----- */
.contact-form-section {
  padding: 4rem 5%;
  background: var(--off-white);
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ----- Legal Pages (Terms & Privacy) ----- */
.legal-content {
  padding: 4rem 5%;
  background: var(--white);
}

.legal-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.legal-section p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.legal-section ul {
  list-style: none;
  margin: 1rem 0;
}

.legal-section ul li {
  color: var(--gray);
  line-height: 1.8;
  padding: 0.3rem 0;
  padding-left: 1.8rem;
  position: relative;
}

.legal-section ul li::before {
  content: "•";
  color: var(--gold-dark);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.legal-section a {
  color: var(--gold-dark);
  font-weight: 600;
}

.legal-section a:hover {
  text-decoration: underline;
}

.legal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}

.legal-footer p {
  color: var(--gray-light);
  font-size: 0.95rem;
}

/* ----- Video Testimonials (video page) ----- */
.video-testimonials {
  padding: 4rem 5%;
  background: var(--white);
}

.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.video-testimonial-card {
  background: var(--off-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s;
}

.video-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
}

.video-wrapper-small {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--dark-bg);
}

.video-wrapper-small iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-testimonial-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1.2rem 1.5rem 0.5rem;
  color: var(--dark);
}

.video-testimonial-card p {
  color: var(--gray);
  line-height: 1.7;
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
}

.video-cta {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  background: var(--off-white);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  text-align: center;
}

.video-cta p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.video-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----- 5 Star Reviews Page ----- */
.reviews-content {
  padding: 4rem 5%;
  background: var(--white);
}

.reviews-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.reviews-intro h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--dark);
}

.reviews-intro p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

.reviews-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.review-platform {
  text-align: center;
  padding: 2rem;
  background: var(--off-white);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s;
}

.review-platform:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.platform-icon svg {
  fill: var(--gold);
  margin-bottom: 1rem;
}

.review-platform h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.review-platform .stars {
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 3px;
}

.review-platform p {
  color: var(--gray);
  margin: 0.5rem 0 1rem;
}

.reviews-cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.review-card {
  background: var(--off-white);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s;
}

.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.review-stars {
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.review-card p {
  color: var(--gray);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1rem;
}

.review-author strong {
  display: block;
  color: var(--dark);
  font-weight: 700;
}

.review-author span {
  color: var(--gray);
  font-size: 0.9rem;
}

.reviews-contact {
  text-align: center;
  padding: 2.5rem;
  background: var(--off-white);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  max-width: 700px;
  margin: 0 auto;
}

.reviews-contact h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--dark);
}

.reviews-contact p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

.reviews-contact a {
  color: var(--gold-dark);
  font-weight: 600;
}

.reviews-contact a:hover {
  text-decoration: underline;
}

/* ----- Reviews Slider (mobile) ----- */
.reviews-grid-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  transition: transform 0.5s ease;
}

.reviews-slider-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212, 175, 55, 0.8);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
}

.reviews-slider-btn:hover {
  background: var(--gold);
}

.reviews-slider-btn.prev {
  left: 10px;
}
.reviews-slider-btn.next {
  right: 10px;
}

.reviews-dots {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.reviews-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.reviews-dots span.active {
  background: var(--gold);
}

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

/* Tablets */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(41, 48, 61, 0.95);
    padding: 2rem;
    gap: 1.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

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

  .nav-links a {
    color: #ffffff;
  }

  .dropdown-menu {
    position: static;
    background: transparent;
    padding: 0.5rem 0 0.5rem 1.5rem;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  .dropdown-menu a {
    font-size: 0.85rem;
    opacity: 0.8;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-actions .nav-phone {
    display: none;
  }

  .content-grid {
    flex-direction: column;
  }
  .content-grid.reverse {
    flex-direction: column;
  }
  .content-image img {
    height: 250px;
  }
  .referrals-hero {
    flex-direction: column;
  }
  .referrals-image img {
    height: 250px;
  }
  .insurance-list {
    grid-template-columns: 1fr;
  }
  .service-item {
    flex-direction: column;
    padding: 1.5rem;
  }
  .service-item.reverse {
    flex-direction: column;
  }
  .service-item picture,
  .service-item img {
    width: 100%;
    height: auto;
  }
  .about-grid {
    flex-direction: column;
  }
  .about-grid picture,
  .about-grid img {
    width: 100%;
    height: auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .slider-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  .testimonial-btn {
    display: none;
  }
  .cta-rental-content {
    flex-direction: column;
  }
  .cta-rental-image {
    max-width: 100%;
  }
  .cta-rental-image img {
    height: 200px;
  }
  .floating-call-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .location-map iframe {
    height: 300px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .insurance-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  .logo-item {
    min-height: 70px;
    padding: 1.2rem;
  }
  .logo-item img {
    max-height: 45px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cursor,
  .cursor-dot {
    display: none !important;
  }

  /* Top bar mobile */
  .desktop-contacts {
    display: none;
  }
  .mobile-contacts {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
  }
  .top-bar {
    padding: 0.4rem 0;
  }
  .main-nav {
    padding: 3.2rem 5% 0.5rem 5%;
    top: 0;
  }

  /* Reviews slider */
  .reviews-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    transition: transform 0.5s ease;
    will-change: transform;
  }
  .review-card {
    min-width: 100%;
    padding: 1.5rem;
    margin: 0 0.5rem;
    box-sizing: border-box;
    flex-shrink: 0;
    background: var(--off-white);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: none;
  }
  .review-card:hover {
    transform: none;
    border-color: rgba(212, 175, 55, 0.15);
  }
  .reviews-slider-btn {
    display: block;
  }
  .reviews-dots {
    display: flex;
  }
  .reviews-platforms {
    grid-template-columns: 1fr;
  }

  /* Other */
  .video-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .reviews-cta {
    grid-template-columns: 1fr;
  }
  .video-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .floating-call {
    left: 1rem;
    bottom: 1rem;
  }
}

/* Small phones */
@media (max-width: 600px) {
  .slide-content h1 {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
  .floating-badges {
    gap: 1rem;
  }
  .floating-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .popup {
    padding: 2rem 1.5rem;
  }
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .slider-btn.prev { left: 10px; }
  .slider-btn.next { right: 10px; }
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  .testimonial-card p {
    font-size: 1rem;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .floating-call-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    gap: 0.5rem;
  }
  .floating-call-btn svg {
    width: 20px;
    height: 20px;
  }
  .cta-rental-buttons {
    flex-direction: column;
  }
  .marquee-logos .marquee span {
    font-size: 0.85rem;
  }
  .review-logo {
    width: 18px;
    height: 18px;
  }
  .stars {
    font-size: 1rem;
  }
  .quick-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .btn-anchor {
    width: 100%;
    min-width: unset;
  }
  .location-services ul {
    grid-template-columns: 1fr;
  }
  .contact-form-container {
    padding: 1.5rem;
  }
  .location-info .contact-detail {
    padding: 1rem;
  }
  .insurance-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .logo-item {
    min-height: 60px;
    padding: 1rem;
  }
  .logo-item img {
    max-height: 35px;
  }
  .cookie-consent {
    padding: 1rem;
  }
  .cookie-consent-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .cookie-text p {
    font-size: 0.85rem;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  .btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .mobile-contacts {
    gap: 1.2rem;
  }
  .top-phone-mobile svg {
    width: 18px;
    height: 18px;
  }
  .top-phone-mobile .top-label {
    font-size: 0.55rem;
  }
  .reviews-slider-btn {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
  .review-card {
    padding: 1rem;
    margin: 0 0.3rem;
  }
}

@media (max-width: 400px) {
  .insurance-logos-grid {
    gap: 0.8rem;
  }
  .logo-item {
    min-height: 50px;
    padding: 0.8rem;
  }
  .logo-item img {
    max-height: 30px;
  }
}