/* ============================================
   SIHIA AFRICA LTD — CONTACT PAGE CSS v2
   Blue × Gold × White Premium Design
   ============================================ */

/* ── Contact Page Hero ───────────────────── */
.page-hero {
  position: relative;
  height: 85vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.page-hero .bg-photo {
  filter: brightness(0.3) saturate(0.6);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.92;
  margin-bottom: 1.2rem;
}

.page-hero h1 .line {
  display: block;
}

.page-hero h1 .line:first-child {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero h1 .line.gold {
  color: var(--gold-light);
}

.page-hero h1 .line:last-child {
  color: #FFFFFF;
}

.page-hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.6;
}

.page-hero .eyebrow {
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

@media (max-width: 899px) {
  .page-hero {
    height: 70vh;
    min-height: 420px;
    align-items: flex-end;
    padding-bottom: var(--space-lg);
  }

  .page-hero-content {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .page-hero {
    height: 65vh;
    min-height: 380px;
  }
}

/* Contact Main */
.contact-main {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
  align-items: start;
}

/* Left side */
.contact-info-col h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 0.95;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: var(--space-md);
}

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

.contact-item-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-blue);
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--blue);
}

.contact-item-body strong {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-item-body a,
.contact-item-body span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
}

.contact-item-body a {
  color: var(--blue);
  transition: color var(--transition-fast);
}

.contact-item-body a:hover { color: var(--blue-mid); }

.contact-map {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  text-align: center;
  color: var(--grey);
}

.map-placeholder p {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.whatsapp-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #25D366;
  color: white;
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all var(--transition-fast);
  cursor: none;
  width: 100%;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.whatsapp-cta-btn:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  color: white;
}

.business-hours {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.hours-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: block;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child { border-bottom: none; }

.hours-day {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--grey);
}

.hours-time {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-primary);
  font-weight: 700;
}

/* Right side - Form */
.contact-form-col {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}

/* Accent bar at top of form */
.contact-form-col::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue), var(--gold-light));
  margin: calc(-1 * var(--space-md)) calc(-1 * var(--space-md)) var(--space-md);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.contact-form-col h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-lg);
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--success);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--grey);
}

/* FAQ Section */
.faq-section {
  background: var(--off-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: start;
}

.faq-list {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.faq-sidebar {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-sidebar::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  top: -100px;
  right: -50px;
  pointer-events: none;
}

.faq-sidebar h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.faq-sidebar p {
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-md);
}

@media (max-width: 899px) {
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid     { grid-template-columns: 1fr; }
}
