/* ============================================================
   B&L TILING REMODELING — Main Stylesheet
   ============================================================ */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Poppins:wght@300;400;500;600;700&family=Raleway:wght@700;800;900&display=swap');

/* === CSS VARIABLES === */
:root {
  --navy:        #061B38;
  --navy-mid:    #0A2855;
  --navy-light:  #123B6B;
  --orange:      #E08E17;
  --orange-dark: #C47A10;
  --white:       #FFFFFF;
  --bg:          #F4F6F9;
  --light:       #F4F6F9;
  --gray:        #6B7280;
  --gray-light:  #E5E7EB;
  --dark:        #111827;

  --font-body:    'Poppins', system-ui, sans-serif;
  --font-heading: 'Raleway', sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;

  --container: 1200px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-pill: 100px;
  --shadow:    0 4px 24px rgba(6, 27, 56, 0.10);
  --shadow-lg: 0 8px 48px rgba(6, 27, 56, 0.18);
  --ease:      cubic-bezier(.22, 1, .36, 1);
  --transition: 0.35s var(--ease);
}

/* === 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);
  color: var(--dark);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { color: #4B5563; line-height: 1.8; }

/* Serif italic accent for h1/h2 em tags */
h1 em, h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--dark { background: var(--navy); }
.section--dark p, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .section-label { color: var(--orange); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header p { margin-top: 16px; font-size: 1.05rem; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A06010;
  margin-bottom: 12px;
}
/* section-label em fundos escuros mantém laranja original */
.section--dark .section-label,
.home-faq .section-label,
.faq .section-label,
.stats .section-label,
.cta-banner .section-label { color: var(--orange); }

/* === BACKGROUND ORBS === */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  contain: layout style paint;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
  transform: translateZ(0);
}

/* Navy orb — top right */
.bg-orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(6,27,56,.10), rgba(10,40,85,.05), transparent 68%);
  top: -220px; right: -180px;
  animation: orbFloat 16s var(--ease) infinite;
}

/* Orange orb — bottom left */
.bg-orb--2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(224,142,23,.08), rgba(196,122,16,.03), transparent 68%);
  bottom: 0; left: -140px;
  animation: orbFloat 20s var(--ease) infinite reverse;
}

/* Navy-light orb — center */
.bg-orb--3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(18,59,107,.07), rgba(6,27,56,.03), transparent 68%);
  top: 45vh; right: 20%;
  animation: orbFloat 24s var(--ease) infinite 6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(20px,-18px) scale(1.04); }
  66%       { transform: translate(-14px,14px) scale(.97); }
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; will-change: auto; }
.reveal-d1 { transition-delay: .10s; }
.reveal-d2 { transition-delay: .20s; }
.reveal-d3 { transition-delay: .32s; }

/* === BUTTONS (legacy) === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,142,23,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--orange-dark); font-weight: 700; }
.btn-white:hover { background: var(--light); transform: translateY(-2px); }

/* === LIQUID GLASS BUTTONS === */
.btn-glass {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: rgba(6,27,56,.85);
  cursor: pointer;
  border: none;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition);

  background: linear-gradient(155deg,
    rgba(255,255,255,.60) 0%,
    rgba(255,255,255,.32) 50%,
    rgba(255,255,255,.46) 100%
  );
  backdrop-filter: blur(24px) saturate(200%) brightness(110%);
  -webkit-backdrop-filter: blur(24px) saturate(200%) brightness(110%);
  border: 1px solid rgba(255,255,255,.65);
  border-top-color: rgba(255,255,255,.98);
  border-bottom-color: rgba(255,255,255,.25);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(0,0,0,.06),
    0 1px 2px rgba(0,0,0,.08),
    0 4px 14px rgba(0,0,0,.07),
    0 16px 32px rgba(0,0,0,.05);
}

.btn-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg,
    rgba(255,255,255,.70) 0%,
    rgba(255,255,255,.24) 45%,
    transparent 100%
  );
  border-radius: var(--radius-pill) var(--radius-pill) 60% 60% / var(--radius-pill) var(--radius-pill) 44px 44px;
  pointer-events: none;
  z-index: 1;
}

