/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-section {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.contact-info-section:hover {
  border-color: #DAA520;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(218,165,32,0.15);
}

.contact-intro {
  color: #2c3e50;
  margin: 1rem 0 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.contact-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(218,165,32,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list strong {
  color: #2c3e50;
  font-weight: 600;
}

.contact-list a {
  color: #DAA520;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.contact-form {
  background: white;
  padding: 3.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact section */
.section.contact {
  background: #ffffff;
  padding: 80px 0;
}

.contact-form:hover {
  border-color: #DAA520;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(218,165,32,0.15);
}

.contact-form h3 {
  text-align: center;
  margin: 0 0 2rem;
  color: #2c3e50;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
}

/* Location Section */
.location-section {
  background: #ffffff;
  padding: 80px 0;
}

/* Make Google Maps buttons text black */
.location-actions .btn-primary,
.location-actions .btn-outline {
  color: #000000 !important;
}

.location-actions .btn-primary:hover,
.location-actions .btn-outline:hover {
  color: #000000 !important;
}

/* Location content centering */
.location-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.location-info {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  width: 100%;
}

.location-info:hover {
  border-color: #DAA520;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(218,165,32,0.15);
}

.location-details h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  margin: 0 0 1.5rem;
  color: #2c3e50;
  font-weight: 600;
}

.location-details p {
  margin: 0 0 2rem;
  line-height: 1.6;
  color: #2c3e50;
  font-weight: 500;
}

.location-details strong {
  color: #DAA520;
  font-weight: 600;
}

.location-details a {
  color: #DAA520;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.location-details a:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* Contact actions centering */
.location-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

/* Map container centering */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(5px);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.map-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.map-security-message {
  text-align: center;
  padding: 2rem;
}

.map-security-message p {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 500;
}

.map-iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 20px;
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #DAA520, #FFD700, #DAA520);
  z-index: 10;
}

/* Mobile responsive location actions */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .location-actions {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  /* Hero section tablet improvements */
  .hero-text h1 {
    font-size: clamp(3rem, 6vw, 4.5rem) !important;
  }
  
  .hero-text p {
    font-size: clamp(1.3rem, 2.3vw, 1.7rem) !important;
  }
}

/* Mobile responsive location actions */
@media (max-width: 768px) {
  .contact-info-section,
  .contact-form,
  .location-info {
    padding: 1.5rem;
  }
  
  .contact-list {
    max-width: 100%;
  }
  
  .contact-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .location-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .map-iframe {
    height: 350px;
  }
  
  /* Hero section mobile improvements */
  .hero-text h1 {
    font-size: clamp(2.5rem, 7vw, 4rem) !important;
    margin-bottom: 2rem;
  }
  
  .hero-text p {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem) !important;
    margin-bottom: 2rem;
  }
  
  .cta-group {
    gap: 1.2rem !important;
  }
  
  .cta-group .btn {
    font-size: 1rem !important;
    padding: 0.9rem 1.8rem !important;
  }
  
  /* Social grid mobile */
  .social-grid[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    max-width: 300px !important;
  }
  
  .social-grid[style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
    max-width: 300px !important;
  }
  
  /* Location details mobile */
  .location-details h3 {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .location-details p {
    font-size: 1rem;
    text-align: center;
  }
  
  .location-details strong {
    display: block;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 550px) {
  .contact-info-section,
  .contact-form,
  .location-info {
    padding: 1.2rem;
  }
  
  .contact-form h3,
  .location-details h3 {
    font-size: 1.4rem;
  }
  
  .map-iframe {
    height: 280px;
  }
  
  /* Hero section small mobile */
  .hero-text h1 {
    font-size: clamp(2rem, 6vw, 3rem) !important;
    margin-bottom: 1.5rem;
  }
  
  .hero-text p {
    font-size: clamp(1.1rem, 2vw, 1.4rem) !important;
    margin-bottom: 1.5rem;
  }
  
  .cta-group .btn {
    font-size: 0.95rem !important;
    padding: 0.8rem 1.5rem !important;
    width: 100%;
    max-width: 280px;
  }
  
  /* Form improvements */
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-row input,
  .form-row textarea {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 1rem;
  }
  
  .btn.full {
    font-size: 1rem;
    padding: 1rem;
  }
}
