/* ═══════════════════════════════════════════════════════
   PRIME ASPHALT & COURTS — Design System
   Theme: Where Every Surface Begins
   Palette: Black & Gold Luxury
   Developed by Ritshuri Tech Solutions
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --black:        #080808;
  --black-2:      #101010;
  --black-3:      #1a1a1a;
  --black-4:      #242424;
  --black-5:      #2e2e2e;
  --gold:         #C9A84C;
  --gold-light:   #F0D080;
  --gold-dark:    #8B6914;
  --gold-glow:    rgba(201,168,76,0.25);
  --gold-subtle:  rgba(201,168,76,0.08);
  --white:        #FAFAFA;
  --muted:        #888;
  --muted-2:      #555;
  --green:        #4CAF50;
  --red:          #ef4444;

  --font-head:    'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    32px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.4);
  --shadow:       0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold:  0 8px 32px rgba(201,168,76,0.2);
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.6);

  --nav-h:        72px;
  --topbar-h:     44px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea {
  font-family: var(--font-body);
  outline: none;
}

/* ── SCROLL PROGRESS ────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 10000;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--gold);
}

/* Road lane marks on progress bar */
#scroll-progress::after {
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  width: 12px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--gold-light);
}

/* ── PAGE LOADER ────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.fade-out { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.loader-logo span { color: var(--gold); }

.loader-road {
  width: 300px;
  height: 60px;
  position: relative;
  overflow: hidden;
}
.loader-asphalt {
  width: 100%;
  height: 40px;
  background: var(--black-3);
  border-radius: 4px;
  position: relative;
  margin-top: 10px;
  border: 1px solid var(--black-5);
}
.loader-line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: roadLine 1.5s ease-in-out infinite;
}
.loader-roller {
  position: absolute;
  top: 0;
  left: -60px;
  width: 60px;
  height: 60px;
  animation: rollerMove 1.5s ease-in-out infinite;
}
.roller-body {
  width: 50px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 6px;
  position: absolute;
  top: 8px;
  left: 5px;
}
.roller-drum {
  width: 48px;
  height: 20px;
  background: linear-gradient(135deg, var(--black-4), var(--black-5));
  border: 2px solid var(--gold-dark);
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 6px;
}
.loader-text {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes roadLine {
  0% { left: -100%; width: 40%; }
  100% { left: 100%; width: 40%; }
}
@keyframes rollerMove {
  0% { left: -60px; }
  100% { left: 320px; }
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── TOP BAR ────────────────────────────────────── */
#top-bar {
  background: var(--gold);
  color: var(--black);
  height: var(--topbar-h);
  overflow: hidden;
  transition: height var(--transition), opacity var(--transition);
  position: relative;
  z-index: 900;
}
#top-bar.collapsed { height: 0; opacity: 0; pointer-events: none; }

/* ── DESKTOP TOPBAR ─────────────────────────────── */
.topbar-desktop {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
}
.topbar-mobile { display: none; }

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.topbar-item svg { flex-shrink: 0; }
.topbar-divider {
  width: 1px;
  height: 18px;
  background: rgba(0,0,0,0.2);
}
.topbar-socials { display: flex; align-items: center; gap: 0.6rem; }
.topbar-socials a {
  width: 26px;
  height: 26px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.topbar-socials a:hover { background: rgba(0,0,0,0.3); }
.topbar-stars { color: var(--black); }
.topbar-stars span { letter-spacing: -1px; color: var(--black); margin-right: 4px; }

/* ── MOBILE TICKER ──────────────────────────────── */
@media (max-width: 768px) {
  .topbar-desktop { display: none; }
  .topbar-mobile {
    display: flex;
    align-items: center;
    height: var(--topbar-h);
    overflow: hidden;
    position: relative;
  }
  /* Fade edges */
  .topbar-mobile::before,
  .topbar-mobile::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
  }
  .topbar-mobile::before {
    left: 0;
    background: linear-gradient(to right, var(--gold), transparent);
  }
  .topbar-mobile::after {
    right: 0;
    background: linear-gradient(to left, var(--gold), transparent);
  }
  .topbar-ticker {
    width: 100%;
    overflow: hidden;
  }
  .ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    white-space: nowrap;
    animation: ticker-scroll 28s linear infinite;
    font-size: 0.78rem;
    font-weight: 500;
  }
  .ticker-track:hover { animation-play-state: paused; }
  .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }
  .ticker-dot {
    font-size: 0.4rem;
    opacity: 0.5;
  }
  @keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}


