/* ==========================================================================
   LANDSCAPING KING - ENTERPRISE PROFESSIONAL STYLESHEET WITH MOBILE PRICING FORM FIX
   ========================================================================== */

:root {
  /* Brand Forest & Emerald Palette */
  --space-navy: #0a190f;
  --dark-navy: #0d2818;
  --forest-green: #155724;
  --emerald-green: #1e7e34;
  --grass-green: #28a745;
  --light-green-bg: #f0fdf4;
  --sky-green: #34d399;

  /* Gold & Metallic Gradients */
  --gold-light: #fff59d;
  --gold-mid: #ffc107;
  --gold-dark: #d97706;
  --gold-gradient: linear-gradient(135deg, #fff38a 0%, #ffc107 50%, #d97706 100%);
  --gold-glow: 0 4px 20px rgba(255, 193, 7, 0.5);

  /* Seasonal & Theme Colors */
  --mowing-amber: #f59e0b;
  --mulch-brown: #854d0e;
  --clean-cyan: #06b6d4;

  /* Surfaces & Borders */
  --bg-body: #f4f8f5;
  --surface-card: #ffffff;
  --border-card: #dcfce7;
  --text-main: #0f172a;
  --text-muted: #475569;

  /* Radius & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 10px 30px -5px rgba(21, 87, 36, 0.08), 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-hover: 0 20px 40px -10px rgba(21, 87, 36, 0.15);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Top Glass Navigation Bar */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 25, 15, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 193, 7, 0.35);
  padding: 10px 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold-mid);
  box-shadow: var(--gold-glow);
  object-fit: cover;
  flex-shrink: 0;
}

.brand-text-wrapper {
  display: flex;
  flex-direction: column;
}

.presents-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-mid);
}

.brand-title-small {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1;
}

.brand-title-small strong { color: var(--gold-mid); }

.nav-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e2e8f0;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: var(--space-navy);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: var(--gold-glow);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-nav-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 193, 7, 0.6);
}

/* HERO SECTION HARMONIZED WITH LOGO EMBLEM */
.emblem-layout-hero {
  position: relative;
  background-color: var(--space-navy);
  color: #ffffff;
  padding: 50px 0 55px 0;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) contrast(1.1);
  transform: scale(1.03);
}

