/* ═══════════════════════════════════════════════════════════
   4 Seasons Awnings & Blinds — styles.css
   Light premium theme · warm whites + brand orange
   ───────────────────────────────────────────────────────────
   Logo palette: white/cream body, orange #E8801C accent,
   near-black type. Warm, professional, approachable.
═══════════════════════════════════════════════════════════ */

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

:root {
  /* ── LIGHT THEME PALETTE ── */
  --bg:           #FAFAF8;     /* warm white — main surface */
  --bg-2:         #F5F1EB;     /* warm cream — alternate sections */
  --bg-3:         #EDE8DF;     /* warm sand — cards, accents */
  --bg-card:      #FFFFFF;     /* pure white — cards */
  --bg-dark:      #1C1814;     /* near-black — footer, hero overlay */

  --orange:       #E8801C;     /* brand orange */
  --orange-light: #F4934A;     /* lighter hover */
  --orange-dim:   rgba(232,128,28,0.10);
  --orange-dim2:  rgba(232,128,28,0.06);
  --orange-border: rgba(232,128,28,0.25);

  --ink:          #1A1614;     /* primary text */
  --ink-2:        #3D3730;     /* secondary headings */
  --muted:        #7A7268;     /* muted text */
  --light-muted:  #A89F95;     /* very muted */

  --border:       rgba(0,0,0,0.08);
  --border-warm:  rgba(232,128,28,0.22);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.12);
  --shadow-orange: 0 8px 28px rgba(232,128,28,0.28);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --nav-h:        76px;
  --max-w:        1280px;
  --pad-x:        clamp(1.5rem, 5vw, 80px);
  --section-y:    clamp(80px, 9vw, 130px);
  --radius:       20px;
  --radius-sm:    12px;
  --ease:         cubic-bezier(.4,0,.2,1);
  --ease-back:    cubic-bezier(.22,.68,0,1.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
section[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ════════ TYPOGRAPHY HELPERS ════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--orange); border-radius: 1px; flex-shrink: 0;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700; line-height: 1.06;
  color: var(--ink);
}
h2 em { color: var(--orange); font-style: italic; }

.section-header { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-sub {
  font-size: 0.95rem; color: var(--muted);
  max-width: 520px; margin: 1.2rem auto 0;
  line-height: 1.85; font-weight: 300;
}

/* ════════ BUTTONS ════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--orange); color: #fff;
  padding: 0.95rem 2.1rem; border-radius: 50px;
  font-weight: 600; font-size: 0.88rem; letter-spacing: 0.04em;
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-light); transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232,128,28,0.4);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.18); color: #fff;
  padding: 0.95rem 2.1rem; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.55);
  font-weight: 600; font-size: 0.88rem;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.3); border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: var(--orange);
  padding: 0.9rem 2rem; border-radius: 50px;
  border: 2px solid var(--orange-border);
  font-weight: 600; font-size: 0.85rem;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--orange-dim); border-color: var(--orange);
  transform: translateY(-2px);
}

/* ════════ NAV ════════ */
#main-nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 1280px;
  background: rgba(250,250,248,0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 60px; padding: 0 28px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 900;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
#main-nav.scrolled {
  top: 8px;
  background: rgba(250,250,248,0.97);
  box-shadow: 0 6px 36px rgba(0,0,0,0.12), 0 0 0 1px var(--border-warm);
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img {
  height: 52px; width: auto; object-fit: contain;
}

.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  color: var(--muted); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--orange); }

.nav-cta {
  display: inline-flex !important; align-items: center; gap: 0.45rem;
  background: #25D366 !important; color: #fff !important;
  padding: 0.58rem 1.4rem !important; border-radius: 40px !important;
  font-size: 0.78rem !important; font-weight: 700 !important;
  text-transform: none !important; letter-spacing: 0.03em !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35) !important;
}
.nav-cta:hover {
  background: #22c35e !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(37,211,102,0.5) !important;
  color: #fff !important;
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════ HERO ════════ */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  /* Photo is an exterior patio cover — use it warmly, not darkly */
  filter: brightness(0.55) saturate(0.85);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(250,246,240,0.72) 0%,
    rgba(240,230,210,0.45) 50%,
    rgba(26,22,20,0.5) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(circle, rgba(232,128,28,0.5) 1px, transparent 1px),
    radial-gradient(circle, rgba(232,128,28,0.3) 1.5px, transparent 1.5px);
  background-size: 130px 130px, 90px 90px;
  background-position: 0 0, 45px 45px;
  animation: particleDrift 30s linear infinite;
}
@keyframes particleDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100px); }
}

.hero-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--max-w); margin: 0 auto;
  padding: 120px var(--pad-x) 100px;
  display: grid; grid-template-columns: 1fr 420px; gap: 5rem; align-items: center;
}