/* ── NAVIGATION ─────────────────────────────────── */
#nav {
  position: relative;
  z-index: 800;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
#nav.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.2), 0 8px 32px rgba(0,0,0,0.5);
}
#nav.at-top {
  background: rgba(8,8,8,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  z-index: 1000;
}
.nav-logo-img {
  height: 90px;
  width: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: #000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6), 0 0 15px rgba(201,168,76,0.3);
  transform: translateY(12px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
.nav-logo:hover .nav-logo-img {
  transform: translateY(12px) scale(1.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.7), 0 0 25px rgba(201,168,76,0.5);
}

/* Footer logo */
.footer-logo-wrap {
  margin-bottom: 2rem;
  display: inline-block;
}
.footer-logo-img {
  height: 120px;
  width: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--gold);
  background: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(201,168,76,0.2);
  transition: transform var(--transition);
}
.footer-logo-wrap:hover .footer-logo-img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(250,250,250,0.8);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: var(--gold-subtle);
}
.nav-link.has-drop { cursor: pointer; }
.nav-link.has-drop::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.7;
}

/* Dropdown */
.nav-drop-wrap { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 0.75rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.nav-drop-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  color: rgba(250,250,250,0.75);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown a:hover { color: var(--gold); background: var(--gold-subtle); }
.nav-dropdown .drop-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0.4rem 0;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black) !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
  color: var(--black) !important;
}

/* Hamburger */
#nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
#nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
#nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-hamburger.open span:nth-child(2) { opacity: 0; }
#nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
#header-mount { display: contents; }

#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  z-index: 799;
  padding: 140px 2rem 3rem;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#mobile-nav.open { transform: translateX(0); display: flex; }
.mobile-link {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--gold); }
.mobile-sub {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  padding: 0.5rem 1rem;
  display: block;
}
.mobile-cta-wrap { margin-top: 1.5rem; }

/* ── HERO ───────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Diagonal panels */
.hero-panels {
  position: absolute;
  inset: 0;
  display: flex;
}
.hero-panel {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
  opacity: 0;
}
.hero-panel.active { opacity: 1; }
.hero-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.75) 0%, rgba(8,8,8,0.3) 60%, rgba(8,8,8,0.5) 100%);
}
.hero-panel-1 { background-image: url('../assets/hero-asphalt.jpg'); }
.hero-panel-2 { background-image: url('../assets/hero-tennis.jpg'); }
.hero-panel-3 { background-image: url('../assets/hero-paving.jpg'); }

/* Panel indicators */
.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.hero-dot {
  width: 32px;
  height: 3px;
  background: rgba(250,250,250,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.hero-dot.active {
  background: var(--gold);
  width: 64px;
}

/* Panel labels */
.hero-panel-label {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(8,8,8,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-family: var(--font-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 10;
  transition: opacity 0.4s ease;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-h1 .gold-text { color: var(--gold); }
.hero-h1 .outline-text {
  -webkit-text-stroke: 2px var(--gold);
  color: transparent;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(250,250,250,0.75);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
  display: block;
}
.hero-stat-stars {
  color: var(--gold);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.25rem;
}

/* ── FLOATING QUOTE CARD ─────────────────────────── */
#float-quote {
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(201,168,76,0.08);
  position: relative;
  z-index: 5;
}
.fq-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.fq-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.fq-field {
  margin-bottom: 1rem;
}
.fq-field label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.fq-field input,
.fq-field select {
  width: 100%;
  background: var(--black-4);
  border: 1px solid var(--black-5);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  color: var(--white);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}
.fq-field input:focus,
.fq-field select:focus {
  border-color: var(--gold);
}
.fq-field select option { background: var(--black-3); }

/* Fixed floating position on desktop */
@media (min-width: 1024px) {
  .hero-float-quote-wrap {
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
  }
}

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
}
.btn-gold:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  color: var(--black);
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(201,168,76,0.4);
  color: var(--gold);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-subtle);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; }

/* ── CONTAINER ──────────────────────────────────── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 7rem 0; }
.section-sm { padding: 5rem 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-subtle);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-title .gold { color: var(--gold); }
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── INTERACTIVE SERVICES ───────────────────────── */
.services-section { background: var(--black-2); }

.services-blocks { display: flex; flex-direction: column; gap: 0; }

.svc-block {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: background var(--transition-slow);
}
.svc-block:last-child { border-bottom: none; }

.svc-block-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 180px;
  align-items: center;
  padding: 2.5rem 3rem;
  position: relative;
  z-index: 2;
  gap: 3rem;
}

