/* ── CONTACT HERO ── */
.contact-hero {
  background:
    linear-gradient(rgba(0,0,0,0.66), rgba(0,0,0,0.5)),
    url('../images/Footer-image.avif') center/cover no-repeat;
  min-height: 60vh;
  padding: 8.5rem 12% 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  color: #fff;
}

.contact-hero-left {
  max-width: 500px;
}

.contact-hero-left h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 1.15rem;
}

.contact-hero-left p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.contact-info-item span,
.contact-info-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-item span:hover,
.contact-info-item a:hover {
  color: #fff;
}

.contact-info-divider {
  color: rgba(255,255,255,0.3);
}

/* ── CONTACT FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 0.75rem 0;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: rgba(255,255,255,0.5);
}

.form-submit {
  background: #fff;
  color: #111;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 1rem;
  transition: opacity 0.2s;
}

.form-submit:hover {
  opacity: 0.85;
}

/* ── CONTACT SOCIALS ── */
.contact-socials {
  background: #111;
  padding: 3rem 12%;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.socials-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.socials-title {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-right: 1rem;
}

/* ── CONTACT OFFICES ── */
.contact-offices {
  padding: 6rem 12%;
  background: var(--off-white);
}

.offices-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offices-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 400;
}

.offices-nav {
  display: flex;
  gap: 1rem;
}

.office-prev,
.office-next {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.office-prev:hover,
.office-next:hover {
  border-color: var(--text-dark);
  background: var(--text-dark);
  color: #fff;
}

.offices-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.office-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.office-card:nth-child(2) {
  grid-template-columns: 1fr 1fr;
}

.office-card:nth-child(2) .office-image {
  order: -1;
}

.office-details h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.office-info {
  margin-bottom: 1.5rem;
}

.office-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.office-info p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.office-info a {
  color: var(--text-mid);
}

.office-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* ── FAQ ── */
.contact-faq {
  padding: 6rem 12%;
  border-top: 1px solid var(--border);
}

.faq-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.faq-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.faq-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-items {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  cursor: pointer;
  transition: all 0.2s;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item.active .faq-answer {
  display: block;
  animation: slideDown 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.faq-number {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  min-width: 40px;
}

.faq-question {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  flex: 1;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  margin-top: 1.5rem;
  padding-left: 40px;
}

.faq-answer p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .contact-hero,
  .contact-socials,
  .contact-offices,
  .contact-faq {
    padding-left: 5%;
    padding-right: 5%;
  }

  .contact-hero {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .offices-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .office-card {
    grid-template-columns: 1fr;
  }

  .faq-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .faq-number {
    min-width: auto;
  }

  .faq-toggle {
    align-self: flex-end;
    margin-top: -2rem;
  }

  .faq-answer {
    padding-left: 0;
  }
}