.btn-glass::after {
  content: '';
  position: absolute;
  inset: 2.5px;
  border-radius: calc(var(--radius-pill) - 2px);
  border: 1px solid rgba(255,255,255,.45);
  pointer-events: none;
  z-index: 1;
}

.btn-glass > * { position: relative; z-index: 2; }

.btn-glass:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(0,0,0,.06),
    0 2px 6px rgba(0,0,0,.10),
    0 8px 24px rgba(0,0,0,.10),
    0 24px 48px rgba(0,0,0,.07);
}

/* Orange / primary variant */
.btn-glass--orange {
  background: linear-gradient(155deg,
    rgba(200,100,10,.92) 0%,
    rgba(224,142,23,.88) 50%,
    rgba(210,118,15,.92) 100%
  );
  color: rgba(255,255,255,.97);
  border-color: rgba(255,255,255,.22);
  border-top-color: rgba(255,255,255,.40);
  border-bottom-color: rgba(0,0,0,.20);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.24),
    inset 0 -1px 0 rgba(0,0,0,.20),
    0 1px 2px rgba(0,0,0,.18),
    0 4px 16px rgba(224,142,23,.40),
    0 16px 36px rgba(196,122,16,.24);
  text-shadow: 0 1px 2px rgba(0,0,0,.20);
}
.btn-glass--orange::before {
  background: linear-gradient(180deg,
    rgba(255,255,255,.22) 0%,
    rgba(255,255,255,.07) 45%,
    transparent 100%
  );
}
.btn-glass--orange::after { border-color: rgba(255,255,255,.16); }
.btn-glass--orange:hover {
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.24),
    inset 0 -1px 0 rgba(0,0,0,.20),
    0 2px 6px rgba(0,0,0,.20),
    0 8px 28px rgba(224,142,23,.55),
    0 24px 52px rgba(196,122,16,.30);
}

/* Navy / secondary variant */
.btn-glass--navy {
  background: linear-gradient(155deg,
    rgba(6,27,56,.90) 0%,
    rgba(10,40,85,.85) 50%,
    rgba(8,33,70,.90) 100%
  );
  color: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.18);
  border-top-color: rgba(255,255,255,.32);
  border-bottom-color: rgba(0,0,0,.22);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(0,0,0,.20),
    0 4px 16px rgba(6,27,56,.35),
    0 16px 36px rgba(6,27,56,.18);
  text-shadow: 0 1px 2px rgba(0,0,0,.20);
}
.btn-glass--navy::before {
  background: linear-gradient(180deg,
    rgba(255,255,255,.18) 0%,
    rgba(255,255,255,.06) 45%,
    transparent 100%
  );
}
.btn-glass--navy::after { border-color: rgba(255,255,255,.12); }

/* === TRUST CHIPS === */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .80rem;
  color: var(--gray);
  padding: .44rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  font-weight: 500;

  background: rgba(255,255,255,.60);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,.75);
  border-top-color: rgba(255,255,255,.98);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 2px 8px rgba(0,0,0,.05);
}
.trust-chip::before {
  content: '✓';
  color: var(--orange);
  font-size: .68rem;
  font-weight: 700;
}

/* === IMAGE PLACEHOLDER === */
.img-placeholder {
  background: linear-gradient(135deg, #c8d3e0 0%, #a8b8cc 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #6b7c93;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
}
.img-placeholder svg { opacity: 0.5; }
.img-placeholder--hero   { aspect-ratio: 16/9; min-height: 320px; }
.img-placeholder--square { aspect-ratio: 1/1; }
.img-placeholder--tall   { aspect-ratio: 4/5; min-height: 480px; }
.img-placeholder--card   { aspect-ratio: 4/3; }

/* === TOP SCROLL BLUR === */
.top-blur {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 110px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 899;
}

/* === NAVBAR — Floating Glass Pill === */
.navbar {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 900;
  background: transparent;
  padding: 0;
  transition: none;
  animation: navFadeDown .9s var(--ease) .15s both;
}

@keyframes navFadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px 10px 24px;
  border-radius: 18px;
  max-width: 1160px;

  background: rgba(6,27,56,.88);
  backdrop-filter: blur(32px) saturate(200%) brightness(108%);
  -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(108%);
  border: 1px solid rgba(255,255,255,.12);
  border-top-color: rgba(255,255,255,.22);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,.14),
    inset 0 -1px 0 rgba(0,0,0,.10),
    0 4px 20px rgba(6,27,56,.30),
    0 16px 40px rgba(6,27,56,.18);
}

