/* contact.css */
.contact-section {
  background: linear-gradient(135deg, #3f69ff 0%, #0027a7 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.contact-title {
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-subtitle {
  opacity: 0.95;
  line-height: 1.5;
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.contact-details {
  flex: 1;
}

.contact-label {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-text {
  color: white;
  margin: 0;
  line-height: 1.4;
  opacity: 0.95;
}

.contact-link {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.95;
  position: relative;
  display: inline-block;
}

.contact-link:hover {
  color: white;
  opacity: 1;
  transform: translateX(3px);
}

.contact-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: white;
  transition: width 0.3s ease;
}

.contact-link:hover::after {
  width: 100%;
}

.contact-emails {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.schedule-info {
  line-height: 1.4;
}

.schedule-days {
  font-size: 0.9rem;
  opacity: 0.9;
}

.schedule-hours {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* CTA Card Styles */
.contact-cta-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.cta-text {
  text-align: center;
  line-height: 1.6;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-light {
  background: white;
  color: #3f69ff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: white;
  color: #3f69ff;
  transform: translateY(-2px);
}

.whatsapp-cta {
  text-align: center;
}

.btn-success {
  background: #25d366;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .contact-title {
    font-size: 2.5rem;
  }

  .contact-cta-card {
    padding: 2rem;
    margin-top: 2rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 250px;
    margin: 0.25rem 0;
  }
}

@media (max-width: 767.98px) {
  .contact-section {
    padding: 3rem 0;
  }

  .contact-title {
    font-size: 2rem;
    text-align: center;
  }

  .contact-subtitle {
    text-align: center;
  }

  .contact-item {
    padding: 1rem 0.75rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .contact-cta-card {
    padding: 1.5rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .contact-info-grid {
    gap: 1rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .contact-icon {
    align-self: center;
  }
}
