/* ================== Contact Page — Premium Redesign ================== */

/* --- Contact Hero --- */
.contact-hero {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(160deg, #080808 0%, #0d0d0d 40%, #111 100%);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.contact-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 179, 1, 0.12), transparent 65%);
  z-index: -1;
  animation: heroOrbFloat 8s ease-in-out infinite;
}

.contact-hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 153, 74, 0.08), transparent 70%);
  z-index: -1;
  animation: heroOrbFloat 10s ease-in-out infinite reverse;
}

@keyframes heroOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

.contact-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.contact-hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(245, 179, 1, 0.4);
  border-radius: 50%;
  animation: particleDrift 6s linear infinite;
}

.contact-hero-particles span:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; animation-duration: 7s; }
.contact-hero-particles span:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; animation-duration: 5s; }
.contact-hero-particles span:nth-child(3) { top: 35%; left: 50%; animation-delay: 2s; animation-duration: 8s; }
.contact-hero-particles span:nth-child(4) { top: 75%; left: 30%; animation-delay: 0.5s; animation-duration: 6s; }
.contact-hero-particles span:nth-child(5) { top: 10%; left: 70%; animation-delay: 3s; animation-duration: 9s; }
.contact-hero-particles span:nth-child(6) { top: 50%; left: 90%; animation-delay: 1.5s; animation-duration: 7s; }

@keyframes particleDrift {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-120px) scale(0.5); }
}

.contact-hero-content {
  position: relative;
  z-index: 1;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  background: rgba(245, 179, 1, 0.1);
  border: 1px solid rgba(245, 179, 1, 0.25);
  border-radius: 999px;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 25px;
  backdrop-filter: blur(8px);
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #bbb;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
}

/* --- Quick Contact Cards Strip --- */
.contact-quick-strip {
  position: relative;
  margin-top: -50px;
  z-index: 2;
  padding-bottom: 20px;
}

.quick-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quick-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.quick-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 179, 1, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.quick-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 179, 1, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 179, 1, 0.08);
}

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

.quick-card-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.quick-card-icon-wrap i {
  font-size: 2.2rem;
  color: var(--accent-gold);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.quick-card:hover .quick-card-icon-wrap i {
  transform: scale(1.15);
}

.quick-card-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(245, 179, 1, 0.2);
  animation: cardPulse 2.5s ease-in-out infinite;
}

@keyframes cardPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 0; }
}

.quick-card h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
  position: relative;
}

.quick-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.7;
  position: relative;
}

.phone-number {
  font-size: 1.15rem !important;
  font-weight: 700;
  color: var(--text-primary) !important;
  letter-spacing: 0.03em;
}

.quick-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--accent-gold), #e0a300);
  color: #000;
  font-weight: 700;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.quick-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 179, 1, 0.3);
  color: #000;
}

.quick-card-btn i {
  transition: transform 0.3s ease;
}

.quick-card-btn:hover i {
  transform: translateX(-4px);
}

.hours-badge {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(245, 179, 1, 0.1);
  border: 1px solid rgba(245, 179, 1, 0.2);
  border-radius: 10px;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1rem;
  position: relative;
}

/* --- Section Headers --- */
.contact-section-header {
  margin-bottom: 50px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.contact-section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* --- Enhanced Tabs --- */
.contact-page .tab-btn {
  padding: 14px 36px;
  border-radius: 14px;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-page .tab-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.contact-page .tab-btn:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contact-page .tab-btn.active {
  background: linear-gradient(135deg, var(--accent-gold), #e0a300);
  box-shadow: 0 8px 30px rgba(245, 179, 1, 0.25);
}

.contact-page .tab-btn.active i {
  transform: scale(1.1);
}

/* --- Enhanced Form Container --- */
.contact-page .contact-form-container {
  max-width: 820px;
  padding: 45px 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.form-glow-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), #f2994a, var(--accent-gold));
  background-size: 200% 100%;
  animation: glowSlide 3s ease-in-out infinite;
  z-index: 2;
}

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

.contact-page .form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-page .form-group label i {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.contact-page .form-group input,
.contact-page .form-group select,
.contact-page .form-group textarea {
  background: var(--input-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 18px;
  border-radius: 12px;
}

.contact-page .form-group input:focus,
.contact-page .form-group select:focus,
.contact-page .form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.08), 0 0 15px rgba(245, 179, 1, 0.06);
  background: var(--bg-main);
}

.contact-page .form-group input::placeholder,
.contact-page .form-group textarea::placeholder {
  color: rgba(170, 170, 170, 0.5);
}

.contact-page .contact-form .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  padding: 16px 35px;
  border-radius: 14px;
}

.contact-page .contact-form .btn i {
  transition: transform 0.3s ease;
}

.contact-page .contact-form .btn:hover i {
  transform: translateX(-4px);
}

/* --- Location Section --- */
.contact-location-section .location-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 30px;
  align-items: stretch;
}

.location-info-panel {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 35px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.loc-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: rgba(245, 179, 1, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.location-info-item:hover .loc-icon {
  background: var(--accent-gold);
  color: #000;
  transform: scale(1.05);
}

.location-info-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.location-info-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.location-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  width: 100%;
}

.location-map-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 400px;
}

.location-map-wrap .map-frame {
  height: 100%;
  border-radius: 0;
  border: none;
}

.location-map-wrap .map-frame iframe {
  height: 100%;
  min-height: 400px;
}

/* --- Contact Page Responsive --- */
@media (max-width: 992px) {
  .quick-cards-row {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .contact-location-section .location-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .contact-hero {
    padding: 150px 0 80px;
  }

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

  .contact-hero p {
    font-size: 1.05rem;
  }

  .contact-quick-strip {
    margin-top: -30px;
  }

  .contact-page .contact-form-container {
    padding: 30px 22px;
  }

  .contact-page .tab-btn {
    padding: 12px 24px;
    min-width: auto;
    font-size: 0.95rem;
  }

  .contact-section-header h2 {
    font-size: 1.8rem;
  }
}