/* Subtle shine on nav */
.navbar-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  border-radius: 18px 18px 60% 60% / 18px 18px 30px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.08) 0%, transparent 100%);
  pointer-events: none;
}
/* Need position relative on navbar-inner for the ::before */
.navbar > .container { position: relative; }
.navbar-inner { position: relative; }

/* Scrolled state — just slightly more opaque */
.navbar.scrolled {
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.navbar.scrolled .navbar-inner {
  background: rgba(6,27,56,.96);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,.12),
    0 8px 32px rgba(6,27,56,.40),
    0 24px 56px rgba(6,27,56,.24);
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar-nav a {
  color: rgba(255,255,255,.78);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 10px;
  transition: color .2s, background .2s;
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.10);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.navbar-actions .phone {
  color: rgba(255,255,255,.70);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.navbar-actions .phone:hover { color: var(--orange); }
.navbar-actions .phone svg { color: var(--orange); }

.navbar-cta {
  padding: 9px 20px;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
}

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 4px; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 10px;
  background: transparent;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
  pointer-events: none;
}
.dropdown-inner {
  background: rgba(8,30,62,.96);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255,255,255,.12);
  border-top-color: rgba(255,255,255,.20);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(6,27,56,.50), 0 24px 56px rgba(0,0,0,.20);
  padding: 8px;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.dropdown a {
  display: block;
  color: rgba(255,255,255,.75) !important;
  padding: 10px 16px !important;
  font-size: 0.86rem !important;
  border-radius: 6px;
  background: transparent !important;
  transition: background .2s, color .2s !important;
}
.dropdown a:hover { background: rgba(255,255,255,.08) !important; color: var(--orange) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(6,27,56,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.10);
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 12px 20px 20px;
  margin-top: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.78);
  padding: 11px 0;
  font-size: 0.93rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); }

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding-top: 100px;
}

/* Lighting from top-right */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 50% at 95% 0%,
      rgba(224,142,23,.12) 0%,
      rgba(224,142,23,.05) 40%,
      transparent 70%
    ),
    radial-gradient(ellipse 55% 45% at 5% 100%,
      rgba(6,27,56,.08) 0%,
      transparent 65%
    );
}

/* Grain texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2rem;

  background: rgba(255,255,255,.65);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255,255,255,.80);
  border-top-color: rgba(255,255,255,.98);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.92),
    0 2px 10px rgba(0,0,0,.05);

  opacity: 0;
  animation: heroFadeUp .7s var(--ease) .35s forwards;
}

.hero-badge svg { color: var(--orange); }

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.6rem;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  opacity: 0;
  animation: heroFadeUp .7s var(--ease) .55s forwards;
}

.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

.hero p {
  color: var(--gray);
  font-size: clamp(.95rem, 2vw, 1.10rem);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0;
  animation: heroFadeUp .7s var(--ease) .72s forwards;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: heroFadeUp .7s var(--ease) .88s forwards;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
  opacity: 0;
  animation: heroFadeUp .7s var(--ease) 1.05s forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.3;
  z-index: 1;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--navy));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  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; }
}

/* ============================================================
   HOMEPAGE — SERVICES
   ============================================================ */
.home-services { background: var(--white); position: relative; z-index: 1; }

.services-glass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-glass-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);

  background: rgba(255,255,255,.72);
  backdrop-filter: blur(28px) saturate(190%) brightness(108%);
  -webkit-backdrop-filter: blur(28px) saturate(190%) brightness(108%);
  border: 1px solid rgba(255,255,255,.75);
  border-top-color: rgba(255,255,255,.98);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.95),
    inset 0 -1px 0 rgba(0,0,0,.03),
    0 4px 16px rgba(6,27,56,.07),
    0 16px 40px rgba(6,27,56,.05);
}