.hero-eyebrow-row {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.hero-eyebrow-line { width: 36px; height: 2px; background: rgba(255,255,255,0.85); border-radius: 1px; }
.hero-eyebrow-text {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 700; line-height: 1.02; color: #fff;
  margin-bottom: 1.4rem; letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero-title em { color: var(--orange); font-style: italic; }

.hero-subtitle {
  font-size: 1rem; color: rgba(255,255,255,0.88);
  line-height: 1.85; font-weight: 300; margin-bottom: 2.5rem;
  max-width: 460px; text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero Stats Card */
.hero-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  padding: 2.2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.hero-card-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hero-card-label::before { content: ''; width: 18px; height: 1.5px; background: var(--orange); }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.75rem; }
.hero-stat-num {
  font-family: var(--font-display); font-size: 2.6rem;
  font-weight: 700; color: var(--ink); line-height: 1;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-label { font-size: 0.72rem; color: var(--muted); margin-top: 0.25rem; }
.hero-card-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.hero-region-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.hero-region-tag {
  background: var(--orange-dim); border: 1px solid var(--orange-border);
  color: var(--ink-2); font-size: 0.68rem; font-weight: 500;
  padding: 0.28rem 0.7rem; border-radius: 20px; transition: all 0.2s;
}
.hero-region-tag:hover { background: var(--orange); color: #fff; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.7); font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(232,128,28,0.8), transparent); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ════════ TRUST STRIP ════════ */
.trust-strip {
  background: var(--bg-card);
  border-top: 3px solid var(--orange);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--pad-x);
}
.trust-strip-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: stretch; justify-content: space-between;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.75rem 1rem; flex: 1; min-width: 200px;
  transition: background 0.2s;
}
.trust-item:hover { background: var(--orange-dim2); }
.trust-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--orange-dim); border: 1px solid var(--orange-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.1rem; flex-shrink: 0;
  transition: all 0.3s;
}
.trust-item:hover .trust-icon { background: var(--orange); color: #fff; }
.trust-label { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.trust-sub { font-size: 0.7rem; color: var(--muted); margin-top: 2px; }
.trust-divider { width: 1px; background: var(--border); align-self: stretch; flex-shrink: 0; }

/* ════════ SERVICES ════════ */
.services {
  padding: var(--section-y) var(--pad-x);
  background: var(--bg);
}
.services-inner { max-width: var(--max-w); margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--orange-border);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .service-icon {
  background: var(--orange); border-color: var(--orange);
}
.service-card:hover .service-icon svg { stroke: #fff; }

.service-card--wide { grid-column: span 3; cursor: default; }
.service-card--wide .service-content {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 1.75rem; align-items: center;
}
.service-card--wide .service-icon { margin-bottom: 0; }
.service-card--wide h3 { margin-bottom: 0.3rem; }

.service-number {
  position: absolute; top: 1.25rem; right: 1.75rem;
  font-family: var(--font-display); font-size: 4rem;
  font-weight: 700; color: rgba(0,0,0,0.04);
  line-height: 1; pointer-events: none; transition: color 0.4s;
}
.service-card:hover .service-number { color: rgba(232,128,28,0.06); }

.service-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--orange-dim); border: 1.5px solid var(--orange-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: all 0.35s; flex-shrink: 0;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--orange); transition: stroke 0.35s; }

.service-card h3 {
  font-family: var(--font-display); font-size: 1.35rem;
  color: var(--ink); font-weight: 600; margin-bottom: 0.65rem;
}
.service-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.1em; transition: gap 0.25s;
}
.service-link:hover { gap: 0.7rem; }

/* "Explore" badge on hover for modal cards */
.service-card:not(.service-card--wide)::before {
  content: 'Click to Explore';
  position: absolute; top: 1rem; right: 1rem;
  background: var(--orange); color: #fff;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.22rem 0.65rem; border-radius: 20px;
  opacity: 0; transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none; z-index: 3;
}
.service-card:not(.service-card--wide):hover::before { opacity: 1; transform: translateY(0); }

/* ════════ SERVICE MODAL ════════ */
.service-modal-overlay {
  position: fixed; inset: 0; z-index: 1800;
  background: rgba(20,16,12,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
  padding: 2rem;
}
.service-modal-overlay.open {
  opacity: 1; pointer-events: all;
}
.service-modal {
  background: var(--bg-card);
  border-radius: var(--radius);
  width: 100%; max-width: 900px;
  max-height: 88vh; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45);
  display: flex; flex-direction: column;
  transform: scale(0.93) translateY(20px);
  transition: transform 0.45s var(--ease-back);
}
.service-modal-overlay.open .service-modal {
  transform: scale(1) translateY(0);
}
.service-modal-hero {
  position: relative; height: 260px; overflow: hidden; flex-shrink: 0;
}
.service-modal-anim {
  position: absolute; inset: 0;
}
.service-modal-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,16,12,0.15), rgba(20,16,12,0.7));
  z-index: 2;
}
.service-modal-title-wrap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 2rem; z-index: 3;
}
.service-modal-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #fff;
  background: rgba(232,128,28,0.7); border: 1px solid rgba(232,128,28,0.5);
  padding: 0.28rem 0.75rem; border-radius: 20px; margin-bottom: 0.6rem;
}
.service-modal-title-wrap h3 {
  font-family: var(--font-display); font-size: 2rem;
  color: #fff; font-weight: 700; line-height: 1.1; margin: 0;
}
.service-modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.service-modal-close:hover { background: rgba(0,0,0,0.65); }
.service-modal-body {
  padding: 2rem 2.25rem 2.25rem;
  overflow-y: auto;
}
.service-modal-body p {
  font-size: 0.92rem; color: var(--muted); line-height: 1.9;
  margin-bottom: 1.5rem;
}
.service-modal-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.service-modal-feature {
  display: flex; align-items: center; gap: 0.65rem;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.7rem 1rem;
  font-size: 0.8rem; font-weight: 500; color: var(--ink-2);
}
.service-modal-feature i { color: var(--orange); font-size: 0.75rem; flex-shrink: 0; }
.service-modal-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: #fff;
  padding: 0.9rem 2rem; border-radius: 40px;
  font-size: 0.85rem; font-weight: 700;
  transition: all 0.3s; box-shadow: 0 6px 20px rgba(37,211,102,0.3);
  text-decoration: none;
}
.service-modal-cta:hover {
  background: #22c35e; transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

/* ── Service modal: mobile ── */
@media (max-width: 640px) {
  .service-modal-overlay { padding: 0; align-items: flex-end; }
  .service-modal {
    max-width: 100%; border-radius: var(--radius) var(--radius) 0 0;
    max-height: 92vh;
  }
  .service-modal-hero { height: 180px; }
  .service-modal-title-wrap h3 { font-size: 1.5rem; }
  .service-modal-body { padding: 1.4rem 1.25rem 1.75rem; }
  .service-modal-features { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ── Animated backgrounds per service ── */

/* Awnings: flowing fabric wave */
.svc-anim--awnings {
  background: linear-gradient(135deg, #1a0f06 0%, #3d1f08 100%);
  overflow: hidden;
}
.svc-anim--awnings::before {
  content: '';
  position: absolute; inset: -50%; 
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 18px,
    rgba(232,128,28,0.12) 18px, rgba(232,128,28,0.12) 36px
  );
  animation: fabricScroll 4s linear infinite;
}
.svc-anim--awnings::after {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 120% 60% at 50% 140%, rgba(232,128,28,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 20% -10%, rgba(255,160,60,0.2) 0%, transparent 50%);
  animation: awningPulse 5s ease-in-out infinite alternate;
}
@keyframes fabricScroll { from { transform: translate(0,0); } to { transform: translate(36px,36px); } }
@keyframes awningPulse {
  from { opacity: 0.7; transform: scaleY(1); }
  to { opacity: 1; transform: scaleY(1.08); }
}

/* Blinds: venetian slat effect */
.svc-anim--blinds {
  background: #0f1a24;
  overflow: hidden;
}
.svc-anim--blinds::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(232,128,28,0.08) 0px, rgba(232,128,28,0.08) 12px,
    rgba(255,255,255,0.04) 12px, rgba(255,255,255,0.04) 14px,
    transparent 14px, transparent 26px
  );
  animation: blindsSlide 6s ease-in-out infinite alternate;
}
.svc-anim--blinds::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,128,28,0.3) 0%, transparent 60%, rgba(100,60,20,0.4) 100%);
}
@keyframes blindsSlide {
  from { transform: translateY(-12px); }
  to { transform: translateY(0); }
}

