/* contact.css */

:root {
  --primary: #d4af37;
  --primary-light: #f9d423;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray: #94a3b8;
  --light: #f8fafc;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
header {
  background-color: rgba(35, 75, 102, 0.8);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9)), 
              url('../assets/contact-bg.jpg') center/cover no-repeat;
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Contact Grid Section */
.contact-grid-section {
  padding: 6rem 0;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.contact-card:hover .card-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--dark);
  transform: scale(1.1);
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
}

.contact-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-method:hover .method-icon {
  background: var(--primary);
  color: var(--dark);
  transform: rotate(10deg);
}

.method-details h4 {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.method-details a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.method-details a:hover {
  color: var(--primary);
}

/* Hours List */
.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--gray);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li span:last-child {
  color: #fff;
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Map Section */
.map-section {
  padding: 6rem 0;
  background: var(--dark-light);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Social Section */
.social-section {
  padding: 6rem 0;
  background: var(--dark);
  text-align: center;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.social-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  min-width: 200px;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.social-button i {
  font-size: 1.25rem;
  transition: var(--transition);
}

.social-button.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.2);
}

.social-button.whatsapp:hover {
  background: #25D366;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.social-button.twitter {
  background: rgba(29, 161, 242, 0.1);
  border-color: rgba(29, 161, 242, 0.2);
}

.social-button.twitter:hover {
  background: #1DA1F2;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(29, 161, 242, 0.2);
}

.social-button.instagram {
  background: linear-gradient(45deg, rgba(225, 48, 108, 0.1), rgba(253, 29, 29, 0.1), rgba(255, 159, 0, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-button.instagram:hover {
  background: linear-gradient(45deg, #e1306c, #fd1d1d, #ff9f00);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(225, 48, 108, 0.2);
}

.social-button.linkedin {
  background: rgba(10, 102, 194, 0.1);
  border-color: rgba(10, 102, 194, 0.2);
}

.social-button.linkedin:hover {
  background: #0A66C2;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(10, 102, 194, 0.2);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 0 4rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .social-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .social-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .contact-card {
    padding: 2rem 1.5rem;
  }
}

/* contact.css */