/* Shine layer */
.service-glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 46%;
  background: linear-gradient(180deg,
    rgba(255,255,255,.55) 0%,
    rgba(255,255,255,.18) 50%,
    transparent 100%
  );
  border-radius: var(--radius-lg) var(--radius-lg) 60% 60% / var(--radius-lg) var(--radius-lg) 36px 36px;
  pointer-events: none;
  z-index: 1;
}

.service-glass-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.95),
    0 8px 32px rgba(6,27,56,.12),
    0 28px 56px rgba(6,27,56,.09);
}

.service-glass-card .service-card-img { position: relative; z-index: 2; }
.service-glass-card .service-card-img .img-placeholder { border-radius: 0; }

.service-glass-card .service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.service-glass-card .service-card-body h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.service-glass-card .service-card-body p { font-size: 0.88rem; flex: 1; }

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.86rem;
  margin-top: 18px;
  transition: gap var(--transition), color var(--transition);
}
.service-card-link:hover { gap: 10px; color: var(--orange-dark); }

/* ============================================================
   HOMEPAGE — ABOUT PREVIEW
   ============================================================ */
.home-about { background: var(--bg); position: relative; z-index: 1; }

.about-glass-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-glass-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;

  background: linear-gradient(145deg, rgba(200,215,235,.55), rgba(160,185,210,.30));
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,.60);
  border-top-color: rgba(255,255,255,.95);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,.85),
    0 8px 32px rgba(6,27,56,.12),
    0 32px 64px rgba(6,27,56,.08);
}

.about-glass-image__shine {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg,
    rgba(255,255,255,.42) 0%,
    rgba(255,255,255,.14) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.about-glass-image__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.about-glass-image__inner svg { opacity: .18; }

.about-glass-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  padding: .38rem .9rem;
  border-radius: var(--radius-pill);
  z-index: 2;

  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,.85);
  border-top-color: rgba(255,255,255,.98);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.92);
}
.about-glass-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-glass-text { }
.about-glass-text .section-label { margin-bottom: 12px; }
.about-glass-text h2 { color: var(--navy); margin-bottom: 1.4rem; }
.about-glass-text p { margin-bottom: 14px; }

.about-checks { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.about-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.90rem;
  font-weight: 500;
  color: var(--dark);
}
.about-check svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   HOMEPAGE — STATS
   ============================================================ */
.home-stats {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  padding: 72px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.home-stats::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,142,23,.12), transparent 65%);
  pointer-events: none;
}

.stats-glass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
}

.stat-glass {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);

  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-top-color: rgba(255,255,255,.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
  transition: background var(--transition);
}
.stat-glass:hover { background: rgba(255,255,255,.11); }

.stat-glass .stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-glass .stat-label {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ============================================================
   HOMEPAGE — HOW WE WORK (Process)
   ============================================================ */
.home-process { background: var(--bg); position: relative; z-index: 1; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: steps;
}

.process-step {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  counter-increment: steps;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);

  background: rgba(255,255,255,.68);
  backdrop-filter: blur(28px) saturate(190%) brightness(108%);
  -webkit-backdrop-filter: blur(28px) saturate(190%) brightness(108%);
  border: 1px solid rgba(255,255,255,.75);
  border-top-color: rgba(255,255,255,.98);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.95),
    inset 0 -1px 0 rgba(0,0,0,.03),
    0 4px 16px rgba(6,27,56,.06),
    0 16px 40px rgba(6,27,56,.04);
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 48%;
  background: linear-gradient(180deg,
    rgba(255,255,255,.55) 0%,
    rgba(255,255,255,.18) 45%,
    transparent 100%
  );
  border-radius: var(--radius-lg) var(--radius-lg) 60% 60% / var(--radius-lg) var(--radius-lg) 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.95),
    0 8px 28px rgba(6,27,56,.12),
    0 28px 56px rgba(6,27,56,.08);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--orange);
  opacity: .20;
  line-height: 1;
  margin-bottom: .75rem;
  position: relative; z-index: 1;
}