.hero-dual-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 25% 40%, rgba(40, 167, 69, 0.25) 0%, transparent 60%),
              radial-gradient(circle at 75% 40%, rgba(255, 193, 7, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.hero-seal-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.seal-ring-glow {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #0a190f 0%, #155724 100%);
  border: 4px solid var(--gold-mid);
  box-shadow: 0 16px 40px rgba(10, 25, 15, 0.5), 0 0 40px rgba(255, 193, 7, 0.6);
  transition: transform 0.3s;
}

.seal-ring-glow:hover {
  transform: scale(1.04);
}

.hero-emblem-seal {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.hero-callout {
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 14px rgba(0,0,0,0.7);
}

.highlight-gold {
  color: var(--gold-mid);
  text-shadow: var(--gold-glow);
}

.hero-subtext {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-top: 6px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-trust-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Emblem Logo Triple Icon Bar */
.emblem-triad-bar {
  background: rgba(10, 25, 15, 0.88);
  backdrop-filter: blur(10px);
  border: 2px solid var(--gold-mid);
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  margin-top: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
  gap: 20px;
}

.triad-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
}

.triad-item.mowing { color: var(--gold-mid); }
.triad-item.mulching { color: var(--sky-green); }
.triad-item.maintaining { color: #ffffff; }

.triad-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 193, 7, 0.4);
}

/* Section Title Banner Bar */
.graphic-banner-bar {
  background: linear-gradient(135deg, #0a190f 0%, #155724 100%);
  color: #ffffff;
  padding: 16px 0;
  border-top: 3px solid var(--gold-mid);
  border-bottom: 3px solid var(--gold-mid);
  text-align: center;
}

.banner-bar-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.banner-sub-tag {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-mid);
  display: block;
}

/* Service Showcase Visual Gallery */
.service-showcase-section {
  padding: 36px 0 0 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.showcase-card {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-card);
  transition: transform 0.3s, box-shadow 0.3s;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.showcase-image-box {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.showcase-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.showcase-card:hover .showcase-image-box img {
  transform: scale(1.05);
}

.showcase-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mowing-badge { background: linear-gradient(135deg, #1e7e34 0%, #155724 100%); }
.mulch-badge { background: linear-gradient(135deg, #d97706 0%, #854d0e 100%); }

.showcase-info { padding: 18px 20px; }

.showcase-info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 4px;
}

.showcase-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   LAWN CARE PRICING & ESTIMATOR SECTION STYLES
   ========================================================================== */
.lawncare-pricing-section {
  padding: 40px 0 20px 0;
  background: var(--bg-body);
}

.pricing-groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 24px;
  margin-top: 32px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .pricing-groups-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-group-card {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--border-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-group-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.group-card-header {
  padding: 16px 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 14px;
}

.group-card-header.green-theme {
  background: linear-gradient(135deg, #0d2818 0%, #155724 100%);
  border-bottom: 3px solid var(--gold-mid);
}

.group-card-header.amber-theme {
  background: linear-gradient(135deg, #78350f 0%, #d97706 100%);
  border-bottom: 3px solid var(--gold-mid);
}

.group-card-header.dark-theme {
  background: linear-gradient(135deg, #0a190f 0%, #111827 100%);
  border-bottom: 3px solid var(--gold-mid);
}

.group-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-mid);
  flex-shrink: 0;
}

.group-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.group-subtitle {
  font-size: 0.78rem;
  color: #e2e8f0;
  display: block;
}

.group-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.pricing-range-box h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.range-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 10px;
}

.range-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.85rem;
}

.range-row:last-child {
  border-bottom: none;
}

.range-row span {
  font-weight: 600;
  color: var(--text-main);
}

.range-row strong {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--dark-navy);
  text-align: right;
}

.badge-disposal {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #c2410c;
  background: #ffedd5;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 4px;
}

.badge-quoted {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0369a1;
  background: #e0f2fe;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 4px;
}

.interactive-estimator-box {
  background: #f8fafc;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 16px;
}

.interactive-estimator-box h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.estimator-form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.est-group label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 4px;
  display: block;
}

.est-select, .est-input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-main);
  background-color: #ffffff;
  min-height: 44px;
}

.est-result-banner {
  background: linear-gradient(135deg, #0a190f 0%, #155724 100%);
  color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-top: 16px;
  text-align: center;
  border: 1px solid var(--gold-mid);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.est-result-header {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--gold-mid);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 4px;
}

.range-tag-inline {
  font-size: 0.75rem;
  color: #e2e8f0;
}

.range-tag-inline strong {
  color: var(--gold-mid);
}

.est-price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin: 4px 0;
}

.est-price-display .currency {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-mid);
}

.est-price-display .amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}

.est-price-display .cents {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-light);
}

.est-price-display .per-visit {
  font-size: 0.8rem;
  color: #cbd5e1;
  margin-left: 4px;
}

.est-disclaimer {
  font-size: 0.72rem;
  color: #cbd5e1;
  line-height: 1.35;
  margin-top: 4px;
}

.quote-notice-banner {
  background: #fffbe8;
  border: 1px solid var(--gold-mid);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.quote-notice-banner i {
  font-size: 1.3rem;
  margin-top: 2px;
}

.quote-notice-banner h5 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--space-navy);
  margin-bottom: 2px;
}

.quote-notice-banner p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.card-action-bar {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.card-action-bar.three-btns {
  flex-wrap: wrap;
}

.btn-card-cta {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
  min-height: 44px;
  text-align: center;
}

.btn-card-cta.get-est {
  background: var(--gold-gradient);
  color: var(--space-navy);
  box-shadow: var(--gold-glow);
}

.btn-card-cta.book-care {
  background: var(--emerald-green);
  color: #ffffff;
}

.btn-card-cta.req-quote {
  background: var(--dark-navy);
  color: #ffffff;
  border: 1px solid var(--gold-mid);
}

.btn-card-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* Progress Bar Tracker */
.progress-bar-section {
  padding: 24px 0 10px 0;
  position: relative;
  z-index: 10;
}

.form-steps-wrapper {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  padding: 16px 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-card);
}

