/* ============================================================
   BLUE OAK LIVING — Premium Wallpaper Installation
   style.css | © 2026 Blue Oak Living
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:        #16253d;
  --navy-dark:   #0d1a2e;
  --navy-mid:    #1e3354;
  --oak:         #b8864e;
  --oak-light:   #d4a96a;
  --oak-pale:    #f0e4d0;
  --cream:       #faf7f2;
  --beige:       #f2ece3;
  --warm-white:  #fffdf9;
  --charcoal:    #2a2a2a;
  --muted:       #6b7280;
  --light-line:  #e8e0d5;
  --glass-bg:    rgba(255,253,249,0.08);
  --glass-border:rgba(255,253,249,0.15);
  --shadow-soft: 0 4px 30px rgba(22,37,61,0.10);
  --shadow-med:  0 8px 48px rgba(22,37,61,0.18);
  --shadow-lg:   0 20px 80px rgba(22,37,61,0.25);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.38s cubic-bezier(0.4,0,0.2,1);
  --font-display:'Cormorant Garamond', serif;
  --font-body:   'Jost', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Page Loader ── */
#page-loader {
  position: fixed; inset: 0;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner {
  text-align: center;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--warm-white);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.8s ease forwards;
}
.loader-logo span { color: var(--oak-light); }
.loader-bar {
  width: 160px; height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px; overflow: hidden; margin: 0 auto;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--oak), var(--oak-light));
  border-radius: 2px;
  animation: loaderFill 1.8s ease forwards;
}
@keyframes loaderFill { from { width: 0 } to { width: 100% } }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* ── Typography Helpers ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 1rem;
}
.section-tag::before, .section-tag::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--oak);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy-dark);
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--oak); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }
.section-header.centered .section-tag { margin: 0 auto 1rem; display: flex; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--oak), var(--oak-light));
  color: #fff;
  box-shadow: 0 6px 28px rgba(184,134,78,0.38);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,134,78,0.50);
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,253,249,0.55);
  color: var(--warm-white);
}
.btn-outline:hover {
  background: rgba(255,253,249,0.10);
  border-color: rgba(255,253,249,0.90);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--warm-white);
  box-shadow: 0 6px 28px rgba(22,37,61,0.28);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* ── Section Padding ── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 28px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
}
#header.scrolled {
  background: rgba(13,26,46,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.30);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  max-width: 1220px; margin: 0 auto;
  transition: padding 0.4s ease;
}
#header.scrolled .nav-inner { padding: 15px 28px; }

.logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--warm-white);
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--oak), var(--oak-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 22px; height: 22px; fill: #fff; }
.logo-text { line-height: 1.1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--warm-white);
}
.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oak-light);
  font-weight: 400;
}

.nav-links {
  display: flex; align-items: center; gap: 38px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,253,249,0.80);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--oak-light);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--warm-white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex; align-items: center; gap: 14px;
}
.nav-phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--oak-light);
  letter-spacing: 0.03em;
}
.nav-phone:hover { color: var(--warm-white); }

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed; top: 0; right: -100%;
  width: 300px; height: 100vh;
  background: var(--navy-dark);
  padding: 90px 36px 40px;
  z-index: 999;
  transition: right 0.4s ease;
  flex-direction: column; gap: 0;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,253,249,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.mobile-nav a:hover { color: var(--oak-light); }
.mobile-nav .mobile-cta {
  margin-top: 28px;
  border-bottom: none;
}
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 998;
}
.nav-overlay.active { display: block; }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1616046229478-9901c5536a45?w=1800&q=80');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.08);
  transition: transform 8s ease;
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,26,46,0.92) 0%,
    rgba(22,37,61,0.75) 55%,
    rgba(22,37,61,0.30) 100%
  );
}
.hero-texture {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    );
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 140px 0 100px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,134,78,0.18);
  border: 1px solid rgba(184,134,78,0.40);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oak-light);
  margin-bottom: 1.6rem;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--oak-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.06;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s ease 0.4s both;
}
.hero-title em {
  font-style: italic;
  color: var(--oak-light);
}
.hero-sub {
  font-size: 1.12rem;
  color: rgba(255,253,249,0.75);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.8rem;
  animation: fadeSlideUp 0.8s ease 0.6s both;
}
.hero-btns {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeSlideUp 0.8s ease 0.75s both;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  animation: fadeSlideUp 0.8s ease 0.9s both;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,253,249,0.75);
}
.trust-badge svg {
  width: 14px; height: 14px;
  fill: var(--oak-light);
  flex-shrink: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,253,249,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeIn 1s ease 1.5s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,253,249,0.45), transparent);
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Stats Bar */
.stats-bar {
  background: var(--navy-mid);
  padding: 28px 0;
  border-bottom: 1px solid rgba(184,134,78,0.20);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 10px 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.12);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--oak-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,253,249,0.55);
  font-weight: 400;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about { background: var(--warm-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img-main {
  width: 100%; height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -36px; right: -36px;
  width: 200px; height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-med);
  border: 6px solid var(--warm-white);
}
.about-badge-float {
  position: absolute;
  top: 32px; left: -28px;
  background: var(--navy);
  color: var(--warm-white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-med);
  text-align: center;
  min-width: 120px;
}
.float-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--oak-light);
  line-height: 1;
  display: block;
}
.float-text {
  font-size: 0.70rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,253,249,0.65);
  margin-top: 4px;
}
.about-text p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 2rem 0;
}
.about-feat {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px;
  background: var(--beige);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}