.process-step h3 {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
  position: relative; z-index: 1;
}

.process-step p {
  font-size: .84rem;
  line-height: 1.7;
  position: relative; z-index: 1;
}

/* ============================================================
   HOMEPAGE — REVIEWS
   ============================================================ */
.home-reviews { background: var(--white); position: relative; z-index: 1; }

.reviews-glass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-glass-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);

  background: rgba(255,255,255,.72);
  backdrop-filter: blur(24px) saturate(180%) brightness(108%);
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(108%);
  border: 1px solid rgba(255,255,255,.75);
  border-top-color: rgba(255,255,255,.98);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.95),
    0 4px 16px rgba(6,27,56,.06),
    0 16px 36px rgba(6,27,56,.05);
}

.review-glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 44%;
  background: linear-gradient(180deg,
    rgba(255,255,255,.50) 0%,
    rgba(255,255,255,.16) 50%,
    transparent 100%
  );
  border-radius: var(--radius-lg) var(--radius-lg) 60% 60% / var(--radius-lg) var(--radius-lg) 36px 36px;
  pointer-events: none;
  z-index: 0;
}

.review-glass-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.95),
    0 8px 28px rgba(6,27,56,.10),
    0 24px 52px rgba(6,27,56,.07);
}

.review-glass-card > * { position: relative; z-index: 1; }

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--orange);
}

.review-glass-card > p {
  font-size: 0.90rem;
  line-height: 1.78;
  color: var(--dark);
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 300;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-info .name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.review-info .location { font-size: 0.76rem; color: var(--gray); }
.review-google {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: var(--gray);
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(6,27,56,.08);
}

/* ============================================================
   HOMEPAGE — FAQ
   ============================================================ */
.home-faq {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative; z-index: 1;
  overflow: hidden;
}
.home-faq::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,142,23,.10), transparent 65%);
  pointer-events: none;
}
.home-faq .section-header h2 { color: var(--white); }
.home-faq .section-header p { color: rgba(255,255,255,.65); }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  border-radius: var(--radius);
  overflow: hidden;

  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-top-color: rgba(255,255,255,.20);
  transition: background var(--transition);
}
.faq-item:hover { background: rgba(255,255,255,.10); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  color: rgba(255,255,255,.90);
  font-weight: 500;
  font-size: 0.94rem;
  text-align: left;
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--white); }
.faq-question.open { color: var(--orange); }

.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), transform var(--transition), color var(--transition);
  color: rgba(255,255,255,.70);
}
.faq-question.open .faq-icon {
  border-color: var(--orange);
  color: var(--orange);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 22px 20px;
  color: rgba(255,255,255,.60);
  font-size: 0.90rem;
  line-height: 1.82;
  font-weight: 300;
}

/* ============================================================
   HOMEPAGE — CTA FINAL (Glass box)
   ============================================================ */
.home-cta-final {
  background: var(--bg);
  position: relative; z-index: 1;
  text-align: center;
}

.cta-glass-box {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: 28px;
  overflow: hidden;

  background: rgba(255,255,255,.70);
  backdrop-filter: blur(32px) saturate(200%) brightness(110%);
  -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(110%);
  border: 1px solid rgba(255,255,255,.75);
  border-top-color: rgba(255,255,255,.99);
  box-shadow:
    inset 0 2.5px 0 rgba(255,255,255,.98),
    inset 0 -1px 0 rgba(0,0,0,.03),
    0 8px 32px rgba(6,27,56,.08),
    0 32px 64px rgba(6,27,56,.06);
}

.cta-glass-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 44%;
  background: linear-gradient(180deg,
    rgba(255,255,255,.58) 0%,
    rgba(255,255,255,.18) 50%,
    transparent 100%
  );
  border-radius: 28px 28px 65% 65% / 28px 28px 44px 44px;
  pointer-events: none;
}

.cta-glass-box > * { position: relative; z-index: 1; }
.cta-glass-box h2 { color: var(--navy); margin-bottom: 1.2rem; }
.cta-glass-box p {
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-glass-box .cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin-top: 1.75rem;
}

