/* ==========================================================================
   Titan Concreting & Driveways — Stylesheet
   Crafted by Hijazi Digital (Zero-bloat, Ultra-fast, Mobile-first)
   ========================================================================== */

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Industrial & Amber Palette */
  --color-dark: #111827;
  --color-charcoal: #1f2937;
  --color-slate-800: #374151;
  --color-slate-600: #4b5563;
  --color-slate-500: #6b7280;
  --color-slate-200: #e5e7eb;
  --color-slate-100: #f3f4f6;
  --color-slate-50: #f9fafb;
  --color-white: #ffffff;

  --color-amber: #d97706;
  --color-amber-hover: #b45309;
  --color-amber-light: #fef3c7;
  --color-amber-border: #fde68a;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --transition: 0.2s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-slate-50);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px;
}

@media (min-width: 769px) {
  body { padding-bottom: 0; }
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

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

/* ==========================================================================
   Top Demo Agency Bar
   ========================================================================== */
.demo-agency-bar {
  background: #000000;
  color: #e5e7eb;
  padding: 8px 16px;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 100;
}

.demo-container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-badge {
  background: var(--color-amber);
  color: #fff;
  font-weight: 800;
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.demo-text { flex: 1; min-width: 260px; }

.demo-link {
  color: #fbbf24;
  font-weight: 700;
}

.demo-link:hover { text-decoration: underline; }

/* ==========================================================================
   Top Concreter Bar
   ========================================================================== */
.concreter-top-bar {
  background: var(--color-dark);
  color: #9ca3af;
  font-size: 0.78rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.bar-left, .bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cred-pill {
  color: var(--color-amber);
  font-weight: 800;
}

.dot { opacity: 0.35; }

@media (max-width: 768px) {
  .bar-right { display: none; }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--color-slate-200);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  background: var(--color-dark);
  color: var(--color-amber);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.company-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--color-dark);
  line-height: 1.1;
}

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

.nav-links {
  display: none;
  gap: 24px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-slate-600);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--color-amber);
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-block {
  display: none;
  flex-direction: column;
  text-align: right;
}

.phone-tag {
  font-size: 0.65rem;
  color: var(--color-slate-500);
  font-weight: 700;
  text-transform: uppercase;
}

.phone-block strong {
  font-size: 1.05rem;
  color: var(--color-dark);
  font-weight: 800;
}

@media (min-width: 680px) {
  .phone-block { display: flex; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-amber {
  background: var(--color-amber);
  color: #fff;
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.25);
}

.btn-amber:hover {
  background: var(--color-amber-hover);
  transform: translateY(-1px);
}

.btn-large {
  padding: 15px 28px;
  font-size: 1.05rem;
}

.btn-outline {
  background: #fff;
  color: var(--color-dark);
  border: 1.5px solid var(--color-slate-200);
}

.btn-outline:hover {
  background: var(--color-slate-100);
  border-color: var(--color-slate-600);
}

.full-width { width: 100%; }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 60px 0 70px;
  background: linear-gradient(180deg, #ffffff 0%, #fef3c7 100%);
  border-bottom: 1px solid var(--color-slate-200);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.25fr 0.95fr;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--color-amber-border);
  color: var(--color-amber-hover);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-amber);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.highlight-amber {
  color: var(--color-amber);
}

.hero-desc {
  font-size: 1.12rem;
  color: var(--color-slate-600);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-metrics-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid var(--color-slate-200);
  padding-top: 22px;
}

.metric-box {
  display: flex;
  flex-direction: column;
}

.metric-box strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1.1;
}

.metric-box span {
  font-size: 0.78rem;
  color: var(--color-slate-500);
}

.metric-sep {
  width: 1px;
  height: 28px;
  background: var(--color-slate-200);
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.img-floating-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
}

.img-floating-tag strong {
  display: block;
  font-size: 1rem;
  color: #fbbf24;
}

.img-floating-tag span {
  font-size: 0.78rem;
  color: #d1d5db;
}

/* ==========================================================================
   Section Title
   ========================================================================== */
.section-title {
  max-width: 680px;
  margin: 0 auto 48px;
}

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