.about-feat-icon {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--oak), var(--oak-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-feat-icon svg { width: 10px; height: 10px; fill: #fff; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services { background: var(--beige); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--light-line);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon { background: rgba(255,255,255,0.14); }
.service-card:hover .service-icon svg { fill: var(--oak-light); }
.service-card:hover h3 { color: var(--warm-white); }
.service-card:hover p { color: rgba(255,253,249,0.70); }
.service-card:hover .service-arrow { color: var(--oak-light); opacity: 1; }
.service-content { position: relative; z-index: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: var(--oak-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background 0.4s ease;
}
.service-icon svg { width: 26px; height: 26px; fill: var(--oak); transition: fill 0.4s ease; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.4s ease;
}
.service-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.75;
  transition: color 0.4s ease;
}
.service-arrow {
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--oak);
  opacity: 0.5;
  transition: var(--transition);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why { background: var(--navy-dark); }
#why .section-title { color: var(--warm-white); }
#why .section-subtitle { color: rgba(255,253,249,0.55); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  background: rgba(255,253,249,0.04);
  border: 1px solid rgba(255,253,249,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,253,249,0.08);
  border-color: rgba(184,134,78,0.40);
  transform: translateY(-4px);
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--oak), var(--oak-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 52px; height: 52px;
  background: rgba(184,134,78,0.14);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 24px; height: 24px; fill: var(--oak-light); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.86rem;
  color: rgba(255,253,249,0.55);
  line-height: 1.75;
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery { background: var(--warm-white); }
.gallery-filters {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--light-line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--warm-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item:nth-child(4n+1) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,26,46,0.80) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--warm-white);
  letter-spacing: 0.05em;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
#process { background: var(--beige); }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 42px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--oak-pale), var(--oak), var(--oak-pale));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative; z-index: 1;
  padding: 0 12px;
}
.step-circle {
  width: 84px; height: 84px;
  background: var(--warm-white);
  border: 3px solid var(--light-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
  position: relative;
}
.process-step:hover .step-circle {
  border-color: var(--oak);
  background: var(--oak-pale);
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(184,134,78,0.28);
}
.step-num {
  position: absolute; top: -8px; right: -8px;
  width: 24px; height: 24px;
  background: var(--oak);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.step-circle svg { width: 30px; height: 30px; fill: var(--oak); }
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   REVIEWS
   ============================================================ */
#reviews { background: var(--navy-dark); }
#reviews .section-title { color: var(--warm-white); }
#reviews .section-subtitle { color: rgba(255,253,249,0.55); }
.reviews-track-wrap {
  overflow: hidden;
  position: relative;
  margin: 0 -28px;
  padding: 0 28px;
}
.reviews-track {
  display: flex; gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.review-card {
  flex-shrink: 0;
  width: calc(33.333% - 16px);
  background: rgba(255,253,249,0.05);
  border: 1px solid rgba(255,253,249,0.09);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}
.review-card:hover {
  background: rgba(255,253,249,0.09);
  border-color: rgba(184,134,78,0.30);
}
.review-quote {
  font-size: 2.8rem;
  font-family: Georgia, serif;
  color: var(--oak-light);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.65;
}
.review-stars {
  display: flex; gap: 4px;
  margin-bottom: 16px;
}
.review-stars span {
  font-size: 1rem;
  color: var(--oak-light);
}
.review-text {
  font-size: 0.93rem;
  color: rgba(255,253,249,0.72);
  line-height: 1.82;
  margin-bottom: 24px;
  font-style: italic;
}
.review-author {
  display: flex; align-items: center; gap: 14px;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--oak), var(--oak-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  font-size: 0.90rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 2px;
}
.author-city {
  font-size: 0.75rem;
  color: rgba(255,253,249,0.45);
  letter-spacing: 0.05em;
}
.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: 3rem;
}
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,253,249,0.18);
  background: transparent;
  color: rgba(255,253,249,0.70);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover {
  border-color: var(--oak);
  color: var(--oak-light);
  background: rgba(184,134,78,0.12);
}
.slider-dots {
  display: flex; gap: 8px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,253,249,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--oak-light);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
#service-area { background: var(--warm-white); }
.area-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.area-cities {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 2rem;
}
.city-item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--light-line);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-dark);
  letter-spacing: 0.03em;
  transition: var(--transition);
}
.city-item:hover {
  background: var(--oak-pale);
  border-color: var(--oak-light);
  transform: translateX(4px);
}
.city-item svg { width: 15px; height: 15px; fill: var(--oak); flex-shrink: 0; }
.area-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 440px;
}
.area-map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--beige); }
.faq-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
}
.faq-item {
  background: var(--warm-white);
  border-radius: var(--radius);
  border: 1px solid var(--light-line);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item.open { box-shadow: var(--shadow-soft); }
.faq-q {
  width: 100%; text-align: left;
  padding: 22px 28px;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-q:hover { color: var(--oak); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--oak);
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--oak); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
  font-size: 0.90rem;
  color: var(--muted);
  line-height: 1.80;
}
.faq-item.open .faq-a { max-height: 240px; padding: 0 28px 22px; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact { background: var(--warm-white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 70px;
}
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--light-line);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; fill: var(--oak-light); }
.contact-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--navy-dark);
  line-height: 1.5;
}
.contact-info-value a { color: var(--navy-dark); transition: color 0.3s; }
.contact-info-value a:hover { color: var(--oak); }
.hours-grid {
  display: flex; flex-direction: column; gap: 4px; margin-top: 4px;
}
.hours-row {
  display: flex; gap: 10px;
  font-size: 0.84rem;
  color: var(--muted);
}
.hours-day { font-weight: 600; color: var(--navy); min-width: 90px; }

