/* Contact Section */
.contact-section {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.15);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-card p {
  color: #666;
  font-size: 1rem;
  margin: 0.3rem 0;
}

.contact-detail {
  color: #999 !important;
  font-size: 0.9rem !important;
  font-style: italic;
}

.phone-link {
  display: inline-block;
  font-size: 1.5rem;
  color: #ff6b35;
  font-weight: 600;
  text-decoration: none;
  margin: 0.5rem 0;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #ff8c42;
}

/* CTA Buttons */
.contact-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-cta-btn svg {
  flex-shrink: 0;
}

.phone-btn {
  background: #ff6b35;
  color: white;
}

.phone-btn:hover {
  background: #ff8c42;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Map */
.contact-map {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  background-color: #f5f5f5;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.map-container .map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1) 0%,
    rgba(255, 140, 66, 0.05) 100%
  );
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 2;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: white;
  color: #ff6b35;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.map-link:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

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

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-icon {
    font-size: 2rem;
  }

  .contact-card h3 {
    font-size: 1.1rem;
  }

  .phone-link {
    font-size: 1.3rem;
  }

  .contact-cta-btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }

  .map-container {
    height: 350px;
  }
}
