/* ============================================================
   Property Launch Labs — Main Stylesheet
   Colors: Navy #1a2744, Coral #e8581c, White #fff, Gray #f5f6fa
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1d3461;
  --navy-dark: #152550;
  --navy-light: #243d75;
  --coral: #e07a5a;
  --coral-dark: #c46245;
  --coral-light: #f0906e;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-light: #f0f2f7;
  --gray: #e2e6ef;
  --gray-mid: #8a93a8;
  --text: #1e2d45;
  --text-light: #4a5568;
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 2px 16px rgba(26,39,68,.10);
  --shadow-lg: 0 8px 40px rgba(26,39,68,.14);
  --transition: .22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--coral-dark); }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.22;
  color: var(--navy);
}
h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.lead-text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232,88,28,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}
.btn-lg { padding: 16px 36px; font-size: 1.08rem; }
.btn-sm { padding: 9px 18px; font-size: .88rem; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(26,39,68,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
}
.logo-text {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}
.logo-link .logo-text {
  display: none;
}
.logo-tagline {
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  font-weight: 500;
  display: block;
  letter-spacing: .03em;
}

/* Desktop nav */
.main-nav { display: none; }
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.header-cta { display: none; }

/* Mobile nav toggle */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 12px 20px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu li:last-child { border-bottom: none; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,.9);
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 500;
}
.mobile-menu .btn {
  width: 100%;
  margin-top: 14px;
  text-align: center;
}
.header-phone-mobile {
  display: block;
  color: var(--coral);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Desktop nav breakpoint */
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .main-nav { display: flex; align-items: center; }
  .header-cta { display: flex; align-items: center; gap: 14px; }
  .header-phone {
    color: var(--coral);
    font-weight: 700;
    font-size: .95rem;
  }
  .header-phone:hover { color: var(--coral-light); }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,88,28,.18);
  color: var(--coral-light);
  border: 1px solid rgba(232,88,28,.35);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 5.5vw, 3rem);
}
.hero-sub {
  color: rgba(255,255,255,.80);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-phone-link {
  color: var(--coral-light);
  font-weight: 700;
  font-size: 1.1rem;
}
.hero-phone-link:hover { color: var(--white); }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-trust-item {
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust-item::before {
  content: '✓';
  color: var(--coral);
  font-weight: 700;
}
.hero-logo-display {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  text-align: center;
}
.hero-logo-box img {
  max-width: 220px;
  margin: 0 auto 16px;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.hero-logo-tagline {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  font-style: italic;
}

@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1fr 1fr; align-items: center; }
  .hero { padding: 80px 0 96px; }
}

/* ---------- Section Styles ---------- */
section { padding: 64px 0; }
.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,.78); }
.section-gray { background: var(--off-white); }
.section-label {
  display: inline-block;
  color: var(--coral);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-header.left { text-align: left; margin-left: 0; }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-top: 12px;
}
.section-navy .section-header p { color: rgba(255,255,255,.72); }

/* ---------- Cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(232,88,28,.25);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,88,28,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p { color: var(--text-light); font-size: .95rem; margin: 0; }

@media (min-width: 600px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Who We Help ---------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.who-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.who-icon {
  width: 40px;
  height: 40px;
  background: rgba(232,88,28,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.who-label {
  color: rgba(255,255,255,.9);
  font-size: .95rem;
  font-weight: 500;
}
@media (min-width: 600px) {
  .who-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray);
}
.step-num {
  width: 44px;
  height: 44px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.step-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step-body p { font-size: .92rem; color: var(--text-light); margin: 0; }

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .steps-grid { grid-template-columns: repeat(5, 1fr); flex-direction: column; }
  .step { flex-direction: column; text-align: center; }
  .step-num { margin: 0 auto 12px; }
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--coral);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.88); font-size: 1.05rem; margin-bottom: 28px; }
.cta-band-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  border-top: 4px solid var(--coral);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--text-light); line-height: 1.7; }
.service-card .btn { margin-top: 20px; }

/* ---------- Blog / Insights ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 24px; }
.blog-category {
  display: inline-block;
  background: rgba(232,88,28,.1);
  color: var(--coral);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: .9rem; color: var(--text-light); margin-bottom: 16px; }
.blog-card .btn-sm { font-size: .82rem; padding: 9px 16px; }

@media (min-width: 600px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Forms ---------- */
.form-section { background: var(--off-white); }
.form-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  max-width: 860px;
  margin: 0 auto;
}
.form-intro {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: .98rem;
  background: rgba(26,39,68,.05);
  border-left: 3px solid var(--coral);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group label .req {
  color: var(--coral);
  margin-left: 2px;
}
.form-group label .hint {
  font-weight: 400;
  color: var(--gray-mid);
  font-size: .82rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: .97rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,68,.10);
}
textarea { min-height: 100px; resize: vertical; }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