/* BG overlay on hover */
.svc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}
.svc-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.75) 50%, rgba(8,8,8,0.5) 100%);
}
.svc-block:hover .svc-bg { opacity: 1; }

.svc-number {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 1rem;
  right: 2rem;
  line-height: 1;
  transition: color var(--transition-slow);
}
.svc-block:hover .svc-number { color: rgba(201,168,76,0.08); }

.svc-icon-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.svc-icon {
  width: 70px;
  height: 70px;
  background: var(--black-4);
  border: 2px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-slow);
  flex-shrink: 0;
}
.svc-block:hover .svc-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold);
  transform: scale(1.08) rotate(5deg);
  box-shadow: var(--shadow-gold);
}
.svc-icon svg { transition: transform var(--transition); }
.svc-block:hover .svc-icon svg { transform: scale(1.1); }

.svc-label {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.svc-block:hover .svc-label { color: var(--gold); }

.svc-items {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.svc-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--transition);
}
.svc-block:hover .svc-item { color: rgba(250,250,250,0.85); }
.svc-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-dark);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background var(--transition);
}
.svc-block:hover .svc-item::before { background: var(--gold); }

.svc-arrow {
  margin-left: auto;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
  flex-shrink: 0;
}
.svc-block:hover .svc-arrow {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateX(4px);
}

/* ── ROAD TIMELINE ──────────────────────────────── */
.road-timeline-section { background: var(--black); overflow: hidden; }

.road-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.road-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--black-4);
  transform: translateX(-50%);
}
.road-track-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  transition: height 0.8s ease;
  height: 0%;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.timeline-item.visible { opacity: 1; transform: translateY(0); }
.timeline-item:nth-child(even) .timeline-card { grid-column: 3; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-empty { grid-column: 1; }

.timeline-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black-4);
  border: 3px solid var(--black-5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
  flex-shrink: 0;
  margin: 0 auto;
}
.timeline-node.lit {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.4);
}
.timeline-node.lit svg { color: var(--black); }

.timeline-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}
.timeline-card.lit {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 4px 24px rgba(201,168,76,0.1);
}
.timeline-step {
  font-size: 0.7rem;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.timeline-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.timeline-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── BEFORE AFTER SLIDER ────────────────────────── */
.ba-section { background: var(--black-2); }

.ba-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  user-select: none;
}
.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-after { clip-path: inset(0 50% 0 0); transition: none; }
.ba-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8,8,8,0.8);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 5;
}
.ba-label-before { left: 1.5rem; color: var(--muted); border: 1px solid rgba(255,255,255,0.1); }
.ba-label-after  { right: 1.5rem; color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  z-index: 10;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(201,168,76,0.5);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  cursor: ew-resize;
}
.ba-handle svg { color: var(--black); }

.ba-placeholder {
  width: 100%;
  padding-bottom: 55%;
  background: linear-gradient(135deg, var(--black-3) 0%, var(--black-4) 100%);
  position: relative;
}

/* ── CALCULATOR ─────────────────────────────────── */
.calc-section { background: var(--black); }