.sub-heading {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-amber);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.sub-heading-amber {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #f59e0b;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1.05rem;
  color: var(--color-slate-500);
}

/* ==========================================================================
   Calculator Section
   ========================================================================== */
.calculator-section {
  padding: 80px 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-slate-200);
}

.calc-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  box-shadow: var(--shadow-md);
}

@media (min-width: 960px) {
  .calc-card {
    grid-template-columns: 1.25fr 1fr;
  }
}

.calc-inputs-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.label-row label, .block-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-dark);
}

.number-input-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
}

.number-input-wrap input {
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-dark);
  width: 60px;
  text-align: right;
}

.number-input-wrap span {
  font-weight: 700;
  color: var(--color-slate-500);
  margin-left: 4px;
}

.custom-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--color-slate-200);
  outline: none;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-amber);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-slate-500);
}

.finish-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.finish-btn {
  background: #fff;
  border: 1.5px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.finish-btn:hover {
  border-color: var(--color-amber);
}

.finish-btn.active {
  background: var(--color-amber-light);
  border-color: var(--color-amber);
}

.finish-btn strong {
  font-size: 0.95rem;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.finish-btn small {
  font-size: 0.78rem;
  color: var(--color-slate-500);
}

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

.addon-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.addon-checkbox input { margin-top: 4px; }

.addon-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--color-dark);
}

.addon-text small {
  font-size: 0.75rem;
  color: var(--color-slate-500);
}

/* Calculator Summary Box */
.summary-box {
  background: #fff;
  border: 2px solid var(--color-amber-border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.estimate-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-amber);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.price-display .currency {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-dark);
}

.price-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1;
}

.price-range {
  font-size: 0.85rem;
  color: var(--color-slate-500);
  margin-left: 6px;
}

.spec-breakdown {
  border-top: 1px solid var(--color-slate-100);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
}

