/* ==========================================================================
   AD!KTED — pages/contact.css
   ========================================================================== */

.contact-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-8);
  }
}

.contact-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.40rem);
  color: var(--brand-ink);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

/* Contact Info List */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.contact-info-item__label {
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--brand-ink);
  margin-bottom: 2px;
}

.contact-info-item__value {
  color: #5a5a5a;
  font-size: 0.95rem;
}

/* Form Grid */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 600px) {
  .contact-form-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--space-4);
    row-gap: var(--space-4);
  }
  .contact-form-field--full {
    grid-column: span 2;
  }
}

/* Clean Form inputs labels */
.form-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: var(--space-1);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid #eae7e0;
  border-radius: var(--radius-md);
  background: var(--brand-white);
  color: var(--brand-ink);
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(246, 81, 5, 0.1);
}

/* Social icons design */
.contact-socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-cream);
  color: var(--brand-ink);
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.contact-socials a:hover {
  background-color: var(--brand-orange);
  color: var(--brand-white);
  transform: translateY(-2px);
}

.contact-socials svg {
  width: 18px;
  height: 18px;
}

/* Map frame design */
.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--brand-cream);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* FAQ Accordion Section */
#faq {
  scroll-margin-top: 100px;
}

.faq-container {
  max-width: 800px;
  margin: var(--space-6) auto 0;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  background: var(--brand-white);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.03);
}

.faq-item {
  border-bottom: 1px solid #eaeaea;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item__header {
  width: 100%;
  background: none;
  border: 0;
  padding: 1.3rem var(--space-5);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--brand-ink);
  transition: background-color 0.2s;
}

.faq-item__header:hover {
  background-color: var(--brand-cream);
}

.faq-item__question {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
}

.faq-item__toggle {
  font-size: 1.4rem;
  color: var(--brand-orange);
  line-height: 1;
  font-weight: 600;
  user-select: none;
  transition: color 0.2s;
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-out), padding 0.3s var(--ease-out);
  padding-inline: var(--space-5);
  color: #5a5a5a;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.is-open .faq-item__content {
  max-height: 200px;
  padding-bottom: var(--space-4);
}

/* Order tracking section */
.order-track {
  display: flex;
  gap: var(--space-2);
  max-width: 420px;
  margin-inline: auto;
  margin-top: var(--space-4);
}

.order-track input {
  flex: 1;
  border: 2px solid #e4e0d8;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
}