/* Carports: structural steel grid */
.svc-anim--carports {
  background: #111820;
  overflow: hidden;
}
.svc-anim--carports::before {
  content: '';
  position: absolute; inset: -100%;
  background: 
    repeating-linear-gradient(90deg, rgba(232,128,28,0.15) 0, rgba(232,128,28,0.15) 2px, transparent 2px, transparent 80px),
    repeating-linear-gradient(180deg, rgba(232,128,28,0.15) 0, rgba(232,128,28,0.15) 2px, transparent 2px, transparent 80px);
  animation: gridExpand 8s ease-in-out infinite alternate;
}
.svc-anim--carports::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 110%, rgba(232,128,28,0.4) 0%, transparent 60%);
}
@keyframes gridExpand {
  from { transform: scale(1) rotate(0deg); opacity: 0.7; }
  to { transform: scale(1.06) rotate(1deg); opacity: 1; }
}

/* Shadeports: tensile fabric ripple */
.svc-anim--shadeports {
  background: linear-gradient(150deg, #0a1a14, #122010);
  overflow: hidden;
}
.svc-anim--shadeports::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 160% 60% at 50% 0%, rgba(37,180,80,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 80% 80% at 80% 80%, rgba(232,128,28,0.2) 0%, transparent 50%);
  animation: shadeRipple 5s ease-in-out infinite alternate;
}
.svc-anim--shadeports::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-radial-gradient(ellipse 200% 100% at 50% -20%, transparent 0%, transparent 30%, rgba(37,180,80,0.05) 31%, transparent 32%);
  animation: shadeWave 7s linear infinite;
}
@keyframes shadeRipple {
  from { transform: scaleX(1) translateY(0); }
  to { transform: scaleX(1.04) translateY(8px); }
}
@keyframes shadeWave {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

/* Pergolas: lattice wood texture */
.svc-anim--pergolas {
  background: linear-gradient(135deg, #1a120a, #2e1e0e);
  overflow: hidden;
}
.svc-anim--pergolas::before {
  content: '';
  position: absolute; inset: -50%;
  background: 
    repeating-linear-gradient(0deg, transparent 0px, transparent 38px, rgba(185,120,50,0.2) 38px, rgba(185,120,50,0.2) 42px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 38px, rgba(185,120,50,0.2) 38px, rgba(185,120,50,0.2) 42px);
  animation: latticeFloat 10s linear infinite;
}
.svc-anim--pergolas::after {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 30% 100%, rgba(232,128,28,0.35) 0%, transparent 55%),
    linear-gradient(to top, rgba(232,128,28,0.15), transparent);
}
@keyframes latticeFloat {
  from { transform: translate(0,0) rotate(0deg); }
  to { transform: translate(10px,10px) rotate(0.5deg); }
}

/* Shutters: louvre rotation effect */
.svc-anim--shutters {
  background: linear-gradient(135deg, #0e1820, #1a2836);
  overflow: hidden;
}
.svc-anim--shutters::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -10deg,
    transparent 0px, transparent 16px,
    rgba(100,160,220,0.08) 16px, rgba(100,160,220,0.08) 18px
  );
  animation: shutterAngle 4s ease-in-out infinite alternate;
}
.svc-anim--shutters::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 60% at 70% 110%, rgba(232,128,28,0.4) 0%, transparent 55%);
}
@keyframes shutterAngle {
  from { transform: skewY(-2deg) scaleX(1); }
  to { transform: skewY(2deg) scaleX(1.03); }
}