/* ============================================================
   INNER PAGES — PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 160px 0 80px;
  text-align: center;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.70); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.50);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.60); transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* ============================================================
   INNER PAGES — GALLERY
   ============================================================ */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item .img-placeholder {
  border-radius: 0;
  transition: var(--transition);
}
.gallery-item:hover .img-placeholder { transform: scale(1.03); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
  aspect-ratio: 4/3;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,27,56,.60);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================================
   INNER PAGES — ABOUT PAGE
   ============================================================ */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.value-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(224,142,23,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange);
}
.value-card h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.05rem; }

/* ============================================================
   INNER PAGES — CONTACT & FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 { color: var(--navy); margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(224,142,23,.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-info-item strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 4px; font-size: 0.92rem; }
.contact-info-item p { font-size: 0.9rem; margin: 0; }
.contact-social { display: flex; gap: 12px; margin-top: 32px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.social-link:hover { background: var(--orange); transform: translateY(-2px); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { color: var(--navy); margin-bottom: 8px; }
.form-card > p { margin-bottom: 32px; font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224,142,23,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-submit { width: 100%; justify-content: center; }
.form-status {
  display: none;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}
.form-status.success { display: block; background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-status.error   { display: block; background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ============================================================
   INNER PAGES — PRIVACY
   ============================================================ */
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-content h2 { color: var(--navy); margin: 40px 0 16px; font-size: 1.4rem; }
.privacy-content h3 { color: var(--navy); margin: 28px 0 12px; font-size: 1.1rem; }
.privacy-content p, .privacy-content li { color: var(--gray); font-size: 0.95rem; margin-bottom: 14px; line-height: 1.85; }
.privacy-content ul { padding-left: 24px; list-style: disc; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 72px 0 0;
  position: relative;
  z-index: 1;
}

/* Glass pill — mirrors .navbar-inner */
.footer-inner {
  position: relative;
  border-radius: 18px;
  padding: 48px 48px 0;
  overflow: hidden;

  background: rgba(6,27,56,.88);
  backdrop-filter: blur(32px) saturate(200%) brightness(108%);
  -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(108%);
  border: 1px solid rgba(255,255,255,.12);
  border-top-color: rgba(255,255,255,.22);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,.14),
    inset 0 -1px 0 rgba(0,0,0,.10),
    0 4px 20px rgba(6,27,56,.30),
    0 16px 40px rgba(6,27,56,.18);
}

/* Shine on top — same as navbar */
.footer-shine {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  border-radius: 18px 18px 60% 60% / 18px 18px 30px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.08) 0%, transparent 100%);
  pointer-events: none;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-brand p { color: rgba(255,255,255,.70); font-size: 0.86rem; line-height: 1.75; }

.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }

.footer-col h4,
.footer-col-heading {
  color: var(--white);
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.70); font-size: 0.86rem; transition: color .2s, padding-left .2s; }
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { color: rgba(255,255,255,.75); font-size: 0.84rem; line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,.85); transition: color .2s; }
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,.60); font-size: 0.78rem; }
.footer-bottom a { color: rgba(255,255,255,.65); font-size: 0.78rem; transition: color .2s; }
.footer-bottom a:hover { color: var(--orange); }

/* ============================================================
   HOMEPAGE — MISSING SECTION STYLES (index.php classes)
   ============================================================ */

/* Hero slideshow */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 7s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(6,27,56,.75) 0%,
    rgba(6,27,56,.60) 50%,
    rgba(6,27,56,.82) 100%
  );
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.40);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s, width .3s;
  padding: 0;
}

.hero-dot.active {
  background: var(--white);
  width: 28px;
  border-radius: 4px;
}

/* Adjust hero elements to sit above overlay */
.hero-pattern { z-index: 2; }
.hero-content  { z-index: 3; }
.hero-scroll   { z-index: 3; }

/* Adapt text colors for dark background */
.hero h1 { color: var(--white); }
.hero p   { color: rgba(255,255,255,.80); }
.hero-badge {
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.30);
}
.hero-badge svg { color: var(--orange); }

