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

body {
  background-color: #0d0d0d;
  color: white;
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* === Contact Hero Section === */
.contact-hero {
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(0, 0, 0, 0.95) 100%),
              url('../images/background/contact.jpg') center/cover no-repeat;
  padding: 120px clamp(24px, 6vw, 80px) 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(30, 144, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1e90ff;
  background: rgba(30, 144, 255, 0.1);
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(30, 144, 255, 0.3);
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #1e90ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.contact-hero p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* === Contact Section === */
.contact-section {
  padding: 80px clamp(24px, 6vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-card {
  background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
  border-radius: 20px;
  padding: 35px 25px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e90ff 0%, #00d4ff 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

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

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 144, 255, 0.2);
  border-color: rgba(30, 144, 255, 0.3);
}

.card-decoration {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 144, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.contact-card:hover .card-decoration {
  opacity: 1;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25d366 0%, #128c47 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.4s ease;
}

.contact-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.card-icon i {
  font-size: 32px;
  color: white;
}

.card-content {
  text-align: center;
}

.card-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.artist-specialty {
  color: #1e90ff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.artist-location {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.artist-location i {
  color: #1e90ff;
  margin-right: 5px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #25d366 0%, #128c47 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #128c47 0%, #25d366 100%);
}

.whatsapp-btn i {
  font-size: 20px;
}

/* === Additional Contact Info === */
.additional-contact {
  padding: 60px clamp(24px, 6vw, 80px);
  background: linear-gradient(145deg, rgba(30, 144, 255, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 1200px;
  width: 100%;
}

.additional-contact-content {
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e90ff 0%, #0066cc 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.info-icon i {
  font-size: 24px;
  color: white;
}

.info-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.info-text p,
.info-text a {
  color: #bbb;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-text a:hover {
  color: #1e90ff;
}

/* === FAQ Section === */
.faq-section {
  padding: 50px clamp(24px, 6vw, 80px) 90px;
  max-width: 1200px;
  margin: 60px auto 0;
  width: 100%;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #fff 0%, #1e90ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.faq-item {
  background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(30, 144, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 144, 255, 0.15);
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e90ff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item h3 i {
  font-size: 18px;
}

.faq-item p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

/* === Responsive Design === */
@media (max-width: 768px) {
  .contact-hero {
    padding: 90px 24px 60px;
  }

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

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

  .contact-section {
    padding: 60px 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .additional-contact {
    padding: 40px 24px;
    margin: 20px auto 0;
  }

  .additional-contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-section {
    padding: 50px 24px 70px;
    margin-top: 30px;
  }

  .faq-section h2 {
    font-size: 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 80px 20px 50px;
  }

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

  .section-label {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .card-content h3 {
    font-size: 1.2rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .card-icon i {
    font-size: 28px;
  }

  .whatsapp-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .contact-section {
    padding: 45px 20px;
  }

  .additional-contact {
    padding: 30px 20px;
    margin: 20px auto 0;
  }

  .contact-info-block {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .info-icon {
    width: 50px;
    height: 50px;
  }

  .info-icon i {
    font-size: 20px;
  }

  .faq-section h2 {
    font-size: 1.6rem;
  }

  .faq-item {
    padding: 25px 20px;
  }

  .faq-section {
    padding: 45px 20px 60px;
    margin-top: 25px;
  }

  .faq-item h3 {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.9rem;
  }
}
