/* ====== CONTACT SECTION BACKGROUND ====== */
#contactSection {
  background-color: #0a0a0c;
  color: #ffffff;
  padding: 40px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  /* Reset font weight for entire section */
  font-weight: normal !important;
}

/* Apply normal font weight to all elements in contact section */
#contactSection *,
.contact-section-wrapper * {
  font-weight: normal !important;
}

/* Override specific elements that might be bold */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; /* Keep title bold - this is intentional */
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ffffff, #aaa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

/* Make contact link text normal */
.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: white;
  text-decoration: none;
  font-weight: normal !important; /* ← Changed from 600 */
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Address text normal */
.address-title {
  font-size: 1.8rem;
  font-weight: normal !important; /* ← Changed from 700 */
  margin-bottom: 20px;
  color: #0ea5ff;
}

.address-details,
.address-hours {
  font-weight: normal !important;
}

/* ====== CONTACT SECTION BACKGROUND ====== */
#contactSection {
  background-color: #0a0a0c;
  color: #ffffff;
  padding: 40px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* ====== CONTACT STYLES ====== */
.contact-section-wrapper {
  background: linear-gradient(135deg,
    rgba(14, 165, 255, 0.05),
    rgba(124, 58, 237, 0.05));
  border-radius: 24px;
  padding: 50px 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin: 0 auto;
  max-width: 500px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ffffff, #aaa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 30px auto 0;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-link.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.2);
}

.contact-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ====== ADDRESS SECTION ====== */
.address-section {
  margin-top: 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.address-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0ea5ff;
}

.address-details {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.address-hours {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}

/* ====== MOBILE VERSION ====== */
@media (max-width: 768px) {
  .contact-section-wrapper {
    padding: 30px 15px !important;
    border-radius: 15px !important;
  }
  
  .address-section {
    margin-top: 30px !important;
    padding: 25px 15px !important;
    border-radius: 15px !important;
  }
  
  .address-title {
    font-size: 1.4rem !important;
  }
  
  .address-details {
    font-size: 0.95rem !important;
  }
  
  .section-title {
    font-size: 1.6rem !important;
    line-height: 1.3 !important;
    margin-bottom: 25px !important;
  }
  
  .contact-link {
    padding: 15px !important;
    font-size: 0.9rem !important;
  }
}

/* ====== DESKTOP STYLES ====== */
@media (min-width: 768px) {
  .contact-section-wrapper {
    padding: 60px 40px;
    border-radius: 28px;
    max-width: 800px;
  }
  
  .contact-options {
    gap: 20px;
  }
  
  .address-section {
    padding: 50px;
    margin-top: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .address-title {
    font-size: 2rem;
  }
}