@import url('base.css');

/* ========================
   Contact Hero
   ======================== */
.contact-hero {
  position: relative;
  height: 45vh;
  min-height: 300px;
  max-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.contact-hero-content h1 {
  font-family: 'HelveticaNeueBold', Helvetica, Arial, sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.contact-hero-content p {
  font-size: 1rem;
  opacity: 0.9;
}

/* ========================
   Section Labels
   ======================== */
.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: none;
  color: #888;
  margin-bottom: 0.8rem;
}

/* ========================
   Contact Main Section
   ======================== */
.contact-main {
  padding: 5rem 1.5rem;
  background-color: #EFEEEA;
}

.contact-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-info h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.contact-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2.5rem;
}

/* ========================
   Contact Details
   ======================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: #EFEEEA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  color: #1a1a1a;
}

.contact-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #1a1a1a;
}

.contact-text p {
  font-size: 0.95rem;
  color: #666;
}

.contact-text a {
  color: #666;
  transition: color 0.3s;
}

.contact-text a:hover {
  color: #1a1a1a;
}

/* ========================
   WhatsApp Button
   ======================== */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background-color: #25D366;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: none;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 2.5rem;
}

.whatsapp-btn:hover {
  background-color: #1da851;
  transform: translateY(-2px);
}

/* ========================
   Social Links
   ======================== */
.social-links h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: none;
  margin-bottom: 1rem;
  color: #888;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background-color: #EFEEEA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #1a1a1a;
  color: #fff;
}

/* ========================
   Contact Image
   ======================== */
.contact-image img {
  width: 100%;
  height: auto;
}

/* ========================
   FAQ Section
   ======================== */
.contact-faq {
  padding: 5rem 1.5rem;
  background-color: #EFEEEA;
}

.faq-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.faq-inner h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: left;
}

.faq-item {
  background-color: #EFEEEA;
  padding: 2rem;
}

.faq-item h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: #1a1a1a;
}

.faq-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}

/* ========================
   Footer Styles
   ======================== */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 45px;
  width: auto;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: #1a1a1a;
  transition: opacity 0.3s;
}

.footer-social a:hover {
  opacity: 0.6;
}

.footer-links-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: none;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #1a1a1a;
}

.footer-bottom {
  border-top: 1px solid #e5e0da;
  padding: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #888;
}

/* ========================
   Responsive
   ======================== */
@media (max-width: 768px) {
  .contact-hero {
    height: 40vh;
    min-height: 250px;
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
  }

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

  .contact-main {
    padding: 4rem 1rem;
  }

  .contact-main-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info h2 {
    font-size: 1.8rem;
  }

  .contact-image {
    order: -1;
  }

  .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }

  .contact-faq {
    padding: 4rem 1rem;
  }

  .faq-inner h2 {
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }

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

  .faq-item {
    padding: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1rem;
  }

  .footer-links-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .contact-hero {
    height: 35vh;
    min-height: 220px;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    width: calc(100% + 2.5rem);
  }

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

  .contact-info h2 {
    font-size: 1.6rem;
  }

  .contact-item {
    align-items: flex-start;
    /* Ensure alignment at top */
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    /* Prevent icon shrinking */
    flex-shrink: 0;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }

  .footer-links-section {
    grid-template-columns: 1fr;
  }
}