/* Contact Hero Section */
.contact-hero {
  padding: 10rem 2rem 6rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  text-align: center;
}

.contact-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

/* Quick Contact Cards */
.quick-contact {
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
}

.contact-cards-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 25%;
  padding: 0.5rem;
}

.card-icon img {
  width: 100%;
  height: 100%;
}

.contact-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.availability {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--light-text);
}

/* Main Contact Section */
.main-contact {
  padding: 6rem 2rem;
  background: var(--background-light);
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

/* Form Styles */
.contact-form-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.form-intro {
  color: var(--light-text);
  margin-bottom: 2rem;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.consent-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background: var(--secondary-color);
}

/* Contact Info Section */
.contact-info-section {
  padding: 2rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.business-hours {
  margin-bottom: 3rem;
}

.business-hours h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
}

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

/* FAQ Section */
.faq-section h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h4 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.faq-item p {
  color: var(--text-color);
}

/* Map Section */
.map-section {
  padding: 6rem 2rem;
  background: var(--white);
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
}

.map-container h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.map-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.map-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.direction-notes {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-top: 1rem;
}

.transportation-options {
  list-style: none;
  margin-top: 1rem;
}

.transportation-options li {
  margin: 0.5rem 0;
  color: var(--light-text);
}

/* Emergency Contact */
.emergency-contact {
  padding: 4rem 2rem;
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.emergency-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1.5rem 0;
}

.emergency-note {
  opacity: 0.9;
}

/* Social Connect */
.social-connect {
  padding: 4rem 2rem;
  background: var(--white);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.social-link {
  padding: 0.75rem 1.5rem;
  background: var(--background-light);
  border-radius: 2rem;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Newsletter Section */
.newsletter {
  padding: 4rem 2rem;
  background: var(--background-light);
  text-align: center;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0.75rem 2rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--secondary-color);
}

.mapouter {
  position: relative;
  text-align: right;
  width: 100%;
  height: 400px;
}
.gmap_canvas {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 400px;
}
.gmap_iframe {
  height: 400px !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .social-links {
    flex-wrap: wrap;
  }
}