.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.step-item.active { opacity: 1; }

.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 800; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}

.step-item.active .step-num {
  background: var(--emerald-green);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(30, 126, 52, 0.4);
}

.step-label {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 0.9rem;
  color: var(--text-main);
}

.step-line {
  flex: 1; height: 2px;
  background: #e2e8f0; margin: 0 16px;
}

.mobile-step-pill-wrapper { display: none; }

/* Main Form Section */
.main-form-section { padding-bottom: 60px; }

.estimate-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 992px) {
  .estimate-form-grid { grid-template-columns: 1fr; }
}

.form-column {
  display: flex; flex-direction: column; gap: 24px;
}

.form-card {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--border-card);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}

.form-card:hover { box-shadow: var(--shadow-hover); }

.step-badge-pill {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-right: auto;
}

.step-badge-pill.gold {
  background: var(--gold-mid);
  color: var(--space-navy);
  border-color: var(--gold-dark);
}

.step-badge-pill.cyan {
  background: var(--clean-cyan);
  color: var(--space-navy);
  border-color: #0284c7;
}

.card-header {
  padding: 16px 24px;
  color: #ffffff;
  display: flex; align-items: center; gap: 14px;
}

.header-icon-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #ffffff;
}

.header-icon-circle.gold { color: var(--gold-mid); }
.header-icon-circle.cyan { color: var(--clean-cyan); }
.header-icon-circle.dark { color: var(--space-navy); }

.card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 800;
  letter-spacing: 0.5px;
}

.header-subtitle {
  font-size: 0.78rem; color: #e2e8f0; display: block;
}

.green-header {
  background: linear-gradient(135deg, #0d2818 0%, #155724 100%);
  border-bottom: 3px solid var(--gold-mid);
}

.dark-header {
  background: linear-gradient(135deg, #0a190f 0%, #0d2818 100%);
  border-bottom: 3px solid var(--gold-mid);
}

.card-body { padding: 24px; }

/* Enhanced Contact Form Controls & Icon Padding Fix */
.contact-card-enhanced label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--dark-navy);
  margin-bottom: 6px;
  display: block;
}

.form-group { margin-bottom: 20px; }
.form-group:last-child { margin-bottom: 0; }

.req { color: #ef4444; }

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 16px;
  color: var(--emerald-green);
  font-size: 0.95rem;
  transition: color 0.2s;
  pointer-events: none;
  z-index: 2;
}

.input-with-icon input {
  padding-left: 46px !important;
}

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text-main); background-color: #f8fafc;
  transition: all 0.25s ease;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
  min-height: 48px;
}

input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--emerald-green);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(30, 126, 52, 0.14);
}

.custom-select-wrapper { position: relative; }
.custom-select-wrapper::after {
  content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); pointer-events: none; font-size: 0.9rem;
}
.custom-select-wrapper select { appearance: none; padding-right: 36px; cursor: pointer; }

.form-row { display: flex; gap: 14px; }
.split-2 > .form-group { flex: 1; }
.split-3 { display: flex; gap: 12px; }
.flex-1 { flex: 1; }
.flex-2 { flex: 2; }

/* Property Size Selector Grid */
.group-title {
  font-family: var(--font-heading); font-size: 0.92rem; font-weight: 800;
  color: var(--dark-navy); margin-bottom: 10px;
}

.size-selector-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.size-pill { cursor: pointer; }
.size-pill input { position: absolute; opacity: 0; }

.size-pill-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 6px;
  background: #f8fafc;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  text-align: center;
  min-height: 52px;
}

.size-icon-graphic {
  font-size: 1.2rem;
  color: var(--emerald-green);
  margin-bottom: 4px;
}

.size-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--dark-navy);
}

.size-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.size-pill input:checked + .size-pill-box {
  background: #f0fdf4;
  border-color: var(--emerald-green);
  box-shadow: 0 4px 12px rgba(30, 126, 52, 0.18);
}