.calc-card {
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.calc-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.calc-field label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.calc-field input,
.calc-field select {
  width: 100%;
  background: var(--black-4);
  border: 1px solid var(--black-5);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.calc-field input:focus,
.calc-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.calc-field select option { background: var(--black-3); }

.calc-result {
  background: var(--black-4);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  display: none;
  animation: fadeUp 0.4s ease;
}
.calc-result.show { display: block; }
.calc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.calc-result-item label {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}
.calc-result-item .value {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}
.calc-result-item .solution {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

/* ── TRUST COUNTERS ─────────────────────────────── */
.counters-section { background: linear-gradient(135deg, var(--black-2) 0%, var(--black-3) 100%); }

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.counter-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--black-4);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.counter-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.counter-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition-slow);
}
.counter-card:hover::before { transform: scaleX(1); }
.counter-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-subtle);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}
.counter-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.counter-num .suffix { font-size: 1.8rem; }
.counter-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── TESTIMONIALS ───────────────────────────────── */
.testimonials-section { background: var(--black-2); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.testi-quote {
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-weight: 900;
}
.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
}
.testi-text {
  font-size: 0.95rem;
  color: rgba(250,250,250,0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
}
.testi-footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
}
.testi-project {
  font-size: 0.78rem;
  color: var(--muted);
}
.testi-badge {
  margin-left: auto;
  background: var(--gold-subtle);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ── FAQ ────────────────────────────────────────── */
.faq-section { background: var(--black); }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-q-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--black);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }
.faq-answer p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── TENNIS COURT BLUEPRINT ─────────────────────── */
.blueprint-section {
  background: #0a1628;
  position: relative;
  overflow: hidden;
}
.blueprint-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.court-svg-wrap {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.court-svg-wrap svg { width: 100%; height: auto; }

/* ── BRICK PATTERN SHOWCASE ─────────────────────── */
.brick-section { background: var(--black-2); }

.pattern-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.pattern-tab {
  background: var(--black-4);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0.65rem 1.4rem;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.pattern-tab:hover { color: var(--white); border-color: rgba(201,168,76,0.2); }
.pattern-tab.active {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold);
}

.pattern-preview {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(201,168,76,0.15);
}
.pattern-canvas {
  width: 100%;
  height: 100%;
}

/* ── WINDING ROAD PROCESS ───────────────────────── */
.process-section { background: var(--black-2); }

.process-road {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.process-road svg {
  width: 100%;
  height: auto;
}
.road-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.road-step {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.road-step.visible { opacity: 1; transform: translateY(0); }
.road-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--black-4);
  border: 2px solid var(--black-5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  transition: all 0.5s ease;
  color: var(--muted);
}
.road-step.active .road-step-num {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold);
  color: var(--black);
  box-shadow: 0 0 20px rgba(201,168,76,0.35);
}
.road-step-title {
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 0.4rem;
  transition: color 0.5s ease;
}
.road-step.active .road-step-title { color: var(--gold); }
.road-step-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── PROJECTS MAP ───────────────────────────────── */
.projects-section { background: var(--black); }

.projects-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--black-4);
  border: 2px solid transparent;
  border-radius: 100px;
  padding: 0.5rem 1.2rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { color: var(--white); border-color: rgba(201,168,76,0.2); }
.filter-btn.active {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}
.project-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.project-img {
  aspect-ratio: 16/10;
  background: var(--black-4);
  position: relative;
  overflow: hidden;
}
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-img img { transform: scale(1.05); }
.project-type-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.project-info { padding: 1.25rem; }
.project-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.project-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.project-meta span { display: flex; align-items: center; gap: 0.3rem; }

