.contact-hero {
    --page-hero-image: url('/img/contact/hero.webp');
}

.contact-hero .hero-content {
    width: 100%;
    padding: 0 1rem;
}

/* Main Content */
.contact-info {
    background-color: #fff;
    padding: 3rem 1rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.contact-image {
    flex: 1 1 40%;
    border-radius: 12px;
    box-shadow: 0px 25px 90px rgba(53, 0, 78, 0.4);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-details {
    flex: 1 1 55%;
}

.contact-details-facebook {
    flex: 1 1 55%;
    color: #101d8f;
}

.contact-details h2 {
    color: #8b5cf6;
    font-size: 1.4rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.6rem;
}




/* Map Section */
.contact-map {
    padding: 0;
    margin-top: 0;
}

.contact-form h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: #111;
}

.order-form {
    margin: 20px 0 30px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.order-form h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #4c1d95;
}

.order-form .row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.order-form label {
    font-size: 0.95rem;
    color: #333;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color .2s, box-shadow .2s;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, .15);
}

.order-form .btn {
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    background: linear-gradient(135deg, #4c1d95, #6d28d9);
    color: #fff;
    font-weight: 500;
}

.order-form .btn:hover {
    opacity: 0.9;
}

#cf-status {
    margin-left: 10px;
    font-size: 0.95rem;
}

.contact-faq {
    padding: 4rem 0;
    background: #f8f5ff;
}

.contact-faq .faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #321d6d;
}

.contact-faq .faq-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-faq .faq-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-faq .faq-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(50, 29, 109, 0.08);
    padding: 1.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-faq .faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(50, 29, 109, 0.12);
}

.contact-faq .faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #2a1f5a;
}

.contact-faq .faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

@media (max-width: 420px) {
  /* Safe area for notch */
  .hero-header {
    padding-top: calc(0.5rem + env(safe-area-inset-top));
    padding-bottom: 0.5rem;
  }

  .contact-hero {
    height: 88vh;
    background-position: center top;
  }
  .contact-hero .hero-content { padding: 0 1rem; }
  .contact-hero h1 { font-size: 2rem; line-height: 1.2; }
  .contact-hero h2 { font-size: 1rem; font-weight: 400; }

  .contact-container {
    flex-direction: column;
    gap: 1.25rem;
  }

  .contact-image { order: 1; }
  .contact-details { order: 2; }

  .order-form {
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,.06);
  }

  .order-form .row { margin-bottom: 12px; }
  .order-form label { font-size: .95rem; }
  .order-form input,
  .order-form select,
  .order-form textarea {
    font-size: 16px; /* prevent iOS zoom */
    padding: 12px;
  }

  .order-form .actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .order-form .btn {
    width: 100%;
    font-size: .95rem;
    padding: 12px 14px;
  }

  .contact-details p { font-size: .95rem; }

  /* Make embedded map responsive on small screens */
  .contact-details iframe {
    width: 100% !important;
    height: 300px !important;
  }

  /* Address card buttons stack nicely */
  .address-card .actions {
    flex-direction: column;
    align-items: stretch;
  }
}