.size-pill input:checked + .size-pill-box .size-title {
  color: var(--emerald-green);
}

.frequency-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px;
}

.freq-checkbox { cursor: pointer; }
.freq-checkbox input { position: absolute; opacity: 0; }

.freq-box {
  display: block; padding: 12px 8px; background: #f8fafc;
  border: 1.5px solid var(--border-card); border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 700; text-align: center; transition: all 0.2s;
  min-height: 44px;
}

.freq-checkbox input:checked + .freq-box {
  background: #f0fdf4; border-color: var(--emerald-green); color: var(--emerald-green);
}

/* Service Checklist Blocks */
.services-body { display: flex; flex-direction: column; gap: 20px; }

.service-block {
  border-radius: var(--radius-sm); border: 1px solid var(--border-card); overflow: hidden;
  transition: opacity 0.3s;
}

.service-block-header {
  padding: 12px 18px; display: flex; justify-content: space-between; align-items: center;
  background-color: #f8fafc; border-bottom: 1px solid var(--border-card);
}

.block-title-group { display: flex; align-items: center; gap: 12px; }

.green-icon-box {
  width: 34px; height: 34px; background: #f0fdf4; color: var(--emerald-green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}

.block-title-group h4 {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 800;
  color: var(--dark-navy); line-height: 1.2;
}

.block-tag { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); }

.block-actions { display: flex; align-items: center; gap: 10px; }

.selected-counter {
  font-size: 0.75rem; font-weight: 700; color: var(--emerald-green);
  background: #f0fdf4; padding: 4px 10px; border-radius: 12px;
}

.btn-toggle-all {
  background: transparent; border: 1.5px solid var(--border-card);
  border-radius: 20px; padding: 4px 12px; font-size: 0.75rem; font-weight: 700;
  color: var(--dark-navy); cursor: pointer; transition: all 0.2s;
}

.btn-toggle-all:hover {
  background: var(--emerald-green); color: #ffffff; border-color: var(--emerald-green);
}

.checklist-items-grid {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  background: #ffffff;
}

.check-item {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  font-size: 0.88rem; user-select: none; padding: 8px 10px; border-radius: var(--radius-sm);
  transition: background-color 0.2s; min-height: 44px;
}

.check-item:hover { background-color: #f8fafc; }

.check-item input[type="checkbox"] { display: none; }

.checkmark {
  width: 22px; height: 22px; min-width: 22px;
  border: 2px solid var(--border-card); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  background: #ffffff; color: transparent; font-size: 0.75rem;
  transition: all 0.2s;
}

.check-item input:checked ~ .checkmark {
  background: var(--emerald-green); border-color: var(--emerald-green); color: #ffffff;
}

/* EXECUTIVE PRICING CALCULATOR STYLING & LOCKED PLACEHOLDER */
.executive-calc-card {
  border: 2px solid var(--gold-mid);
  box-shadow: 0 16px 40px rgba(255, 193, 7, 0.25);
  background: linear-gradient(180deg, #ffffff 0%, #fffdf5 100%);
}

.gold-calculator-header {
  background: var(--gold-gradient);
  color: var(--space-navy);
  border-bottom: 2px solid var(--gold-dark);
}

.gold-calculator-header h3 {
  color: var(--space-navy);
  font-weight: 900;
}

.gold-calculator-header .header-subtitle {
  color: #5c3a00;
  font-weight: 700;
}

.executive-price-hero {
  background: linear-gradient(135deg, #0a190f 0%, #0d2818 60%, #155724 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 28px rgba(10, 25, 15, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.35);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unlocked-price-content {
  width: 100%;
  animation: unlockGlow 0.4s ease-out forwards;
}

@keyframes unlockGlow {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.locked-price-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  text-align: center;
}

.lock-icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 8px;
  border: 1px solid var(--gold-mid);
}

.locked-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--gold-mid);
  text-transform: uppercase;
}

.locked-subtext {
  font-size: 0.8rem;
  color: #cbd5e1;
  margin-top: 4px;
  max-width: 320px;
}

.price-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-mid);
  display: block;
}

.price-value-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 6px 0;
}

