/* Design System & Premium Styling for Concrete Revival Ontario */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Backgrounds — Premium Warm Light Theme */
  --bg-main: #fcfbfa;               /* Warm cream white */
  --bg-surface: #ffffff;            /* Pure white */
  --bg-surface-elevated: #f7f5f0;   /* Warm off-white surface */
  --bg-surface-highlight: #f1ede2;  /* Warm highlight */

  /* Primary brand colour — Logo Orange */
  --primary: #d9531e;
  --primary-hover: #b84112;
  --primary-light: #f36c34;
  --primary-glow: rgba(217, 83, 30, 0.15);

  /* Gold/Yellow accent — Logo Yellow */
  --accent: #f2b705;
  --accent-hover: #d19c00;
  --accent-glow: rgba(242, 183, 5, 0.2);

  --stone-light: #f4f6f4;
  --stone-grey: #6c7e73;
  --stone-charcoal: #2a3530;
  --border: #e6e9e4;
  --border-light: #d8ded6;

  --text-main: #202623;       /* Dark slate for text */
  --text-secondary: #4a5550;
  --text-muted: #73827a;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 10px 10px -5px rgba(0, 0, 0, 0.05);
  --shadow-primary: 0 10px 30px -5px rgba(217, 83, 30, 0.25);
  --shadow-gold: 0 10px 30px -5px rgba(242, 183, 5, 0.2);
  /* Deep Navy Blue — secondary action color pairing with orange/yellow */
  --blue: #1c3d73;
  --blue-hover: #122c54;
  --blue-light: #d9531e;  /* Orange as action link color */
  --blue-glow: rgba(28, 61, 115, 0.12);
  --shadow-blue: 0 10px 30px -5px rgba(28, 61, 115, 0.18);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.section-alt {
  background-color: var(--bg-surface-elevated);
  background-image: radial-gradient(ellipse at 80% 20%, rgba(217, 83, 30, 0.05) 0%, transparent 60%);
}

/* Warm ambient wash on plain (non-alt) sections */
.section:not(.section-alt):not(.contact-section) {
  background-image: radial-gradient(ellipse at 20% 60%, rgba(242, 183, 5, 0.04) 0%, transparent 65%);
}

.section-header {
  max-width: 700px;
  margin-bottom: 4rem;
  position: relative;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.15rem;
}

.section-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
}

.section-phone i {
  color: var(--accent);
}

.section-phone:hover {
  color: var(--accent-dark);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(252, 251, 250, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(252, 251, 250, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--stone-grey);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--blue);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background-color: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(26, 79, 186, 0.55);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background-color: rgba(217, 83, 30, 0.08);
  border-color: var(--primary-hover);
  color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--bg-surface-elevated);
  border-color: var(--border-light);
  color: var(--primary-light);
}

.btn-accent:hover {
  background-color: var(--primary);
  color: var(--text-main);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  padding: 10rem 0 6rem 0;
  background: #0d1411;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  color: #ffffff;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #0d1411;
}

.hero-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 7s ease;
  filter: saturate(1.12) contrast(1.02) brightness(1.18);
}

.hero-vid.active {
  opacity: 1;
  transform: scale(1.01);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 15, 12, 0.52) 0%, rgba(6, 15, 12, 0.34) 42%, rgba(6, 15, 12, 0.16) 100%),
    radial-gradient(ellipse at 24% 28%, rgba(217, 83, 30, 0.18), transparent 54%),
    linear-gradient(180deg, rgba(6, 15, 12, 0.12), rgba(6, 15, 12, 0.38));
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content {
  z-index: 10;
}

.hero-section .section-badge,
.hero-section .hero-badge {
  color: #ffd166;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: 0;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72), 0 1px 2px rgba(0, 0, 0, 0.95);
}

.hero-title span {
  color: #ffffff;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #ffffff;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.btn-hero-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(217, 83, 30, 0.28);
}

.btn-hero-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(217, 83, 30, 0.36);
}

