/* ── CONTACT PAGE SPECIFIC STYLES ────────────────────────────────────────── */

/* Internal Page Hero */
.contact-hero-section {
  background-color: var(--navy);
  background-image: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 46, 74, 0.7) 100%);
  color: var(--white);
  padding-top: calc(80px + var(--space-xl));
  padding-bottom: var(--space-xl);
  text-align: center;
  border-bottom: 4px solid var(--gold);
}

.contact-hero-title {
  font-size: var(--text-3xl);
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.contact-hero-desc {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Quick Channels Layout */
.channels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

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

.channel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-xl) var(--space-md);
  height: 100%;
  cursor: pointer;
}

.channel-icon-container {
  width: 60px;
  height: 60px;
  background-color: rgba(230, 81, 0, 0.08);
  color: var(--gold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.channel-card:hover .channel-icon-container {
  transform: translateY(-4px) scale(1.05);
  background-color: var(--gold);
  color: var(--white);
}

.channel-icon-container svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.channel-title {
  font-size: var(--text-md);
  color: var(--navy);
  font-weight: 700;
  margin-top: 4px;
}

.channel-desc {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 250px;
}

.channel-action {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-top: 8px;
}

/* Directions split grid layout */
.directions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

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

.map-wrapper {
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  width: 100%;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
}

.directions-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.directions-lead {
  font-size: var(--text-md);
  line-height: 1.6;
}

.direction-step {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 3px solid var(--gold);
  padding-left: var(--space-sm);
}

.direction-step-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
}

.direction-step-text {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: 1.5;
}
