﻿/* ═══════════════════════════════════════════════════════════════
   TWIN RIVER DEVELOPMENT - services-landing.css
   ═══════════════════════════════════════════════════════════════ */

/* ── PAGE HEADER ────────────────────────────────────────────── */
.page-header {
  padding: 72px var(--sp-10) 64px;
  border-bottom: 0.5px solid var(--border);
  background: var(--white);
}
.page-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--gray);
  margin-bottom: var(--sp-4);
  line-height: 1.05;
}
.page-header-sub {
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
}

/* ── SERVICE PILLARS ────────────────────────────────────────── */
.service-pillar {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sp-10);
  padding: var(--sp-16) 0;
  border-bottom: 0.5px solid var(--border);
  align-items: start;
}
.service-pillar:first-of-type { padding-top: 0; }
.service-pillar:last-of-type { border-bottom: none; }

.service-pillar--alt {
  background: transparent;
}

/* Large icon column */
.service-pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-top: var(--sp-2);
  flex-shrink: 0;
}
.service-pillar-icon svg { width: 28px; height: 28px; }

/* Content column */
.service-pillar-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.15em;
  margin-bottom: var(--sp-3);
}

.service-pillar-content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
  line-height: 1.15;
}

.service-pillar-lead {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.service-pillar-content > p:not(.service-pillar-lead) {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
  max-width: 680px;
}

.service-pillar-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2) var(--sp-8);
  margin-bottom: var(--sp-8);
  max-width: 580px;
}

.service-pillar-list li {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  padding-left: var(--sp-4);
  position: relative;
  line-height: 1.5;
}
.service-pillar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.6;
}

/* ── WHY ALL THREE ──────────────────────────────────────────── */
.why-three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-4);
}

.why-three-item p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
}

/* ── CTA ────────────────────────────────────────────────────── */
.cta-section {
  background: var(--blue);
  border-bottom: none;
  text-align: center;
  padding: var(--sp-20) var(--sp-10);
}
.cta-section .section-inner--narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-4);
  line-height: 1.15;
}
.cta-section p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 440px;
  margin-bottom: var(--sp-8);
  line-height: 1.7;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .service-pillar {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .service-pillar-icon { width: 52px; height: 52px; }
  .service-pillar-icon svg { width: 22px; height: 22px; }
  .why-three-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .page-header { padding: 56px var(--sp-6) 48px; }
}

@media (max-width: 600px) {
  .service-pillar-list { grid-template-columns: 1fr; }
}

/* Dark contrast polish */
.page-header {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--white) 100%);
}
.page-header h1 {
  color: #FFFFFF;
}
.service-pillar {
  border-color: rgba(255,255,255,0.1);
}
.service-pillar-icon {
  border: 0.5px solid rgba(90,180,247,0.22);
}
.service-pillar-list li {
  color: var(--text-secondary);
}
