/* =============================================
   SECTIONS CSS — Escon Primera
   ============================================= */

/* ══════════════════════════════════════════════
   1. HERO SECTION
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 20, 35, 0.82) 0%,
    rgba(13, 27, 42, 0.65) 55%,
    rgba(13, 27, 42, 0.30) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding-top: 60px;
}

/* ── Hero Content ── */
.hero-content { padding-right: 20px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-eyebrow span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

.hero-eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .divider {
  color: var(--gold);
  font-style: italic;
}

.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Hero Form (Glass Card) ── */
.hero-form-wrap {
  position: relative;
}

.hero-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 36px 32px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
}

.hero-form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 6px;
}

.hero-form-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  appearance: none;
  resize: vertical;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.form-group select option { background: var(--navy); color: var(--white); }

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.form-submit:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.form-privacy {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 14px;
}

/* ── Hero Scroll Indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-dot {
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease infinite;
}

.scroll-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 0.4; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-wrap { max-width: 420px; margin: 0 auto; }
}


/* ══════════════════════════════════════════════
   2. ABOUT / DISCOVER
══════════════════════════════════════════════ */
.about-section { background: var(--white); padding: var(--section-pad); }

.about-text { padding-right: 40px; }
.about-text p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.about-img-main {
  grid-column: 1 / -1;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--gold);
}

.about-img-sm {
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-img-sm:last-child {
  position: relative;
}

.about-img-sm:last-child::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  pointer-events: none;
}


/* ══════════════════════════════════════════════
   3. FEATURES / CRITERIA (Dark)
══════════════════════════════════════════════ */
.features-section {
  background: var(--navy);
  padding: var(--section-pad);
}

.features-section .section-title { color: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 50px;
  border: 1px solid rgba(196,154,60,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid rgba(196,154,60,0.15);
  transition: background var(--transition);
}

.feature-card:last-child { border-right: none; }

.feature-card:hover { background: rgba(196,154,60,0.06); }

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196,154,60,0.12);
  border: 1px solid rgba(196,154,60,0.3);
  border-radius: 50%;
  color: var(--gold);
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

.feature-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-card { border-bottom: 1px solid rgba(196,154,60,0.15); }
  .feature-card:nth-child(3n) { border-right: none; }
}

@media (max-width: 560px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(3n) { border-right: 1px solid rgba(196,154,60,0.15); }
  .feature-card:nth-child(2n) { border-right: none; }
}


/* ══════════════════════════════════════════════
   4. ALTERNATING SECTIONS (Interiors / Exteriors)
══════════════════════════════════════════════ */
.alt-section { padding: var(--section-pad); }
.alt-section.bg-off { background: var(--off-white); }

.alt-section .alt-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.alt-section.reverse .alt-inner { direction: rtl; }
.alt-section.reverse .alt-inner > * { direction: ltr; }

.alt-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.alt-image img { height: 460px; }

.alt-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(13,27,42,0.88);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 18px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.alt-text { }

.alt-text .section-label { color: var(--gold); }

.alt-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.alt-text h2 em {
  color: var(--gold);
  font-style: italic;
}

.alt-text p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 20px;
}

.alt-text .area-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .alt-section .alt-inner { grid-template-columns: 1fr; gap: 36px; direction: ltr !important; }
  .alt-image img { height: 280px; }
}


/* ══════════════════════════════════════════════
   5. LOCALE / STATS
══════════════════════════════════════════════ */
.locale-section { position: relative; overflow: hidden; }

.locale-hero {
  position: relative;
  padding: 100px 0;
  background: var(--navy-mid);
}

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

.locale-hero-bg img { height: 100%; object-fit: cover; opacity: 0.35; }

.locale-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.locale-hero-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}

.locale-hero-inner h2 em { color: var(--gold); font-style: italic; }

.locale-hero-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-top: 18px;
  line-height: 1.8;
}

/* Stats Strip */
.locale-stats {
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.08);
}

.locale-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--gray-light);
}

.stat-block {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-light);
  position: relative;
}

.stat-block:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  display: block;
}

.stat-unit {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin: 6px 0 8px;
  display: block;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

@media (max-width: 600px) {
  .locale-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(3) { border-right: 1px solid var(--gray-light); }
}


/* ══════════════════════════════════════════════
   6. GALLERY / CONSTRUCTION UPDATES (Dark)
══════════════════════════════════════════════ */
.gallery-section {
  background: var(--navy);
  padding: var(--section-pad);
}

.gallery-section .section-title { color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
  margin-top: 44px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.7) 0%, transparent 55%);
  transition: opacity var(--transition);
}

.gallery-item:hover::after { opacity: 0.8; }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 18px 20px;
}

.gallery-caption-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.gallery-caption-sub {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item { height: 200px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════
   7. FLOOR PLANS V2 — Apartment Types
══════════════════════════════════════════════ */
.fp-section-v2 {
  background: var(--off-white);
  padding: var(--section-pad);
}

/* Tabs */
.fp-v2-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--gray-light);
  border-radius: 60px;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto 48px;
  background: var(--off-white);
}