.currency {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-mid);
  margin-right: 2px;
  text-shadow: var(--gold-glow);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -1px;
}

.price-cents {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
}

.price-guarantee-pill {
  font-size: 0.8rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.price-guarantee-pill i { color: var(--gold-mid); }

.executive-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.executive-breakdown.locked-blur .breakdown-val {
  filter: blur(5px);
  user-select: none;
  opacity: 0.6;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: #f8fafc;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  border: 1px solid var(--border-card);
}

.breakdown-label {
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.breakdown-val {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.98rem;
  color: var(--dark-navy);
}

.text-blue { color: var(--emerald-green); }
.text-green { color: #10b981; }

/* Photo Dropzone */
.badge-optional { font-size: 0.75rem; color: var(--gold-mid); }

.upload-dropzone {
  border: 2px dashed var(--emerald-green);
  background-color: #f0fdf4;
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  min-height: 120px;
}

.upload-dropzone:hover, .upload-dropzone.dragover {
  background-color: #dcfce7;
  transform: translateY(-2px);
}

.file-input-hidden {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer;
}

.camera-icon-badge {
  width: 50px; height: 50px; background: var(--emerald-green); color: #ffffff;
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 8px; box-shadow: 0 4px 14px rgba(30, 126, 52, 0.3);
}

.upload-title {
  font-family: var(--font-heading); font-size: 0.95rem; font-weight: 800; color: var(--dark-navy);
}

.upload-counter { font-size: 0.8rem; color: var(--text-muted); margin: 4px 0 10px 0; }

.btn-browse-pill {
  display: inline-block; background: var(--dark-navy); color: #ffffff;
  padding: 6px 18px; border-radius: 20px; font-size: 0.78rem; font-weight: 700;
}

.photo-preview-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 10px; margin-top: 14px;
}

.photo-thumb-box {
  position: relative; width: 100%; height: 80px;
  border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border-card);
}

.photo-thumb-box img { width: 100%; height: 100%; object-fit: cover; }

.photo-remove-btn {
  position: absolute; top: 4px; right: 4px;
  background: rgba(239, 68, 68, 0.9); color: #ffffff; border: none;
  width: 22px; height: 22px; border-radius: 50%; font-size: 0.75rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* Submit Button */
.btn-submit-gold {
  width: 100%; background: var(--gold-gradient); color: var(--space-navy); border: none;
  padding: 18px 24px; border-radius: var(--radius-md); font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px;
  cursor: pointer; box-shadow: var(--gold-glow); transition: all 0.25s ease;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 54px;
}

.btn-submit-gold:hover {
  transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255, 193, 7, 0.6);
}

.privacy-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* Features Trust Grid & FAQ */
.trust-features-section {
  padding: 60px 0; background: #ffffff; border-top: 1px solid var(--border-card); border-bottom: 1px solid var(--border-card);
}

.section-heading { margin-bottom: 40px; }
.section-heading h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--space-navy); }
.section-heading h2 span { color: var(--emerald-green); }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature-card { background: var(--bg-body); border-radius: var(--radius-md); padding: 24px; text-align: center; border: 1px solid var(--border-card); }
.feature-icon {
  width: 54px; height: 54px; background: #f0fdf4; color: var(--emerald-green); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 14px;
}
.feature-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.feature-card p { font-size: 0.85rem; color: var(--text-muted); }