.btn-hero-secondary {
  background-color: #ffffff;
  color: #101814;
  border: 2px solid #ffd166;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}

.btn-hero-secondary:hover {
  background-color: #ffd166;
  color: #101814;
  transform: translateY(-2px);
}

.section-phone-hero {
  margin-top: 0;
  margin-bottom: 2.2rem;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.section-phone-hero:hover {
  color: #ffd166;
}

.hero-trust {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-val {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.trust-lbl {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  max-width: 11rem;
}

/* Before / After Slider */
.slider-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  user-select: none;
}

.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 420px;
  max-height: 620px;
  overflow: hidden;
  touch-action: pan-y;
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slider-before {
  z-index: 1;
}

.slider-after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  width: 50%;
  border-right: 3px solid var(--blue-light);
}

.slider-after .slider-img {
  max-width: none;
}

/* Handle */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  /* Adjusted dynamically by JS */
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: ew-resize;
  box-shadow: 0 0 18px rgba(217, 83, 30, 0.6), 0 0 8px rgba(242, 183, 5, 0.5);
  border: 3px solid #ffffff;
  transition: transform 0.1s ease;
}

.slider-handle:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.slider-handle:hover {
  transform: scale(1.1);
}

.slider-label {
  position: absolute;
  bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(6, 15, 12, 0.88);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  border: 1px solid var(--border);
}

.label-before {
  left: 1.5rem;
  color: #e2e8f0;
}

.label-after {
  right: 1.5rem;
  color: #f97316;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-surface);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-primary), var(--shadow-lg);
}

.service-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.service-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.service-desc {
  color: var(--stone-grey);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.service-link i {
  transition: var(--transition-fast);
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* Selling Points / Why Resurface */
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature-box {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.feature-box:hover {
  border-color: var(--primary-light);
  background-color: var(--bg-surface-highlight);
  box-shadow: 0 0 20px rgba(217, 83, 30, 0.12);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: rgba(217, 83, 30, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(217, 83, 30, 0.20);
}

.feature-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--stone-grey);
}

.comparison-box {
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.5rem;
}

.comparison-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.comparison-item.pros i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.comparison-item.cons i {
  color: #ef4444;
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.comparison-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.comparison-text p {
  font-size: 0.85rem;
  color: var(--stone-grey);
}

/* AI Visual Preview Component */
.preview-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.preview-interactive {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}

.preview-screen {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease-in-out;
  position: relative;
}

/* Grid grout line effect overlays */
.pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  mix-blend-mode: multiply;
}

.pattern-overlay.active {
  opacity: 0.85;
}

.overlay-tile {
  /* Repeating rectangular tile pattern */
  background:
    linear-gradient(90deg, var(--grout) 2px, transparent 2px),
    linear-gradient(180deg, var(--grout) 2px, transparent 2px);
  background-size: 120px 80px;
  width: 100%;
  height: 100%;
}

.overlay-cobble {
  /* Offset rectangular cobble pattern */
  background:
    linear-gradient(90deg, var(--grout) 3px, transparent 3px),
    linear-gradient(180deg, var(--grout) 3px, transparent 3px);
  background-size: 60px 60px;
  width: 100%;
  height: 100%;
}

.overlay-slate {
  /* Large flagstone pattern simulation using CSS grids */
  background:
    linear-gradient(90deg, var(--grout) 2px, transparent 2px),
    linear-gradient(180deg, var(--grout) 2px, transparent 2px);
  background-size: 180px 120px;
  width: 100%;
  height: 100%;
}

.preview-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(6, 15, 12, 0.92), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #ffffff;
}

.preview-pattern-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.preview-pattern-details {
  font-size: 0.85rem;
  color: var(--stone-grey);
}

.preview-options {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.preview-options-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.preview-options-desc {
  color: var(--stone-grey);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.options-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.option-btn {
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border);
  padding: 1.2rem;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.option-btn:hover {
  border-color: var(--stone-charcoal);
  background-color: var(--bg-surface-highlight);
}

.option-btn.active {
  border-color: var(--primary);
  background-color: rgba(217, 83, 30, 0.07);
  box-shadow: 0 0 20px rgba(217, 83, 30, 0.15);
}

.option-color-dot {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.option-info {
  flex-grow: 1;
}

.option-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}

.option-desc {
  font-size: 0.8rem;
  color: var(--stone-grey);
}

.option-check {
  color: var(--primary);
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition-fast);
}

.option-btn.active .option-check {
  opacity: 1;
  transform: scale(1);
}

/* Service Area Coverage */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.area-map-mock {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background-color: var(--bg-surface-elevated);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-radar-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px dashed rgba(217, 83, 30, 0.45);
  background-color: rgba(217, 83, 30, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: radarPulse 4s infinite linear;
}

.map-radar-inner {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px dashed rgba(242, 183, 5, 0.55);
  background-color: rgba(242, 183, 5, 0.04);
}

.map-pin {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-50%);
}

.pin-dot {
  width: 16px;
  height: 16px;
  background-color: var(--primary);
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(217, 83, 30, 0.6);
}

.pin-label {
  margin-top: 0.5rem;
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
}

.map-city-tag {
  position: absolute;
  font-size: 0.8rem;
  color: var(--stone-grey);
  font-weight: 500;
  opacity: 0.7;
}

@keyframes radarPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }

  50% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
}

.cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.city-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 1.2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.city-icon {
  color: var(--blue-light);
  font-size: 1.25rem;
}

.city-name {
  font-weight: 600;
}

.city-time {
  font-size: 0.8rem;
  color: var(--stone-grey);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--border-light);
}

