/* ===== CONTACT PAGE ===== */
.contact-section {
  position: relative;
  z-index: 10;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
  }

  .contact-card,
  .contact-map {
    height: 100%;
  }
}

.contact-card {
  background: #0f151d;
  border: 1px solid #1e2736;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.contact-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #1e2736;
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-item-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.contact-item-value {
  color: #f8fafc;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.contact-item-value:hover {
  color: var(--brand-gold-light);
}

.contact-item-value--text {
  font-weight: 500;
  line-height: 1.6;
  color: #cbd5e1;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid #1e2736;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 9999px;
  border: 1px solid #1e2736;
  background: #131a24;
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-social-link:hover {
  color: #fff;
  border-color: var(--brand-gold-dark);
  transform: translateY(-1px);
}

.contact-social-link--wa:hover {
  border-color: #25D366;
  color: #25D366;
}

.contact-social-link--linkedin:hover {
  border-color: #0a66c2;
  color: #0a66c2;
}

.contact-social-link--instagram:hover {
  border-color: #e1306c;
  color: #e1306c;
}

.contact-map {
  position: relative;
  width: 100%;
  height: clamp(280px, 52vw, 480px);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #1e2736;
  background: #0f151d;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

@media (min-width: 900px) {
  .contact-map {
    height: 100%;
    min-height: 0;
  }
}

.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-content {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.about-content p {
  color: #cbd5e1;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .about-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-highlight {
  padding: 1.25rem;
  border-radius: 0.85rem;
  border: 1px solid #1e2736;
  background: #131a24;
  text-align: center;
}

.about-highlight strong {
  display: block;
  color: var(--brand-gold);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.about-highlight span {
  color: #94a3b8;
  font-size: 0.875rem;
}

.service-workflows {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .service-workflows {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-workflow-card {
  padding: 1.25rem 1.35rem;
  border-radius: 0.85rem;
  border: 1px solid var(--border-glass, #d8dee8);
  background: var(--bg-panel, #fff);
}

.section-light .service-workflow-card {
  background: #fff;
  border-color: #d8dee8;
}

.service-workflow-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-main, #0f172a);
}

.service-workflow-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dim, #475569);
}

.service-detail-subtitle {
  color: var(--brand-gold);
  font-size: 1.05rem;
  font-weight: 600;
  margin: -0.25rem 0 1.25rem;
}

.service-detail-intro {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 0.5rem;
}

.section-dark .service-detail-intro {
  color: #94a3b8;
}

.service-workflows-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin: 1.5rem 0 0.75rem;
}

.section-dark .service-workflows-label {
  color: #94a3b8;
}

.section-dark .service-workflow-card {
  background: #131a24;
  border-color: #1e2736;
}

.section-dark .service-workflow-card h3 {
  color: #f8fafc;
}

.bespoke-intro {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #94a3b8;
}

.section-light .bespoke-intro {
  color: #475569;
}

.bespoke-section-lead {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #94a3b8;
}

.section-light .bespoke-section-lead {
  color: #475569;
}