.faq-section { padding: 60px 0; }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #ffffff; border-radius: var(--radius-sm); border: 1px solid var(--border-card); overflow: hidden; }
.faq-question {
  width: 100%; padding: 16px 20px; background: transparent; border: none; text-align: left;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--dark-navy);
  display: flex; justify-content: space-between; align-items: center; cursor: pointer; min-height: 48px;
}
.faq-answer { padding: 0 20px 16px 20px; display: none; font-size: 0.9rem; color: var(--text-muted); }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* Slogan Banner & Footer */
.slogan-banner {
  background: linear-gradient(to right, #0a190f, #0d2818, #0a190f); color: #ffffff;
  padding: 35px 0; border-top: 3px solid var(--gold-mid); border-bottom: 3px solid var(--gold-mid);
}

.slogan-container { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; }
.badge-sunburst {
  width: 120px; height: 120px; background: var(--gold-mid); color: var(--space-navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; text-align: center;
  border: 4px dashed var(--gold-dark); font-family: var(--font-heading); font-size: 0.7rem; font-weight: 900;
}
.main-slogan { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 900; }
.gold-ribbon-tag {
  display: inline-block; background: var(--gold-gradient); color: var(--space-navy);
  font-family: var(--font-heading); font-weight: 900; padding: 4px 16px; border-radius: 4px; margin-top: 6px;
}

.site-footer { background: var(--space-navy); color: #ffffff; padding: 30px 0; }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-phone-btn {
  display: inline-flex; align-items: center; gap: 12px; background: var(--emerald-green);
  color: #ffffff; text-decoration: none; padding: 12px 20px; border-radius: var(--radius-md); border: 1.5px solid var(--gold-mid);
  min-height: 48px;
}
.phone-number { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 900; }
.footer-brand-link { color: var(--gold-mid); text-decoration: none; font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; }
.copyright { font-size: 0.8rem; color: var(--text-muted); }
.thank-you-box {
  display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,193,7,0.3); padding: 10px 16px; border-radius: var(--radius-sm);
}
.footer-logo-thumb {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--gold-mid); object-fit: cover;
}

/* Modal & Autobidder Badge Box */
.modal-backdrop {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 25, 15, 0.8); backdrop-filter: blur(8px); z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}