.faq-item.active {
  border-color: var(--primary);
  background-color: rgba(217, 83, 30, 0.03);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-icon {
  font-size: 1rem;
  color: var(--stone-grey);
  transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: var(--stone-grey);
  font-size: 0.95rem;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  /* Adjust according to content */
  padding: 0 2rem 1.5rem 2rem;
}

/* Contact / Get Free Preview Lead Form */
.contact-section {
  background:
    radial-gradient(circle at bottom right, rgba(242, 183, 5, 0.06), transparent 55%),
    radial-gradient(ellipse at top left, rgba(217, 83, 30, 0.07), transparent 48%),
    radial-gradient(circle at 50% 80%, rgba(217, 83, 30, 0.04), transparent 50%),
    var(--bg-main);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-info-desc {
  color: var(--stone-grey);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(217, 83, 30, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid rgba(217, 83, 30, 0.20);
}

.detail-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.detail-val {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Lead Form Card styling */
.lead-form-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea {
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  outline: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 83, 30, 0.15);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

/* Photo upload mock */
.file-upload-box {
  border: 2px dashed var(--border-light);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  background-color: var(--bg-surface-elevated);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.file-upload-box:hover {
  border-color: var(--primary-light);
  background-color: rgba(217, 83, 30, 0.04);
}

.file-upload-icon {
  font-size: 2rem;
  color: var(--stone-grey);
}

.file-upload-text {
  font-weight: 500;
  font-size: 0.95rem;
}

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

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

.uploaded-file-name {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Conditional warning box */
.warning-box {
  background-color: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  color: #fca5a5;
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.warning-icon {
  color: #ef4444;
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

/* Contact preference selection */
.radio-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.25rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.radio-input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--blue-light);
}

/* Pricing Note */
.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  text-align: center;
  line-height: 1.4;
}

/* Footer styling */
footer {
  background-color: var(--bg-surface-elevated);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-desc {
  color: var(--stone-grey);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-grey);
  font-size: 1rem;
}

.social-link:hover {
  background-color: var(--primary);
  border-color: var(--primary-hover);
  color: #ffffff;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--stone-grey);
}

.footer-link:hover {
  color: var(--text-main);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--stone-grey);
}

.footer-contact-item i {
  color: var(--blue-light);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-seo-tags {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.5;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {

  .hero-grid,
  .why-grid,
  .preview-grid,
  .area-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: 0;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72), 0 1px 2px rgba(0, 0, 0, 0.95);
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .section {
    padding: 4rem 0;
  }

  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .nav-links.active {
    position: absolute;
    top: calc(100% + 1px);
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active .nav-link {
    padding: 0.85rem 1rem;
    border-radius: 6px;
  }

  .nav-links.active .nav-link:hover {
    background-color: var(--bg-surface-highlight);
  }

  .nav-toggle {
    display: block;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .slider-container {
    min-height: 340px;
    max-height: 520px;
  }

  .preview-interactive {
    height: 280px;
  }

  .lead-form-card {
    padding: 2rem 1.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group-full {
    grid-column: span 1;
  }

  .radio-group {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: 0;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72), 0 1px 2px rgba(0, 0, 0, 0.95);
}

/* ============================================================
   Portfolio / Before & After Gallery Section
   ============================================================ */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.portfolio-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-lg);
}

.portfolio-slider {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
}

.portfolio-slider .slider-container {
  min-height: 360px;
  max-height: 520px;
}

.portfolio-img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  background-color: var(--bg-surface-elevated);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.04);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 12, 0.55) 0%,
    transparent 40%,
    transparent 65%,
    rgba(10, 10, 12, 0.6) 100%
  );
}

.portfolio-tag {
  background-color: var(--primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
}

.portfolio-result {
  align-self: flex-end;
  display: flex;
  gap: 3px;
}

.portfolio-result i {
  color: #f59e0b;
  font-size: 0.85rem;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.6));
}

.portfolio-info {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.portfolio-desc {
  font-size: 0.9rem;
  color: var(--stone-grey);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.portfolio-cta {
  font-weight: 600;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.portfolio-cta i {
  transition: transform 0.2s ease;
}

.portfolio-card:hover .portfolio-cta i {
  transform: translateX(5px);
}

.portfolio-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem 2.5rem;
}

.portfolio-cta-text {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .portfolio-cta-row {
    flex-direction: column;
    text-align: center;
  }

  .portfolio-cta-text {
    max-width: 100%;
  }
}