.fp-v2-tab {
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-body);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}

.fp-v2-tab:hover { color: var(--navy); }

.fp-v2-tab.active {
  background: var(--navy);
  color: var(--gold);
  border-radius: 60px;
  box-shadow: 0 4px 16px rgba(13,27,42,0.25);
}

/* Panels */
.fp-v2-panel {
  display: none;
  animation: fpFadeIn 0.4s ease;
}
.fp-v2-panel.active { display: block; }

@keyframes fpFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Card */
.fp-v2-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,0.1);
  border: 1px solid var(--gray-light);
  min-height: 480px;
}

/* Image Column */
.fp-v2-image {
  position: relative;
  background: #faf8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
}

.fp-v2-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.fp-v2-image:hover img {
  transform: scale(1.03);
}

.fp-v2-image-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--navy);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 40px;
}

/* Info Column */
.fp-v2-info {
  padding: 52px 48px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.fp-v2-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.fp-v2-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 10px;
}

.fp-v2-area {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.fp-v2-area strong { color: rgba(255,255,255,0.8); }

/* Specs Grid */
.fp-v2-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(196,154,60,0.2);
  border-bottom: 1px solid rgba(196,154,60,0.2);
}

.fp-v2-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 16px 8px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
}

.fp-v2-spec:hover {
  background: rgba(196,154,60,0.08);
  transform: translateY(-3px);
}

.fp-v2-spec-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(196,154,60,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(196,154,60,0.08);
  margin-bottom: 4px;
}

.fp-v2-spec-icon svg { width: 20px; height: 20px; }

.fp-v2-spec-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.fp-v2-spec-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

/* Actions */
.fp-v2-actions {
  display: flex;
  gap: 16px;
}

.fp-v2-actions .btn {
  flex: 1;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .fp-v2-card { grid-template-columns: 1fr; }
  .fp-v2-image { min-height: 320px; }
}

@media (max-width: 768px) {
  .fp-v2-tabs { flex-direction: column; border-radius: var(--radius-md); }
  .fp-v2-tab { padding: 12px 20px; }
  .fp-v2-tab.active { border-radius: var(--radius-md); }
  .fp-v2-info { padding: 36px 28px; }
  .fp-v2-title { font-size: 30px; }
  .fp-v2-specs { grid-template-columns: 1fr 1fr; gap: 12px; }
  .fp-v2-actions { flex-direction: column; }
}


/* ══════════════════════════════════════════════
   8. AMENITIES
══════════════════════════════════════════════ */
.amenities-section { background: var(--white); padding: var(--section-pad); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.amenity-card {
  padding: 38px 28px;
  text-align: center;
  border-right: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.amenity-card:nth-child(4n) { border-right: none; }
.amenity-card:nth-child(n+5) { border-bottom: none; }

.amenity-card.gold-card {
  background: var(--gold);
}

.amenity-card.gold-card .amenity-icon { background: rgba(255,255,255,0.2); color: var(--white); }
.amenity-card.gold-card .amenity-name { color: var(--white); }
.amenity-card.gold-card .amenity-desc { color: rgba(255,255,255,0.7); }

.amenity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); z-index: 1; position: relative; }

.amenity-icon {
  width: 60px;
  height: 60px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}

.amenity-icon svg { width: 26px; height: 26px; }

.amenity-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.amenity-desc {
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-card:nth-child(4n) { border-right: 1px solid var(--gray-light); }
  .amenity-card:nth-child(2n) { border-right: none; }
  .amenity-card:nth-child(n+5) { border-bottom: 1px solid var(--gray-light); }
  .amenity-card:nth-child(n+7) { border-bottom: none; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════
   9. MAP / LOCATION
══════════════════════════════════════════════ */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.location-map {
  position: relative;
  overflow: hidden;
}

.location-map img { height: 100%; object-fit: cover; }

.location-map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

.location-info {
  background: var(--navy);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info .section-title { color: var(--white); margin-bottom: 36px; }

.poi-category {
  margin-bottom: 28px;
}

.poi-category-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(196,154,60,0.25);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.poi-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.poi-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
}

.poi-name { color: rgba(255,255,255,0.75); }

.poi-distance {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-pale);
  background: rgba(196,154,60,0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .location-section { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }
  .location-info { padding: 40px 24px; }
}


/* ══════════════════════════════════════════════
   10. SCHEDULE A VISIT
══════════════════════════════════════════════ */
.schedule-section {
  background: var(--gold);
  padding: 60px 0;
}

.schedule-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.schedule-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  color: var(--white);
}

.schedule-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
}

.schedule-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-white {
  background: var(--white);
  color: var(--gold);
  font-weight: 600;
}

.btn-white:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
}