/* ════════ EXPERIENCE DUAL CARDS ════════ */
.experience {
  padding: var(--section-y) var(--pad-x);
  background: var(--bg-2);
}
.experience-inner { max-width: var(--max-w); margin: 0 auto; }

.exp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; margin-top: 3rem; }

.exp-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; min-height: 520px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  box-shadow: var(--shadow-md);
}
.exp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.exp-card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.7s var(--ease), filter 0.5s;
}
.exp-card:hover .exp-card-bg { transform: scale(1.05); filter: brightness(0.6); }

/* Outdoor card — Patio_1.jpg: aluminium louvred patio cover, exterior, correct */
.exp-card--outdoor .exp-card-bg {
  background-image: url('images/Patio_1.jpg');
  filter: brightness(0.55) saturate(0.9);
}
/* Indoor card — Indoor_2.jpg: enclosed patio with clear PVC zip blinds facing garden */
.exp-card--indoor .exp-card-bg {
  background-image: url('images/Indoor_2.jpg');
  filter: brightness(0.55) saturate(0.9);
}

.exp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,15,10,0.92) 30%, rgba(20,15,10,0.15) 100%);
  z-index: 2;
}
.exp-card-body { position: relative; z-index: 3; padding: 2.25rem; }

.exp-card-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange);
  padding: 0.38rem 0.9rem; border-radius: 20px;
  background: rgba(232,128,28,0.18); border: 1px solid var(--orange-border);
  margin-bottom: 1rem;
}
.exp-card h3 {
  font-family: var(--font-display); font-size: 2rem;
  color: #fff; font-weight: 700; margin-bottom: 0.7rem; line-height: 1.1;
}
.exp-card p { font-size: 0.86rem; color: rgba(255,255,255,0.82); line-height: 1.8; margin-bottom: 1.25rem; }
.exp-features { list-style: none; margin-bottom: 1.75rem; }
.exp-features li {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.8); padding: 0.35rem 0;
}
.exp-features li i { color: var(--orange); font-size: 0.65rem; }

.exp-card-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #fff; color: var(--ink);
  padding: 0.85rem 1.9rem; border-radius: 40px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
  transition: all 0.3s; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.exp-card-btn:hover {
  background: var(--orange); color: #fff;
  transform: translateY(-2px); box-shadow: var(--shadow-orange);
}

/* ════════ PROCESS ════════ */
.process {
  padding: var(--section-y) var(--pad-x);
  background: var(--bg-dark);
  position: relative; overflow: hidden;
}
.process::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 10% 100%, rgba(232,128,28,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 0%, rgba(232,128,28,0.08) 0%, transparent 50%);
}
.process-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.process .section-header .eyebrow { color: var(--orange); }
.process .section-header h2 { color: #fff; }
.process .section-header .section-sub { color: rgba(255,255,255,0.5); }

/* Large descriptive visual process */
.process-visual {
  margin-top: 4rem;
  position: relative;
}

/* Central timeline line */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute; left: 50%; transform: translateX(-50%);
  top: 60px; bottom: 60px; width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(232,128,28,0.3), transparent);
}

.process-timeline-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.25rem 0;
}
.process-timeline-row:nth-child(even) .ptl-content { order: 3; }
.process-timeline-row:nth-child(even) .ptl-empty { order: 1; }
.process-timeline-row:nth-child(even) .ptl-node { order: 2; }