/* Project Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-xl);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition);
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  background: var(--black-4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: all var(--transition);
}
.modal-close:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* ── CONTACT SECTION ────────────────────────────── */
.contact-section { background: var(--black-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form {
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field {
  margin-bottom: 0;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--black-4);
  border: 1px solid var(--black-5);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select option { background: var(--black-3); }

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-info-item {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color var(--transition);
}
.contact-info-item:hover { border-color: rgba(201,168,76,0.2); }
.ci-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.ci-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.ci-value {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
}
.ci-value a { color: var(--white); transition: color var(--transition); }
.ci-value a:hover { color: var(--gold); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 0.5rem;
}
.map-embed iframe {
  width: 100%;
  height: 220px;
  display: block;
  border: none;
  filter: grayscale(1) invert(0.85) hue-rotate(180deg);
}

/* ── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--black-2);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 0.6rem;
}
.footer-social {
  padding: 0.5rem 1rem;
  background: var(--black-4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
}
.footer-social:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}
.footer-links a:hover { color: var(--white); transform: translateX(4px); }

.newsletter-input-wrap {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.newsletter-input-wrap input {
  flex: 1;
  background: var(--black-4);
  border: 1px solid var(--black-5);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  color: var(--white);
  font-size: 0.85rem;
  transition: border-color var(--transition);
}
.newsletter-input-wrap input:focus { border-color: var(--gold); }

/* Compliance Badge Strip */
.footer-badges-wrap {
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}
.footer-badges {
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.footer-badges-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 600;
  border-right: 1px solid rgba(201,168,76,0.3);
  padding-right: 2.5rem;
}
.footer-badges-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer-badge-item {
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition);
}
.footer-badge-item:hover { opacity: 1; transform: translateY(-2px); }

/* Logo card tiles — uniform white containers for compliance logos */
.logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border-radius: 8px;
  width: 130px;
  height: 80px;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 2px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.logo-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.2);
}
.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-card span {
  display: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--muted-2);
}
.footer-bottom .ritshuri {
  font-size: 0.82rem;
  color: var(--muted-2);
}
.footer-bottom .ritshuri a { color: var(--gold); }
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--muted-2);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--muted); }

/* ── FLOATING WHATSAPP ──────────────────────────── */
#wa-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.75rem;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 8000;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: float-bob 3s ease-in-out infinite;
}
#wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  animation: none;
}
@keyframes float-bob {
  0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)}
}

/* Back to top — road sign shape */
#back-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8000;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  color: var(--black);
}
#back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-top:hover { transform: translateY(-3px) scale(1.05); }

/* ── ANGLED DIVIDERS ────────────────────────────── */
.angled-top {
  clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0 100%);
  margin-top: -3rem;
  padding-top: 5rem !important;
}
.angled-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  padding-bottom: 5rem !important;
}

/* ── REVEAL ANIMATIONS ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── UTILITY ────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.flex { display: flex; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.items-center { align-items: center; }
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  margin: 1rem 0;
}
.gold-line.center { margin-inline: auto; }

/* ── INDUSTRIES ─────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.industry-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  opacity: 0;
  transition: opacity var(--transition-slow);
}
.industry-card:hover::before { opacity: 0.06; }
.industry-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.industry-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-subtle);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
  transition: all var(--transition);
  position: relative;
}
.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  transform: scale(1.08);
}
.industry-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  position: relative;
}
.industry-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  position: relative;
}

/* ── MINI PAGES (about, etc.) ───────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-3) 100%);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-badge {
  display: inline-block;
  background: var(--gold-subtle);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1200px) {
  .hero-content { grid-template-columns: 1fr 340px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: 1 / -1; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero-section { height: auto; min-height: auto; padding: 140px 0 80px; align-items: flex-start; }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  #float-quote { max-width: 100%; margin: 2rem auto 0; }
  .hero-panel-label { display: none; } /* Hide panel label to save space */
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .calc-grid { grid-template-columns: 1fr 1fr; }
  .svc-block-inner { grid-template-columns: 220px 1fr; padding: 2rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  #nav-hamburger { display: flex; }
  .topbar-inner { font-size: 0.85rem; justify-content: center; }
  .hide-m { display: none !important; }
  .hero-h1 { font-size: 2.2rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .svc-block-inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .svc-items { flex-direction: column; }
  .timeline-item { grid-template-columns: 44px 1fr; gap: 1rem; }
  .timeline-item .timeline-empty { display: none; }
  .timeline-item:nth-child(even) .timeline-card { grid-column: 2; }
  .road-steps { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-result-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 5rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-content { padding: 0 1.25rem; }
  .hero-h1 { font-size: 1.9rem; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .pattern-tabs { gap: 0.5rem; }
  .pattern-tab { padding: 0.5rem 0.9rem; font-size: 0.8rem; }
  .counters-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .road-steps { grid-template-columns: 1fr; }
}

/* ── CUSTOM SCROLLBAR ───────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--black-5); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ── SELECTION ──────────────────────────────────── */
::selection { background: rgba(201,168,76,0.25); color: var(--white); }
