.contact-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.93) 0%, rgba(26,26,46,0.6) 100%),
    url('../images/hero image 2.png') center/cover no-repeat;
  background-color: #0a0a1e;
}

@media (max-width: 1440px) {
  .contact-hero-bg {
    background: linear-gradient(135deg, rgba(26,26,46,0.93) 0%, rgba(26,26,46,0.6) 100%),
      url('../images/hero image 2.png') 45% center/cover no-repeat;
  }
}
@media (max-width: 1024px) {
  .contact-hero-bg {
    background: linear-gradient(135deg, rgba(26,26,46,0.93) 0%, rgba(26,26,46,0.6) 100%),
      url('../images/hero image 2.png') 42% center/cover no-repeat;
  }
}
@media (max-width: 768px) {
  .contact-hero-bg {
    background: linear-gradient(135deg, rgba(26,26,46,0.93) 0%, rgba(26,26,46,0.6) 100%),
      url('../images/hero image 2.png') 40% center/cover no-repeat;
  }
}
@media (max-width: 576px) {
  .contact-hero-bg {
    background: linear-gradient(135deg, rgba(26,26,46,0.93) 0%, rgba(26,26,46,0.6) 100%),
      url('../images/hero image 2.png') 38% center/cover no-repeat;
  }
}
@media (max-width: 480px) {
  .contact-hero-bg {
    background: linear-gradient(135deg, rgba(26,26,46,0.93) 0%, rgba(26,26,46,0.6) 100%),
      url('../images/hero image 2.png') 36% center/cover no-repeat;
  }
}
@media (max-width: 390px) {
  .contact-hero-bg {
    background: linear-gradient(135deg, rgba(26,26,46,0.93) 0%, rgba(26,26,46,0.6) 100%),
      url('../images/hero image 2.png') 35% center/cover no-repeat;
  }
}
@media (max-width: 360px) {
  .contact-hero-bg {
    background: linear-gradient(135deg, rgba(26,26,46,0.93) 0%, rgba(26,26,46,0.6) 100%),
      url('../images/hero image 2.png') 33% center/cover no-repeat;
  }
}
@media (max-width: 320px) {
  .contact-hero-bg {
    background: linear-gradient(135deg, rgba(26,26,46,0.93) 0%, rgba(26,26,46,0.6) 100%),
      url('../images/hero image 2.png') 30% center/cover no-repeat;
  }
}

.contact-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-content h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 16px 0 20px;
}

.contact-hero-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

@media (max-width: 1024px) {
  .contact-hero-content h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
}
@media (max-width: 760px) {
  .contact-hero { min-height: 85vh; }
  .contact-hero-content p { font-size: 1rem; }
}
@media (max-width: 480px) {
  .contact-hero { min-height: 75vh; }
  .contact-hero-content h1 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .contact-hero-content p { font-size: 0.9rem; margin-bottom: 24px; }
}
@media (max-width: 360px) {
  .contact-hero { min-height: 70vh; }
  .contact-hero-content { max-width: 100%; }
}

.contact-hero-cta {
  margin-top: 16px;
}

.contact-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  padding: 24px 48px;
  border-radius: 100px;
  font-size: 1.8rem;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 8px 32px rgba(231,76,60,0.4);
  text-decoration: none;
}

.contact-phone-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 48px rgba(231,76,60,0.5);
}

.phone-icon {
  font-size: 2rem;
}

.phone-subtitle {
  margin-top: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.hours-card {
  border: 2px solid var(--primary);
}

.contact-faq {
  background: var(--bg-alt);
}

@media (max-width: 768px) {
  .contact-phone-btn {
    padding: 18px 28px;
    font-size: 1.3rem;
  }
  .phone-icon { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .contact-phone-btn {
    padding: 16px 24px;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .contact-phone-btn {
    padding: 12px 16px;
    font-size: 1rem;
    gap: 8px;
  }
  .phone-icon { font-size: 1.2rem; }
}