.ptl-content {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease);
  position: relative;
}
.ptl-content:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--orange-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.ptl-content-step {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 0.65rem;
}
.ptl-content h4 {
  font-family: var(--font-display); font-size: 1.2rem;
  color: #fff; font-weight: 700; margin-bottom: 0.45rem; line-height: 1.15;
}
.ptl-content p {
  font-size: 0.84rem; color: rgba(255,255,255,0.6); line-height: 1.75;
  margin-bottom: 0;
}
.ptl-details {
  list-style: none; display: flex; flex-direction: column; gap: 0.45rem;
}
.ptl-details li {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.7);
}
.ptl-details li::before {
  content: '';
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(232,128,28,0.2); border: 1px solid rgba(232,128,28,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%23E8801C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
}

.ptl-empty { /* spacer on opposite side */ }

.ptl-node {
  display: flex; flex-direction: column; align-items: center; gap: 0; z-index: 2;
}
.ptl-node-circle {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--bg-dark);
  border: 3px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(232,128,28,0.08), 0 0 30px rgba(232,128,28,0.2);
  animation: nodePulse 3.5s ease-in-out infinite;
  color: var(--orange); font-size: 1.4rem;
  position: relative; z-index: 2; background: #1C1814;
}
@keyframes nodePulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(232,128,28,0.08), 0 0 30px rgba(232,128,28,0.2); }
  50% { box-shadow: 0 0 0 14px rgba(232,128,28,0.04), 0 0 50px rgba(232,128,28,0.35); }
}
.ptl-node-num {
  font-family: var(--font-display); font-size: 0.62rem; font-weight: 700;
  color: rgba(255,255,255,0.25); letter-spacing: 0.12em; margin-top: 0.4rem;
}

/* Visual mini-illustration in each card */
.ptl-illustration {
  position: absolute; top: 1.5rem; right: 1.75rem;
  width: 52px; height: 52px;
  background: rgba(232,128,28,0.08); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(232,128,28,0.4); font-size: 1.6rem;
}

/* Final outcome row */
.process-outcome {
  margin-top: 3.5rem; text-align: center;
  background: linear-gradient(135deg, rgba(232,128,28,0.12), rgba(232,128,28,0.06));
  border: 1px solid rgba(232,128,28,0.25); border-radius: var(--radius);
  padding: 2.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 3rem;
  flex-wrap: wrap;
}
.process-outcome-text { text-align: left; }
.process-outcome--centered {
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 1.75rem;
}
.process-outcome--centered .process-outcome-text { text-align: center; }
.process-outcome-text h4 {
  font-family: var(--font-display); font-size: 1.6rem;
  color: #fff; font-weight: 700; margin-bottom: 0.4rem;
}
.process-outcome-text p { font-size: 0.87rem; color: rgba(255,255,255,0.55); }
.process-outcome-stats {
  display: flex; gap: 3rem; flex-shrink: 0;
}
.poc-stat { text-align: center; }
.poc-stat-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: var(--orange); line-height: 1;
}
.poc-stat-label { font-size: 0.68rem; color: rgba(255,255,255,0.4); margin-top: 3px; letter-spacing: 0.1em; }
.process-outcome-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: #fff;
  padding: 0.9rem 2rem; border-radius: 40px;
  font-size: 0.85rem; font-weight: 700; flex-shrink: 0;
  transition: all 0.3s; box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.process-outcome-cta:hover {
  background: #22c35e; transform: translateY(-2px);
}

@media (max-width: 820px) {
  .process-timeline::before { left: 30px; }
  .process-timeline-row { grid-template-columns: 60px 1fr; gap: 1.25rem; }
  /* Force node into the 60px left column, content into the 1fr right column for ALL rows */
  .process-timeline-row .ptl-node   { order: 1 !important; }
  .process-timeline-row .ptl-content { order: 2 !important; }
  .process-timeline-row .ptl-empty  { display: none !important; }
  .ptl-node { flex-direction: row; justify-content: flex-start; }
  .ptl-node-circle { width: 52px; height: 52px; font-size: 1.1rem; }
  .process-outcome { flex-direction: column; text-align: center; }
  .process-outcome-text { text-align: center; }
}

/* ════════ GALLERY ════════ */
.gallery {
  padding: var(--section-y) var(--pad-x);
  background: var(--bg-2);
}
.gallery-inner { max-width: var(--max-w); margin: 0 auto; }