/* Hero pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(224,142,23,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6,27,56,.08) 0%, transparent 50%);
}

/* --- SERVICES SECTION --- */
.services { background: var(--white); position: relative; z-index: 1; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);

  background: rgba(255,255,255,.72);
  backdrop-filter: blur(28px) saturate(190%) brightness(108%);
  -webkit-backdrop-filter: blur(28px) saturate(190%) brightness(108%);
  border: 1px solid rgba(255,255,255,.75);
  border-top-color: rgba(255,255,255,.98);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.95),
    inset 0 -1px 0 rgba(0,0,0,.03),
    0 4px 16px rgba(6,27,56,.07),
    0 16px 40px rgba(6,27,56,.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 46%;
  background: linear-gradient(180deg,
    rgba(255,255,255,.55) 0%,
    rgba(255,255,255,.18) 50%,
    transparent 100%
  );
  border-radius: var(--radius-lg) var(--radius-lg) 60% 60% / var(--radius-lg) var(--radius-lg) 36px 36px;
  pointer-events: none;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.95),
    0 8px 32px rgba(6,27,56,.12),
    0 28px 56px rgba(6,27,56,.09);
}

.service-card .service-card-img { position: relative; z-index: 2; overflow: hidden; aspect-ratio: 4/3; }
.service-card .service-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--transition); }
.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card .service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.service-card .service-card-body h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.service-card .service-card-body p { font-size: 0.88rem; flex: 1; }

/* --- ABOUT PREVIEW SECTION --- */
.about-preview { background: var(--bg); position: relative; z-index: 1; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;

  background: linear-gradient(145deg, rgba(200,215,235,.55), rgba(160,185,210,.30));
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,.60);
  border-top-color: rgba(255,255,255,.95);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,.85),
    0 8px 32px rgba(6,27,56,.12),
    0 32px 64px rgba(6,27,56,.08);
}

.about-content .section-label { margin-bottom: 12px; }
.about-content h2 { color: var(--navy); margin-bottom: 1.4rem; }
.about-content p { margin-bottom: 14px; }

/* --- STATS SECTION --- */
.stats {
  padding: 72px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url('/assets/img/living-room.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,27,56,.82) 0%,
    rgba(6,27,56,.70) 50%,
    rgba(6,27,56,.82) 100%
  );
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
}

.stat {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);

  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-top-color: rgba(255,255,255,.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
  transition: background var(--transition);
}
.stat:hover { background: rgba(255,255,255,.11); }

.stat .stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-star { font-size: 60%; vertical-align: middle; }
.stat .stat-label {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: 0.88rem;
  font-weight: 500;
}

/* --- REVIEWS SECTION --- */
.reviews { background: var(--white); position: relative; z-index: 1; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);

  background: rgba(255,255,255,.72);
  backdrop-filter: blur(24px) saturate(180%) brightness(108%);
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(108%);
  border: 1px solid rgba(255,255,255,.75);
  border-top-color: rgba(255,255,255,.98);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.95),
    0 4px 16px rgba(6,27,56,.06),
    0 16px 36px rgba(6,27,56,.05);
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 44%;
  background: linear-gradient(180deg,
    rgba(255,255,255,.50) 0%,
    rgba(255,255,255,.16) 50%,
    transparent 100%
  );
  border-radius: var(--radius-lg) var(--radius-lg) 60% 60% / var(--radius-lg) var(--radius-lg) 36px 36px;
  pointer-events: none;
  z-index: 0;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.95),
    0 8px 28px rgba(6,27,56,.10),
    0 24px 52px rgba(6,27,56,.07);
}

.review-card > * { position: relative; z-index: 1; }

.review-card > p {
  font-size: 0.90rem;
  line-height: 1.78;
  color: var(--dark);
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 300;
}

/* --- FAQ SECTION --- */
.faq { background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%); position: relative; z-index: 1; overflow: hidden; }
.faq::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,142,23,.10), transparent 65%);
  pointer-events: none;
}
.faq .section-header h2 { color: var(--white); }
.faq .section-header p { color: rgba(255,255,255,.65); }

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
  position: relative; z-index: 1;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(224,142,23,.10), transparent 70%);
  pointer-events: none;
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* ============================================================
   INNER PAGE GRID UTILITIES
   ============================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.grid-step { padding: 32px 16px; }