/* Checkbox / Radio groups */
.check-group, .radio-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.check-item, .radio-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}
.check-item:hover, .radio-item:hover {
  border-color: var(--coral);
  background: rgba(232,88,28,.04);
}
.check-item input, .radio-item input { flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; accent-color: var(--coral); cursor: pointer; }
.check-item span, .radio-item span { font-size: .93rem; color: var(--text); line-height: 1.4; }
@media (min-width: 600px) {
  .check-group-2col { grid-template-columns: repeat(2, 1fr); }
  .check-group-3col { grid-template-columns: repeat(3, 1fr); }
}

/* File upload */
.file-upload-area {
  border: 2px dashed var(--gray);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--off-white);
}
.file-upload-area:hover, .file-upload-area.dragover {
  border-color: var(--coral);
  background: rgba(232,88,28,.04);
}
.file-upload-area .upload-icon { font-size: 2.5rem; margin-bottom: 10px; }
.file-upload-area p { color: var(--text-light); font-size: .92rem; margin: 0; }
.file-upload-area strong { color: var(--coral); }
.file-input-hidden { position: absolute; opacity: 0; pointer-events: none; width: 0; }
.file-preview-list { list-style: none; margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.file-preview-list li {
  background: rgba(26,39,68,.07);
  border-radius: 4px;
  padding: 5px 10px;
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Form sections */
.form-section-header {
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 28px 0 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 20px;
}
@media (min-width: 600px) {
  .form-row-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Checkbox for consent */
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--off-white);
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 8px;
}
.consent-check input { flex-shrink: 0; margin-top: 3px; width: 18px; height: 18px; accent-color: var(--coral); }
.consent-check label { font-size: .9rem; color: var(--text-light); font-weight: 400; line-height: 1.5; }

/* Form submit */
.form-submit-area { margin-top: 28px; }
.form-submit-note {
  font-size: .85rem;
  color: var(--gray-mid);
  margin-top: 12px;
  text-align: center;
}

/* Flash messages */
.flash-messages { margin-bottom: 20px; }
.flash {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: .93rem;
  margin-bottom: 10px;
}
.flash.error { background: #fff0ed; color: #c0392b; border: 1px solid #f5c6c0; }
.flash.success { background: #edfaf4; color: #1e7e55; border: 1px solid #b7ecce; }

/* ---------- About Page ---------- */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 0;
  text-align: center;
}
.about-hero h1, .about-hero p { color: var(--white); }
.about-hero p { color: rgba(255,255,255,.78); font-size: 1.1rem; max-width: 600px; margin: 16px auto 0; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.value-item {
  padding: 24px;
  border-left: 4px solid var(--coral);
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.value-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-item p { font-size: .93rem; color: var(--text-light); margin: 0; }
@media (min-width: 600px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Contact Page ---------- */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 20px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(232,88,28,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item a { color: rgba(255,255,255,.9); font-size: 1rem; font-weight: 500; }
.contact-item a:hover { color: var(--coral-light); }
.contact-item p { color: rgba(255,255,255,.7); font-size: .88rem; margin: 2px 0 0; }
.contact-action-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

/* ---------- Confirmation ---------- */
.confirmation-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 64px 0;
}
.confirmation-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: var(--shadow-lg);
}
.confirmation-check {
  width: 72px;
  height: 72px;
  background: rgba(232,88,28,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}
.confirmation-card h1 { font-size: 1.8rem; margin-bottom: 16px; }
.confirmation-card p { color: var(--text-light); font-size: 1rem; }
.confirmation-card .phone-link {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--coral);
  margin: 16px 0;
}
.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

/* ---------- Admin ---------- */
.admin-login-page {
  min-height: 100vh;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.admin-login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
}
.admin-login-logo { text-align: center; margin-bottom: 28px; }
.admin-login-logo img {
  max-width: 220px;
  margin: 0 auto 12px;
  background: var(--navy);
  padding: 14px 18px;
  border-radius: var(--radius);
  display: inline-block;
}
.admin-login-logo h2 { font-size: 1.3rem; color: var(--navy); }
.admin-login-logo p { font-size: .88rem; color: var(--gray-mid); margin: 4px 0 0; }

.admin-header {
  background: var(--navy);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-header .logo-text { font-size: .95rem; }
.admin-header a { color: rgba(255,255,255,.7); font-size: .88rem; }
.admin-header a:hover { color: var(--white); }

.admin-body { background: var(--gray-light); min-height: calc(100vh - 60px); padding: 32px 20px; }

.admin-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.stat-num { font-size: 2rem; font-weight: 800; color: var(--coral); }
.stat-label { font-size: .82rem; color: var(--gray-mid); margin-top: 4px; }
@media (min-width: 600px) {
  .admin-stats-row { grid-template-columns: repeat(4, 1fr); }
}

.admin-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 8px rgba(0,0,0,.07);
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.admin-table th {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray);
  vertical-align: middle;
  color: var(--text);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--off-white); }

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: .76rem;
  font-weight: 700;
  white-space: nowrap;
}
.status-new { background: rgba(232,88,28,.12); color: var(--coral-dark); }
.status-contacted { background: rgba(26,39,68,.1); color: var(--navy); }
.status-scheduled { background: rgba(34,139,34,.1); color: #1a6b1a; }
.status-completed { background: rgba(34,139,34,.18); color: #1a6b1a; }
.status-lost { background: rgba(180,0,0,.1); color: #8b0000; }
.status-default { background: var(--gray); color: var(--text-light); }

.admin-filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.admin-filter-bar a {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--white);
  border: 1.5px solid var(--gray);
  transition: all var(--transition);
}
.admin-filter-bar a:hover, .admin-filter-bar a.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.detail-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.detail-section h3 {
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray);
  margin-bottom: 16px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.detail-row { display: flex; gap: 12px; }
.detail-label {
  font-size: .8rem;
  color: var(--gray-mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  min-width: 140px;
  flex-shrink: 0;
}
.detail-value { font-size: .93rem; color: var(--text); }
@media (min-width: 600px) {
  .detail-grid { grid-template-columns: repeat(2, 1fr); }
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.photo-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray);
  aspect-ratio: 4/3;
}
.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 600px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand .logo-text { color: var(--white); font-size: 1.15rem; }
.footer-brand p { font-size: .88rem; margin-top: 10px; color: rgba(255,255,255,.55); }
.footer-logo-img {
  max-width: 140px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.footer-col h4 {
  color: var(--white);
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--coral-light); }
.footer-phone {
  display: inline-block;
  color: var(--coral-light) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  margin-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
}
.footer-disclaimer {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  max-width: 600px;
  line-height: 1.5;
  margin-top: 8px;
}
@media (min-width: 600px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ---------- Misc ---------- */
.divider { border: none; border-top: 1px solid var(--gray); margin: 32px 0; }
.breadcrumb {
  font-size: .85rem;
  color: var(--gray-mid);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--coral); }
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 52px 0 56px;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-top: 12px; max-width: 560px; margin-left: auto; margin-right: auto; }
.phone-cta-bar {
  background: var(--off-white);
  border-top: 2px solid var(--coral);
  padding: 16px 20px;
  text-align: center;
  font-size: .95rem;
  color: var(--text-light);
}
.phone-cta-bar a { color: var(--coral); font-weight: 700; }

/* Sticky phone bar on mobile */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--coral);
  padding: 14px 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.sticky-cta a {
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,.4);
}
@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* Spacer for sticky cta on mobile */
@media (max-width: 767px) {
  body { padding-bottom: 72px; }
}

/* Page content spacing for schedule form */
.full-form-page { padding: 40px 0 60px; }