/* Contact Form */
.contact-form-wrap {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(184,134,78,0.08);
  pointer-events: none;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 0.86rem;
  color: rgba(255,253,249,0.50);
  margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,253,249,0.55);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,253,249,0.07);
  border: 1.5px solid rgba(255,253,249,0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--warm-white);
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,253,249,0.30); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--oak);
  background: rgba(255,253,249,0.10);
}
.form-group textarea { resize: vertical; min-height: 110px; }
#form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--oak), var(--oak-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg { width: 34px; height: 34px; fill: #fff; }
#form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--warm-white);
  margin-bottom: 10px;
}
#form-success p {
  font-size: 0.92rem;
  color: rgba(255,253,249,0.60);
  line-height: 1.7;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,134,78,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 1rem;
  position: relative;
}
.cta-band p {
  font-size: 1.05rem;
  color: rgba(255,253,249,0.60);
  max-width: 520px; margin: 0 auto 2.4rem;
  position: relative;
}
.cta-band .btn-group {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--navy-dark);
  padding: 70px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,253,249,0.45);
  line-height: 1.80;
  margin: 18px 0 24px;
  max-width: 280px;
}
.footer-social {
  display: flex; gap: 12px;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,253,249,0.06);
  border: 1px solid rgba(255,253,249,0.10);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(184,134,78,0.18);
  border-color: rgba(184,134,78,0.40);
}
.social-link svg { width: 16px; height: 16px; fill: rgba(255,253,249,0.60); }
.social-link:hover svg { fill: var(--oak-light); }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,253,249,0.35);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,253,249,0.55);
  transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: var(--oak-light); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,253,249,0.55);
  margin-bottom: 12px;
  line-height: 1.55;
}
.footer-contact-item svg { width: 14px; height: 14px; fill: var(--oak); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: inherit; transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--oak-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,253,249,0.30);
}
.footer-links {
  display: flex; gap: 22px;
}
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,253,249,0.35);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--oak-light); }

/* ============================================================
   FLOATING ELEMENTS (MOBILE)
   ============================================================ */
.float-call {
  display: none;
  position: fixed;
  bottom: 90px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--oak), var(--oak-light));
  box-shadow: 0 6px 28px rgba(184,134,78,0.50);
  align-items: center; justify-content: center;
  z-index: 900;
  animation: floatBounce 3s ease infinite;
  transition: transform 0.3s ease;
}
.float-call:hover { transform: scale(1.1); }
.float-call svg { width: 24px; height: 24px; fill: #fff; }
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-dark);
  border-top: 1px solid rgba(184,134,78,0.25);
  padding: 10px 16px;
  z-index: 890;
  align-items: center; gap: 10px;
}
.sticky-cta-bar .btn { flex: 1; justify-content: center; padding: 12px; font-size: 0.8rem; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .section { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-accent { bottom: -24px; right: -12px; width: 140px; height: 140px; }
  .about-badge-float { left: -12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .area-grid { grid-template-columns: 1fr; gap: 40px; }
  .area-map-wrap { height: 300px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-steps::before { display: none; }
  .float-call, .sticky-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(4n+1) { grid-column: span 2; }
  .review-card { width: 90vw; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .process-steps { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .area-cities { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(4n+1) { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--beige); }
::-webkit-scrollbar-thumb { background: var(--oak-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--oak); }
