/* ============================================
   VISIT PAGE STYLES
   ============================================ */

/* --- Visit Hero --- */
.visit-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.visit-hero .hero-bg {
  position: absolute;
  inset: 0;
}

.visit-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.visit-hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 0 24px;
}

.visit-hero-content .glass-pill {
  margin-bottom: var(--space-md);
}

.visit-hero-content .glass-pill .label {
  color: var(--volt);
  margin-bottom: 0;
}

.visit-hero-content h1 {
  color: var(--ivory);
  margin-bottom: var(--space-md);
}

.visit-hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- What to Expect Grid --- */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.expect-card {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: background 0.4s var(--ease-spring), transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-spring), border-color 0.4s var(--ease-spring), color 0.4s var(--ease-spring), opacity 0.4s var(--ease-spring);
}

.expect-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 56px rgba(26, 63, 199, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.expect-card .feature-icon {
  width: 48px;
  height: 48px;
  color: var(--royal);
  margin: 0 auto var(--space-sm);
}

.expect-card h3 {
  color: var(--charcoal);
  font-size: 24px;
  margin-bottom: var(--space-xs);
}

.expect-card p {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
}

/* --- Kids & Families Card --- */
.kids-card {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-lg);
  text-align: center;
}

.kids-card .feature-icon {
  width: 48px;
  height: 48px;
  color: var(--royal);
  margin: 0 auto var(--space-sm);
}

.kids-card p {
  color: var(--slate);
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Location Grid --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--grid-gap);
  align-items: start;
}

.address-card {
  padding: var(--space-lg);
}

.address-card .feature-icon {
  width: 48px;
  height: 48px;
  color: var(--royal);
  margin-bottom: var(--space-sm);
}

.address-card h3 {
  color: var(--charcoal);
  font-size: 22px;
  margin-bottom: var(--space-xs);
}

.address-card .address-text {
  color: var(--slate);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.address-card .service-time {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--royal);
  margin-bottom: var(--space-md);
}

.directions-btn {
  width: 100%;
}

/* --- Map Wrap --- */
.map-wrap {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(26, 63, 199, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* --- Visit Form --- */
.visit-form {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-lg);
}

.visit-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.visit-form .form-group.full-width {
  grid-column: 1 / -1;
}

.visit-form .btn-primary {
  width: 100%;
}

/* --- FAQ Accordion (reuses about.css accordion styles) --- */
.accordion {
  max-width: 720px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid var(--ivory-muted);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  min-height: 44px;
}

.accordion-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
}

.accordion-header svg {
  width: 20px;
  height: 20px;
  color: var(--slate);
  transition: transform 0.3s var(--ease-spring);
  flex-shrink: 0;
}

.accordion-item.active .accordion-header svg {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-spring);
}

.accordion-body-inner {
  padding: 0 0 20px 0;
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .visit-hero {
    min-height: 380px;
  }

  .expect-grid {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .map-wrap iframe {
    height: 300px;
  }

  .visit-form {
    padding: var(--space-md);
  }

  .visit-form .form-grid {
    grid-template-columns: 1fr;
  }
}