/* Category tabs */
.gallery-tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Per-tab accent colours — used for the SVG icon */
.gallery-tab:nth-child(1) { --tab-color: #E8801C; } /* Patio  — brand orange  */
.gallery-tab:nth-child(2) { --tab-color: #4A9FE5; } /* Blinds — sky blue      */
.gallery-tab:nth-child(3) { --tab-color: #27AE60; } /* Lapas  — forest green  */
.gallery-tab:nth-child(4) { --tab-color: #E74C3C; } /* Shadeports — coral red */
.gallery-tab:nth-child(5) { --tab-color: #9B59B6; } /* Canvas — purple        */

.gallery-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease),
              background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

/* SVG icon inherits the tab's accent colour when inactive */
.gallery-tab .tab-svg {
  color: var(--tab-color);
  flex-shrink: 0;
  transition: color 0.2s var(--ease);
}

.gallery-tab:hover:not(.active) {
  border-color: var(--tab-color);
  background: color-mix(in srgb, var(--tab-color) 8%, transparent);
}

/* When active: button fills with tab's colour, icon turns white */
.gallery-tab.active {
  background: var(--tab-color);
  border-color: var(--tab-color);
  color: #fff;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--tab-color) 45%, transparent);
  animation: tabPop 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.gallery-tab.active .tab-svg { color: #fff; }

@keyframes tabPop {
  0%   { transform: scale(0.88); }
  55%  { transform: scale(1.08); }
  78%  { transform: scale(0.97); }
  100% { transform: scale(1); }
}

.gallery-cta-row {
  text-align: center; margin-top: 2.5rem;
}

/* ── Photo grid (below the expanding panels) ── */
.gallery-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  min-height: 0;
  transition: opacity 0.22s ease;
}
.gallery-photos.is-fading { opacity: 0; pointer-events: none; }

.gallery-photo-cell {
  border-radius: var(--radius-sm); overflow: hidden;
  position: relative; cursor: zoom-in;
  background: var(--bg-3); box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-photo-cell:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.gallery-photo-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s;
  display: block;
}
.gallery-photo-cell:hover img { transform: scale(1.06); filter: brightness(0.82); }

.gallery-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,22,20,0.82) 0%, rgba(26,22,20,0.15) 55%, transparent 100%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 1.25rem;
}
.gallery-photo-cell:hover .gallery-photo-overlay { opacity: 1; }
.gallery-photo-title {
  font-size: 0.82rem; font-weight: 700; color: #fff;
  letter-spacing: 0.05em; text-transform: uppercase; display: block;
}
.gallery-photo-sub {
  font-size: 0.7rem; color: rgba(255,255,255,0.65);
  margin-top: 3px; display: block;
}

/* Gallery responsive */
@media (max-width: 860px) {
  .gallery-photos { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .gallery-photos { grid-template-columns: 1fr; }
  .gallery-tab span { display: none; }
  .gallery-tab { padding: 0.75rem 1.1rem; }
}


/* ════════ ABOUT ════════ */
.about {
  padding: var(--section-y) var(--pad-x);
  background: var(--bg);
}
.about-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 6rem; align-items: center;
}

.about-visual { position: relative; }
.about-img-frame {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-3);
  min-height: 600px;
  display: flex;
}
.about-img-frame picture { width: 100%; display: flex; }
.about-img-frame img { 
  width: 100%; height: 100%; object-fit: cover; 
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
}
.about-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--orange); border-radius: var(--radius-sm);
  padding: 1.4rem 1.8rem;
  box-shadow: var(--shadow-orange);
}
.about-badge-num {
  font-family: var(--font-display); font-size: 2.6rem;
  font-weight: 700; color: #fff; display: block; line-height: 1;
}
.about-badge-label {
  font-size: 0.67rem; font-weight: 700; color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: 0.15em; margin-top: 2px;
}
.about-accent-line {
  position: absolute; top: 2.5rem; left: -1.5rem;
  width: 3px; height: 55%; background: linear-gradient(to bottom, var(--orange), transparent);
  border-radius: 2px;
}

.about-text h2 { margin-bottom: 1.4rem; }
.about-text > p {
  font-size: 0.92rem; color: var(--muted); line-height: 1.9;
  font-weight: 300; margin-bottom: 1.1rem;
}
.about-text > p strong { color: var(--ink); font-weight: 700; }

.about-quote {
  border-left: 3px solid var(--orange); padding: 1.35rem 1.6rem;
  margin: 2rem 0; background: var(--orange-dim2);
  border-radius: 0 10px 10px 0;
}
.about-quote blockquote {
  font-family: var(--font-display); font-size: 1.05rem; font-style: italic;
  color: var(--ink-2); line-height: 1.7; margin-bottom: 0.6rem;
}
.about-quote cite { font-size: 0.72rem; color: var(--orange); letter-spacing: 0.1em; font-style: normal; }

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.why-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--bg-2); padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  transition: all 0.3s;
}
.why-item:hover { border-color: var(--orange-border); background: var(--orange-dim2); }
.why-num {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; color: var(--orange); flex-shrink: 0; line-height: 1;
}
.why-title { font-size: 0.8rem; font-weight: 700; color: var(--ink); margin-bottom: 0.2rem; }
.why-desc { font-size: 0.73rem; color: var(--muted); line-height: 1.6; }