.btn-book-measure {
  padding: 14px;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.calc-footnote {
  font-size: 0.72rem;
  color: var(--color-slate-500);
  text-align: center;
  line-height: 1.4;
}

/* ==========================================================================
   Swatches Section
   ========================================================================== */
.swatches-section {
  padding: 80px 0;
  background: var(--color-slate-50);
  border-bottom: 1px solid var(--color-slate-200);
}

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

@media (min-width: 640px) {
  .swatches-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .swatches-grid { grid-template-columns: repeat(4, 1fr); }
}

.swatch-card {
  background: #fff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.swatch-card:hover, .swatch-card.active {
  border-color: var(--color-amber);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.swatch-sample {
  height: 140px;
  width: 100%;
}

.swatch-midnight {
  background: radial-gradient(circle, #374151 10%, #1f2937 50%, #111827 90%);
}

.swatch-alpine {
  background: radial-gradient(circle, #fde68a 10%, #d97706 60%, #78350f 100%);
}

.swatch-mornington {
  background: radial-gradient(circle, #f3f4f6 15%, #9ca3af 60%, #4b5563 100%);
}

.swatch-coastal {
  background: radial-gradient(circle, #94a3b8 15%, #475569 60%, #1e293b 100%);
}

.swatch-info { padding: 18px; }

.swatch-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.swatch-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-amber);
  display: block;
  margin-bottom: 8px;
}

.swatch-info p {
  font-size: 0.85rem;
  color: var(--color-slate-500);
  line-height: 1.5;
}

/* ==========================================================================
   Before / After Driveway Slider
   ========================================================================== */
.transformations-section {
  padding: 80px 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-slate-200);
}

.ba-card {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ba-header {
  padding: 24px 30px;
  background: #fff;
  border-bottom: 1px solid var(--color-slate-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ba-badge-location {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-amber);
  letter-spacing: 0.5px;
}

.ba-project-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
}

.ba-duration {
  background: var(--color-amber-light);
  color: var(--color-amber-hover);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.ba-slider-box {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  user-select: none;
  background: #000;
}

@media (max-width: 640px) {
  .ba-slider-box { height: 280px; }
}

.ba-img-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-img-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before {
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid #fff;
}

.ba-before img {
  width: 960px;
  max-width: none;
}

@media (max-width: 960px) {
  .ba-before img { width: 100vw; }
}

.ba-tag-pill {
  position: absolute;
  bottom: 20px;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.tag-after {
  right: 20px;
  background: rgba(17, 24, 39, 0.85);
  color: #fff;
}

.tag-before {
  left: 20px;
  background: rgba(185, 28, 28, 0.9);
  color: #fff;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 44px;
  margin-left: -22px;
  z-index: 10;
  cursor: ew-resize;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.handle-line {
  flex: 1;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.handle-grip {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  color: var(--color-amber);
}

.ba-footer-stats {
  background: #fff;
  border-top: 1px solid var(--color-slate-200);
  padding: 18px 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 680px) {
  .ba-footer-stats { grid-template-columns: repeat(4, 1fr); }
}

.ba-stat-item { text-align: center; }

.ba-stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-dark);
}

.ba-stat-item span {
  font-size: 0.78rem;
  color: var(--color-slate-500);
}

/* ==========================================================================
   Engineering Specs
   ========================================================================== */
.specs-section {
  padding: 80px 0;
  background: var(--color-slate-50);
  border-bottom: 1px solid var(--color-slate-200);
}

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

@media (min-width: 680px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .specs-grid { grid-template-columns: repeat(4, 1fr); }
}

.spec-card {
  background: #fff;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: var(--transition);
}

.spec-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-amber);
  box-shadow: var(--shadow-md);
}

.spec-icon { font-size: 2rem; margin-bottom: 12px; }

.spec-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.spec-card p {
  font-size: 0.9rem;
  color: var(--color-slate-500);
  line-height: 1.55;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
  padding: 80px 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-slate-200);
}

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

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--color-slate-50);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.stars { color: #f59e0b; margin-bottom: 10px; }

.review-card p {
  font-size: 0.92rem;
  color: var(--color-slate-700);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 18px;
}

.author-block {
  margin-top: auto;
  border-top: 1px solid var(--color-slate-200);
  padding-top: 12px;
}

.author-block strong { display: block; font-size: 0.92rem; }
.author-block span { font-size: 0.78rem; color: var(--color-amber); font-weight: 600; }

/* ==========================================================================
   Measure Section
   ========================================================================== */
.measure-section {
  padding: 80px 0;
  background: var(--color-dark);
  color: #fff;
}

.measure-card {
  max-width: 960px;
  margin: 0 auto;
}

.measure-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 960px) {
  .measure-grid { grid-template-columns: 1fr 1.2fr; }
}

.measure-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
}

.measure-info p {
  font-size: 1rem;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 22px;
}

.measure-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.measure-form {
  background: var(--color-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

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

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

.form-field label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #e5e7eb;
}

.form-field input {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 12px 14px;
  font-size: 0.95rem;
  outline: none;
}

.form-field input:focus { border-color: var(--color-amber); }

.form-note {
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
  margin-top: 10px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #000;
  color: #9ca3af;
  padding: 60px 0 30px;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

@media (min-width: 680px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.licence-info {
  font-size: 0.78rem;
  color: var(--color-amber);
  margin-top: 8px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #9ca3af; transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; }

.attribution-box {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: var(--radius-md);
  padding: 16px;
}

.attribution-box p { font-size: 0.82rem; margin-bottom: 8px; color: #d1d5db; }
.agency-link { color: #fbbf24; font-weight: 700; font-size: 0.82rem; }

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-bottom a { color: #9ca3af; font-weight: 600; }

/* ==========================================================================
   Mobile Sticky Bar
   ========================================================================== */
.mobile-sticky-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--color-slate-200);
  padding: 10px 16px;
  z-index: 100;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .mobile-sticky-action-bar { display: flex; gap: 10px; }
}

.btn-sticky-phone {
  flex: 1;
  background: var(--color-slate-100);
  border: 1px solid var(--color-slate-200);
  color: var(--color-dark);
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.9rem;
}

.btn-sticky-quote {
  flex: 1.3;
  background: var(--color-amber);
  color: #fff;
  font-weight: 800;
  padding: 12px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.95rem;
}