.grid-step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.grid-step h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.05rem; }
.grid-step p  { font-size: 0.88rem; }

.card-simple {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card-simple h3 { color: var(--navy); margin-bottom: 12px; font-size: 1rem; }
.card-simple p  { font-size: 0.88rem; }
.card-simple--center { text-align: center; }
.card-simple__emoji { font-size: 2rem; margin-bottom: 14px; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-glass-grid,
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .process-steps       { grid-template-columns: repeat(2, 1fr); }
  .footer-inner        { padding: 40px 36px 0; border-radius: 14px; }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-glass-grid,
  .about-grid          { gap: 3rem; }
  .contact-grid        { gap: 40px; }
  .stats-glass-grid,
  .stats-grid          { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .navbar-inner {
    padding: 10px 16px;
  }
  .navbar-actions .phone { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .navbar-nav { display: none; }
  .hamburger  { display: flex; }

  /* Hero */
  .hero { padding-top: 90px; }
  .hero-content { padding: 36px 20px 72px; }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-cta { gap: 10px; }
  .hero-cta .btn-glass { padding: 13px 26px; font-size: .86rem; }
  .trust-chip { font-size: .72rem; padding: .36rem .75rem; }

  /* Services */
  .services-glass-grid,
  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  /* About */
  .about-glass-grid,
  .about-grid { grid-template-columns: 1fr; }
  .about-glass-image,
  .about-image { aspect-ratio: 3/4; max-width: 360px; margin: 0 auto; }

  /* Stats */
  .stats-glass-grid,
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 14px; }

  /* Reviews */
  .reviews-glass-grid,
  .reviews-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-glass-box { border-radius: 20px; }
  .cta-glass-box h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Inner pages */
  .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid     { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .form-card       { padding: 32px 20px; }
  .form-row        { grid-template-columns: 1fr; }
  .footer-inner    { padding: 32px 24px 0; border-radius: 12px; }
  .footer-grid     { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom   { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(1.65rem, 8vw, 2.1rem); }
  .hero-trust .trust-chip:nth-child(n+5) { display: none; }
  .stats-glass-grid,
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 48px; }
  .navbar-inner { border-radius: 14px; margin: 0 12px; }
  .cta-glass-box .cta-trust .trust-chip:nth-child(n+4) { display: none; }

  /* Disable glass effects on mobile for performance */
  .service-glass-card,
  .service-card,
  .review-glass-card,
  .review-card,
  .process-step,
  .about-glass-image,
  .about-image,
  .cta-glass-box,
  .hero-badge,
  .trust-chip,
  .btn-glass {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .bg-orb { animation: none; }
  .reveal  { opacity: 1; transform: none; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9998;
  width: calc(100% - 48px);
  max-width: 760px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.34,1.3,.64,1), opacity 0.35s ease;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner.hiding {
  transform: translateX(-50%) translateY(120px);
  opacity: 0;
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 240px;
  color: rgba(255,255,255,.75);
}
.cookie-banner__text svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.cookie-banner__text p { font-size: 0.85rem; line-height: 1.55; margin: 0; }
.cookie-banner__text a { color: var(--orange); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.cookie-btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.7);
}
.cookie-btn--outline:hover {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.cookie-btn--accept {
  background: var(--orange);
  color: #fff;
}
.cookie-btn--accept:hover { background: var(--orange-dark); }
@media (max-width: 540px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: zoom-out;
}
.lightbox__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox__img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  display: block;
  transition: opacity 0.15s ease;
}
.lightbox__img.loading { opacity: 0.4; }
.lightbox__caption {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  margin-top: 12px;
  text-align: center;
  letter-spacing: 0.02em;
}
.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255, 255, 255, 0.25); }
@media (max-width: 600px) {
  .lightbox__prev { left: 6px; }
  .lightbox__next { right: 6px; }
  .lightbox__prev,
  .lightbox__next { width: 40px; height: 40px; font-size: 1.5rem; }
}