/* ════════ TESTIMONIALS ════════ */
.testimonials {
  padding: var(--section-y) var(--pad-x);
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.testimonials-inner { max-width: var(--max-w); margin: 0 auto; }

.testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem; margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.25rem;
  box-shadow: var(--shadow-sm); transition: all 0.4s var(--ease);
}
.testimonial-card:hover {
  border-color: var(--orange-border); transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card--cta {
  background: linear-gradient(135deg, var(--orange-dim), var(--orange-dim2));
  border-color: var(--orange-border);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 1.1rem;
}
.testimonial-card--cta p { color: var(--ink-2); font-size: 0.95rem; font-weight: 500; }
.review-link {
  color: var(--orange); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.06em; display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.25s;
}
.review-link:hover { gap: 0.7rem; }

.stars { color: var(--orange); font-size: 1rem; margin-bottom: 1.1rem; letter-spacing: 0.08em; }
.testimonial-card blockquote {
  font-size: 0.88rem; color: var(--muted); line-height: 1.85;
  font-style: italic; margin-bottom: 1.25rem;
}
.reviewer { font-size: 0.78rem; font-weight: 700; color: var(--ink); }
.reviewer span { display: block; font-weight: 400; color: var(--muted); margin-top: 2px; }

/* ════════ AREA ════════ */
.area {
  padding: var(--section-y) var(--pad-x);
  background: var(--bg);
}
.area-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center;
}
.area-text h2 { margin-bottom: 1.4rem; }
.area-text > p {
  font-size: 0.92rem; color: var(--muted); line-height: 1.85;
  margin-bottom: 2rem; font-weight: 300;
}
.area-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.area-tag {
  background: var(--bg-card); border: 1.5px solid var(--border);
  color: var(--ink-2); font-size: 0.77rem; font-weight: 500;
  padding: 0.45rem 1rem; border-radius: 30px; transition: all 0.25s;
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.area-tag:hover, .area-tag.highlighted {
  background: var(--orange-dim); border-color: var(--orange-border);
  color: var(--orange); transform: translateY(-2px);
}

/* Interactive Map */
.area-visual { position: relative; }
.area-map-container {
  background: var(--bg-card);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  /* NOTE: overflow:hidden intentionally removed — it clips Leaflet tiles */
}
.area-map-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.area-map-header h4 {
  font-family: var(--font-display); font-size: 1rem; color: var(--ink);
}
.area-map-header p { font-size: 0.72rem; color: var(--muted); }
.area-map-svg-wrap {
  border-radius: 12px; overflow: hidden;
  background: #DFF0FA;
  border: 1px solid var(--border);
}
.area-svg-map {
  width: 100%; height: auto; display: block;
}
@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.55); opacity: 0; }
}
.pulse-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: pulseRing 2.8s ease-out infinite;
}
.area-map-legend {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem;
}
.map-legend-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; color: var(--muted); font-weight: 500;
  padding: 0.28rem 0.75rem; background: var(--bg-2);
  border-radius: 20px; border: 1px solid var(--border);
  cursor: pointer; transition: all 0.25s;
}
.map-legend-item:hover { border-color: var(--orange-border); color: var(--orange); }
.map-legend-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}
.area-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-top: 1rem;
}
.area-stat {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.1rem; text-align: center;
}
.area-stat-num {
  font-family: var(--font-display); font-size: 1.75rem;
  font-weight: 700; color: var(--ink);
}
.area-stat-num span { color: var(--orange); }
.area-stat-label { font-size: 0.68rem; color: var(--muted); margin-top: 2px; }

/* ════════ CTA SECTION ════════ */
.cta-section {
  padding: var(--section-y) var(--pad-x);
  background: var(--bg-dark); position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(232,128,28,0.15), transparent);
}
.cta-inner {
  max-width: 780px; margin: 0 auto; text-align: center; position: relative; z-index: 2;
}
.cta-inner h2 { color: #fff; font-size: clamp(2.4rem, 5vw, 4.2rem); margin-bottom: 1.1rem; }
.cta-inner h2 em { color: var(--orange); }
.cta-inner > p {
  font-size: 0.97rem; color: rgba(255,255,255,0.65); line-height: 1.85;
  margin-bottom: 2.75rem; max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-buttons { display: flex; justify-content: center; gap: 1.1rem; flex-wrap: wrap; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: #25D366; color: #fff;
  padding: 1.05rem 2.3rem; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.03em;
  transition: all 0.35s;
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #22c35e; transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.45);
}
.btn-call {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: transparent; color: #fff;
  padding: 1.05rem 2.3rem; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.2);
  font-weight: 600; font-size: 0.9rem;
  transition: all 0.3s; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-call:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* ════════ CONTACT ════════ */
.contact {
  padding: var(--section-y) var(--pad-x);
  background: var(--bg-2); border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 5rem;
}

.contact-form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 3rem;
  box-shadow: var(--shadow-md);
}
.contact-form-card h2 { font-size: clamp(1.7rem, 2.5vw, 2.2rem); margin-bottom: 2rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; margin-bottom: 0.45rem;
  font-size: 0.7rem; font-weight: 700; color: var(--ink-2);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.field label i { color: var(--orange); margin-right: 0.35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--ink);
  font-family: var(--font-body); font-size: 0.87rem;
  transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-dim);
}
.field select { cursor: pointer; }
.btn-submit {
  width: 100%; background: var(--orange); color: #fff;
  padding: 1rem; border: none; border-radius: 40px;
  font-size: 0.88rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  transition: all 0.35s; letter-spacing: 0.05em;
  box-shadow: var(--shadow-orange);
}
.btn-submit:hover {
  background: var(--orange-light); transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232,128,28,0.4);
}
.btn-submit.success { background: #22c35e; }

.contact-sidebar {}
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.25rem; margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.contact-card h4 {
  font-family: var(--font-display); font-size: 1.25rem;
  color: var(--ink); margin-bottom: 1.5rem;
}
.contact-item {
  display: flex; gap: 0.9rem; margin-bottom: 1.1rem; align-items: flex-start;
}
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--orange-dim); border: 1.5px solid var(--orange-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 0.88rem; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.8rem; color: var(--ink); font-weight: 700; }
.contact-item-text p { font-size: 0.78rem; color: var(--muted); margin-top: 1px; }
.contact-item-text a { color: var(--orange); }
.contact-item-text a:hover { text-decoration: underline; }