.modal-backdrop.active { opacity: 1; pointer-events: auto; }
.modal-card {
  background: #ffffff; border-radius: var(--radius-lg); max-width: 520px; width: 100%;
  padding: 30px; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-close {
  position: absolute; top: 15px; right: 18px; background: transparent; border: none; font-size: 1.8rem; color: var(--text-muted); cursor: pointer;
}

.text-center { text-align: center; }

.success-icon-circle {
  width: 64px; height: 64px; background: #dcfce7; color: #10b981; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 2.2rem; margin-bottom: 12px;
}

.autobidder-badge-box {
  background: #fffbe8; border: 1px solid var(--gold-mid); border-radius: var(--radius-sm);
  padding: 10px 16px; font-size: 0.88rem; font-weight: 700; color: var(--space-navy);
  margin: 12px 0; display: inline-flex; align-items: center; gap: 8px;
}

.modal-summary-box {
  background: #f8fafc; border: 1px solid var(--border-card); border-radius: var(--radius-sm);
  padding: 14px; font-size: 0.85rem; text-align: left; margin: 12px 0;
}

.btn-modal-action {
  background: var(--emerald-green); color: #ffffff; border: none;
  padding: 12px 28px; border-radius: var(--radius-md); font-family: var(--font-heading); font-weight: 800; cursor: pointer; min-height: 48px;
}

/* Floating Mobile Quick Action Bar */
.mobile-floating-bar { display: none; }

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE OPTIMIZATION BREAKPOINTS
   ========================================================================== */

@media (max-width: 768px) {
  body { padding-bottom: 64px; }

  /* Prevent iOS Safari input focus auto-zoom */
  input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    font-size: 16px !important;
  }

  .container { padding: 0 14px; }

  /* Top Navigation Mobile Layout - Clean No-Wrap Header */
  .top-nav { padding: 8px 0; }
  .nav-content { flex-wrap: nowrap; justify-content: space-between; gap: 8px; }
  .nav-brand { gap: 8px; }
  .nav-logo-img { width: 36px; height: 36px; }
  .presents-tag { font-size: 0.52rem; letter-spacing: 0.8px; }
  .brand-title-small { font-size: 1rem; }
  .nav-status-badge { display: none; }
  .btn-nav-call { padding: 6px 12px; font-size: 0.8rem; border-radius: 20px; }
  .btn-nav-call i { font-size: 0.8rem; }

  /* Hero Section Responsive */
  .emblem-layout-hero { padding: 24px 0 32px 0; }
  .seal-ring-glow { width: 130px; height: 130px; padding: 4px; border-width: 3px; }
  .hero-seal-wrapper { margin-bottom: 14px; }
  .hero-headline { font-size: 1.75rem; line-height: 1.15; word-break: break-word; }
  .hero-subtext { font-size: 0.88rem; margin-top: 4px; }
  .hero-trust-badges { gap: 8px; margin-top: 12px; }
  .trust-pill { padding: 5px 12px; font-size: 0.76rem; }

  .emblem-triad-bar {
    flex-direction: column;
    gap: 6px;
    width: 100%;
    max-width: 320px;
    margin: 16px auto 0 auto;
    padding: 10px 14px;
    border-radius: var(--radius-md);
  }
  .triad-divider { display: none; }
  .triad-item { font-size: 0.8rem; justify-content: center; }

  /* Graphic Banner Bar */
  .graphic-banner-bar { padding: 12px 10px; }
  .banner-bar-content h2 { font-size: 1.05rem; }
  .banner-sub-tag { font-size: 0.72rem; }

  /* Desktop steps vs Mobile Step Pill */
  .desktop-steps { display: none; }
  
  .mobile-step-pill-wrapper {
    display: block;
    padding: 4px 0;
  }

  .mobile-step-pill {
    background: var(--surface-card);
    border: 1px solid var(--border-card);
    border-radius: 30px;
    padding: 10px 18px;
    box-shadow: var(--shadow-sm);
  }

  .pill-step-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    color: var(--dark-navy);
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
  }

  .pill-progress-track {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
  }

  .pill-progress-bar {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 4px;
    transition: width 0.3s ease;
  }

  /* Floating Mobile Action Bar */
  .mobile-floating-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 25, 15, 0.96);
    backdrop-filter: blur(12px);
    border-top: 2px solid var(--gold-mid);
    padding: 8px 12px;
    gap: 10px;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.3);
  }

  .mobile-float-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 46px;
  }

  .mobile-float-btn.call {
    background: var(--gold-gradient);
    color: var(--space-navy);
    box-shadow: var(--gold-glow);
  }

  .mobile-float-btn.estimate {
    background: var(--emerald-green);
    color: #ffffff;
  }

  /* Property Size Selector Grid Mobile */
  .size-selector-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .checklist-items-grid { grid-template-columns: 1fr; }

  /* Form Section Stacking */
  .form-row { flex-direction: column; gap: 0; }
  .split-3 { flex-direction: column; gap: 0; }

  /* Card Headers & Body */
  .card-header { padding: 12px 16px; gap: 10px; }
  .card-header h3 { font-size: 0.98rem; }
  .header-icon-circle { width: 34px; height: 34px; font-size: 1rem; }
  .card-body { padding: 16px 14px; }

  /* Pricing Calculator Card Mobile Layout */
  .pricing-calculator-card {
    border-radius: var(--radius-md);
  }

  .executive-price-hero {
    padding: 16px 12px;
    min-height: 110px;
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
  }

  .price-amount {
    font-size: 2.6rem !important;
  }

  .currency {
    font-size: 1.6rem !important;
  }

  .price-cents {
    font-size: 1.1rem !important;
  }

  .price-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .price-guarantee-pill {
    font-size: 0.72rem;
    padding: 4px 10px;
    margin-top: 4px;
  }

  .locked-title {
    font-size: 0.82rem;
    letter-spacing: 0.5px;
  }

  .locked-subtext {
    font-size: 0.74rem;
    max-width: 260px;
  }

  .lock-icon-badge {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .breakdown-row {
    padding: 8px 12px;
    font-size: 0.82rem;
    gap: 8px;
  }

  .breakdown-label {
    font-size: 0.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 68%;
  }

  .breakdown-val {
    font-size: 0.88rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .submit-action-box {
    margin-top: 16px;
  }

  .btn-submit-gold {
    font-size: 0.95rem !important;
    padding: 14px 16px !important;
    border-radius: var(--radius-md);
    min-height: 48px;
    letter-spacing: 0;
  }

  .footer-content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.6rem; }
  .price-amount { font-size: 2.2rem !important; }
  .currency { font-size: 1.4rem !important; }
  .form-steps-wrapper { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .step-line { display: none; }
}
