.hero-section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.contact-section {
  background-color: var(--secondary-color);
  padding: 10px 1%;
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: white;
}

.section-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(163, 41, 25, 0.1) 0%, transparent 50%);
  z-index: -1;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-color), #ff6b4a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
}
.card-icon-whatsapp {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #00bc22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
}
.card-icon-locations {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
}
.card-icon-social {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
  transform: rotate(15deg) scale(1.1);
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
  position: relative;
}

.contact-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b4a);
  transition: width 0.4s;
}

.contact-card:hover h3::after {
  width: 80px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
  transition: color 0.4s;
}

.contact-card:hover p {
  color: white;
}

.contact-btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(90deg, var(--primary-color), #ff6b4a);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.contact-btn.disabled {
  background: rgba(255, 255, 255, 0.1);
  cursor: default;
}

.contact-btn.disabled:hover {
  transform: none;
  box-shadow: none;
}

.status-open {
  color: #4CAF50;
  font-weight: bold;
}

.contact-btn i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(163, 41, 25, 0.4);
}

.contact-btn:hover i {
  transform: translateX(5px);
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ff6b4a, var(--primary-color));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
  border-radius: 30px;
}

.contact-btn:hover::before {
  opacity: 1;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-btn.fb {
  background-color: #3b5998;
}

.social-btn.ig {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}
.social-btn.yt {
  background-color: #ff0000;
}
.social-btn.tw {
  background-color: #1DA1F2;
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {

  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {

  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}