.support-box {
  background: var(--orange-dim); border: 1.5px solid var(--orange-border);
  border-radius: var(--radius); padding: 1.75rem;
  text-align: center; margin-bottom: 1.25rem;
}
.support-box i { font-size: 1.8rem; color: var(--orange); margin-bottom: 0.85rem; }
.support-box h5 { color: var(--ink); font-size: 0.88rem; margin-bottom: 0.4rem; }
.support-box p { font-size: 0.77rem; color: var(--muted); line-height: 1.7; }

.social-row { display: flex; gap: 0.65rem; }
.social-btn {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--bg-card); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1rem; transition: all 0.3s;
}
.social-btn:hover {
  background: var(--orange-dim); border-color: var(--orange-border);
  color: var(--orange); transform: translateY(-3px);
}

/* ════════ FAQ accordion ════════ */
.faq {
  padding: var(--section-y) var(--pad-x);
  background: var(--bg);
}
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-grid { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--bg-card);
  border: 1.1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item[open] {
  border-color: var(--orange-border);
  box-shadow: var(--shadow-md);
}
.faq-question {
  padding: 1.5rem 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: var(--bg-2); }
.faq-icon {
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); background: var(--orange);
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; transition: transform 0.4s; }
.faq-item[open] .faq-icon { transform: rotate(135deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer {
  padding: 0 2rem 1.75rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ════════ FOOTER ════════ */
footer {
  background: var(--bg-dark);
  padding: 5rem var(--pad-x) 2.5rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem;
  margin-bottom: 3.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 46px; width: auto; margin-bottom: 1.4rem; }
.footer-brand > p { font-size: 0.81rem; color: rgba(255,255,255,0.5); line-height: 1.85; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.82rem; transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--orange-dim); border-color: var(--orange-border);
  color: var(--orange); transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 0.68rem; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a {
  font-size: 0.8rem; color: rgba(255,255,255,0.45); transition: all 0.25s;
  display: inline-block;
}
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.6rem;
}
.footer-bottom p { font-size: 0.73rem; color: rgba(255,255,255,0.3); }
.footer-credit { color: var(--orange) !important; }

/* ════════ FLOATING WHATSAPP ════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4); z-index: 800;
  transition: all 0.35s var(--ease);
  animation: waPulse 3.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,0.55); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ════════ LIGHTBOX ════════ */
.lightbox {
  position: fixed; inset: 0; background: rgba(26,22,20,0.94);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius-sm); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; width: 46px; height: 46px; border-radius: 50%;
  font-size: 1.3rem; cursor: pointer; transition: background 0.2s;
  line-height: 1; display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ════════ REVEAL ANIMATION ════════ */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .exp-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card--wide { grid-column: span 2; }
  .service-card--wide .service-content { grid-template-columns: 54px 1fr; }
  .service-card--wide .service-content .service-link { grid-column: 1 / -1; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .area-inner { grid-template-columns: 1fr; }
  /* gallery tabs wrap naturally on smaller screens */
}
@media (max-width: 640px) {
  #main-nav { width: calc(100% - 24px); padding: 0 18px; border-radius: 40px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 88px; left: 12px; right: 12px;
    background: rgba(250,250,248,0.98); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.25rem;
    box-shadow: var(--shadow-lg); z-index: 899;
  }
  .nav-links.open li { border-bottom: 1px solid var(--border); }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a { display: block; padding: 0.8rem 0; font-size: 0.88rem; }
  .nav-links.open .nav-cta { width: 100%; justify-content: center; margin-top: 0.5rem; }
  .nav-toggle { display: flex; }
  .trust-strip-inner { flex-direction: column; }
  .trust-divider { display: none; }
  .trust-item { border-bottom: 1px solid var(--border); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: span 1; }
  .service-card--wide .service-content { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* ════════ BLUEPRINT V2.4 UI ADDITIONS ════════ */

/* Announcement Banner */
.announcement-banner {
  background: var(--ink);
  color: #fff;
  padding: 8px var(--pad-x);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  position: relative;
  z-index: 1000;
}
.banner-content span {
  display: inline-block;
  transition: opacity 0.4s ease;
}

/* Cookie Consent */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  animation: slideUp 0.5s var(--ease-back);
}
.cookie-content p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.cookie-btns {
  display: flex;
  gap: 0.75rem;
}
.btn-cookie {
  flex: 1;
  padding: 0.65rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-cookie.accept { background: var(--orange); color: #fff; }
.btn-cookie.accept:hover { background: var(--orange-light); }
.btn-cookie.decline { background: var(--bg-2); color: var(--muted); border: 1px solid var(--border); }
.btn-cookie.decline:hover { background: var(--bg-3); }

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Standardized scroll behavior with syncScrollPadding */
:root {
  scroll-padding-top: var(--nav-h, 100px);
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}


/* ════════ FOCUS VISIBLE — keyboard navigation ════════ */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ════════ WILL-CHANGE — GPU promotion for animated elements ════════ */
.wa-float,
.pulse-ring,
.hero-particles {
  will-change: transform;
}

/* ════════ PREFERS-REDUCED-MOTION ════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
