/* ═══════════════════════════════════════════
   Capital Paving — Global Styles
   Dark/Gold theme · Satoshi + Oswald
   ═══════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --bg-page: #0a0a0a;
  --bg-surface: #111111;
  --bg-card: #141414;
  --bg-elevated: #1a1a1a;
  --bg-border: #222222;
  --bg-muted: #2a2a2a;

  --accent: #FECF01;
  --accent-dark: #FFAB00;
  --accent-dim: #C9A400;
  --accent-glow: rgba(254, 207, 1, 0.08);

  --text: #FFFFFF;
  --text-mid: #FFFFFF;
  --text-muted: #E8E8EC;
  --text-faint: #CDCDD4;

  --radius: 2px;
  --radius-lg: 16px;
  --max-w: 1400px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snappy: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-fluid: cubic-bezier(0.32, 0.72, 0, 1);

  /* Rauno-style tinted shadow system */
  --shadow-sm: 0 5px 10px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.25);
  --shadow-accent: 0 20px 40px -15px rgba(254, 207, 1, 0.08);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Satoshi', system-ui, sans-serif;
  font-size: 16px;
  background: var(--bg-page);
  color: var(--text-mid);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* Accessibility: Focus visible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Performance: Hardware acceleration for animated elements */
.service-card, .gallery-item, .btn-primary, .btn-ghost, .floating-cta {
  will-change: transform;
}

/* Accessibility: Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-clip, .reveal-word { opacity: 1; transform: none; clip-path: none; }
  .marquee-track { animation: none !important; }
  .testimonials-track { transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Taste-skill: Selection styling */
::selection {
  background: rgba(254, 207, 1, 0.25);
  color: var(--text);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-page); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── Grain Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── Typography ── */
.font-display { font-family: 'Oswald', sans-serif; }
h1, h2, h3, h4, h5 { font-family: 'Oswald', sans-serif; color: var(--text); line-height: 1.1; }

/* soft-skill: Eyebrow badge */
.section-label {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(254, 207, 1, 0.15);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--text);
}
.section-intro {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 60ch;
  margin-top: 1rem;
}

/* ── Layout ── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .section-inner { padding: 0 2.5rem; }
}
.section-pad {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (min-width: 768px) {
  .section-pad { padding-top: 8rem; padding-bottom: 8rem; }
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--accent);
  color: var(--bg-page);
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 9999px;
  transition: background 0.3s ease, transform 0.2s var(--ease-fluid);
}
/* Taste-skill: Tactile feedback with translate + scale on active */
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-primary:active { transform: scale(0.98) translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--text-faint);
  color: var(--text-mid);
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 9999px;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s var(--ease-fluid);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-ghost:active { transform: scale(0.98) translateY(0); }

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--bg-page);
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ═══ HEADER ═══ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.site-header.header-scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(40px) saturate(1.4);
  -webkit-backdrop-filter: blur(40px) saturate(1.4);
}
/* Glassmorphism nav on scroll */
.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(40px) saturate(1.4);
  -webkit-backdrop-filter: blur(40px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .header-inner { padding: 1rem 2.5rem; }
}

/* Logo — large by default, shrinks on scroll */
.logo-block { display: flex; align-items: center; }
.logo-img {
  height: 56px;
  width: auto;
  transition: height 0.3s var(--ease);
}
@media (min-width: 768px) { .logo-img { height: 72px; } }
.is-scrolled .logo-img { height: 44px; }
@media (min-width: 768px) { .is-scrolled .logo-img { height: 50px; } }

/* Nav */
.nav-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
}
.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}
.nav-toggle-bar {
  height: 2px;
  background: var(--text-mid);
  border-radius: 1px;
  transition: all 0.3s var(--ease);
}
.nav-toggle-bar:last-child { width: 14px; }

@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #111111;
  z-index: 60;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  gap: 0.5rem;
  overflow-y: auto;
}
.nav-menu.is-open { display: flex; }

@media (min-width: 1024px) {
  .nav-menu {
    display: flex !important;
    position: static;
    background: none;
    backdrop-filter: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 0;
    overflow: visible;
  }
}

.nav-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--text-mid);
}
@media (min-width: 1024px) { .nav-close { display: none; } }

.nav-menu-links { display: flex; flex-direction: column; gap: 0.25rem; }
@media (min-width: 1024px) {
  .nav-menu-links {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}

/* Award-winning-website: Directional sweep underline */
.nav-menu-links a,
.nav-dropdown-toggle {
  padding: 0.75rem 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
}
.nav-menu-links a::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
  right: 1rem;
  height: 1.5px;
  background: var(--accent);
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.nav-menu-links a:hover::after {
  transform-origin: bottom left;
  transform: scaleX(1);
}
.nav-menu-links a:hover,
.nav-dropdown-toggle:hover { color: var(--text); }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-dropdown-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  display: none;
  padding: 0.5rem 0 0.5rem 1.5rem;
}
.nav-dropdown-panel.is-open { display: block; }
@media (min-width: 1024px) {
  .nav-dropdown:hover .nav-dropdown-panel { display: block; }
  .nav-dropdown:hover .nav-dropdown-toggle { color: var(--text); }
}

@media (min-width: 1024px) {
  .nav-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid var(--bg-border);
    border-radius: var(--radius);
    padding: 1rem;
    min-width: 200px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: 70;
  }
}

.nav-dropdown-grid { display: flex; flex-direction: column; gap: 0.15rem; }
.nav-dropdown-grid a {
  padding: 0.5rem 0.75rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-dropdown-grid a:hover {
  background: var(--accent-glow);
  color: var(--accent);
}

.nav-dropdown-all {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--bg-border);
}
.nav-dropdown-all a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
}

/* Header CTA */
.header-cta,
.nav-menu-links a.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.5rem;
  background: var(--accent);
  color: #0a0a0a !important;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 9999px;
  transition: background 0.2s ease, transform 0.2s var(--ease-fluid);
}
.header-cta:hover,
.nav-menu-links a.header-cta:hover {
  background: var(--accent-dark);
  color: #0a0a0a !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(254, 207, 1, 0.3);
}
.header-cta:active { transform: scale(0.97); }
.header-cta--nav { margin-top: 1rem; align-self: flex-start; }
@media (min-width: 1024px) { .header-cta--nav { margin-top: 0; align-self: center; } }
.header-cta--drawer { display: none; }

/* Nav backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 49;
}
.nav-backdrop:not([hidden]) {
  display: block;
}

/* ═══ FOOTER ═══ */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--bg-border);
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer-brand-text {
  color: var(--text-faint);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 30ch;
  margin-top: 1rem;
}
.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  color: var(--text-faint);
  font-size: 1rem;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--bg-border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-legal { color: var(--text-faint); font-size: 1rem; }
.footer-legal-links { display: flex; gap: 1.5rem; }
.footer-legal-links a {
  color: var(--text-faint);
  font-size: 1rem;
  transition: color 0.2s ease;
}
.footer-legal-links a:hover { color: var(--accent); }

/* ═══ FOOTER QUICKBAR ═══ */
.footer-quickbar {
  background: var(--bg-card);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}
.quickbar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--bg-border);
}
@media (min-width: 768px) {
  .quickbar-grid { grid-template-columns: repeat(3, 1fr); }
}
.quickbar-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 2.5rem;
  background: var(--bg-card);
  transition: background 0.2s ease;
}
.quickbar-card:hover { background: var(--bg-elevated); }
.quickbar-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-glow);
  border: 1px solid rgba(254,207,1,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1.25rem;
}
.quickbar-text-main { color: var(--text); font-size: 1.1rem; font-weight: 500; }
.quickbar-text-sub { color: var(--text-faint); font-size: 1.05rem; margin-top: 0.2rem; }

/* ═══ HERO (sub-pages) ═══ */
.hero {
  position: sticky;
  top: 0;
  padding: 10rem 0 4rem;
  background: var(--bg-surface);
  overflow: hidden;
  z-index: 0;
}
.hero + * {
  position: relative;
  z-index: 1;
  background: var(--bg-page);
  border-radius: 1.5rem 1.5rem 0 0;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.5);
}
.hero ~ * {
  position: relative;
  z-index: 1;
  background: var(--bg-page);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(254,207,1,0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
}
.hero .hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero .hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.04;
}
.hero .hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-surface), transparent 50%),
              linear-gradient(to right, var(--bg-surface) 0%, transparent 60%);
  z-index: 1;
}
.hero .section-inner { position: relative; z-index: 3; }
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-faint);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.hero-breadcrumb a { transition: color 0.2s ease; }
.hero-breadcrumb a:hover { color: var(--accent); }
.hero-breadcrumb-sep { opacity: 0.4; }

/* ═══ SERVICE CARDS (double-bezel + tilt hover) ═══ */
.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 5px;
  transition: border-color 0.4s ease, transform 0.4s var(--ease-fluid), box-shadow 0.4s ease;
}
/* Inner content gets the solid background via img + body */
.service-card:hover {
  border-color: rgba(254,207,1,0.25);
  transform: perspective(1000px) rotateX(1deg) rotateY(-1deg) translateY(-6px);
  box-shadow: var(--shadow-accent), 0 30px 60px -20px rgba(0,0,0,0.4);
}
.service-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 5px) calc(var(--radius-lg) - 5px) 0 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body {
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 0 0 calc(var(--radius-lg) - 5px) calc(var(--radius-lg) - 5px);
}
.service-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.service-card-title a {
  color: inherit;
  transition: color 0.2s ease;
}
.service-card-title a:hover { color: var(--accent); }
.service-card-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-card-link {
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}
.service-card:hover .service-card-link { gap: 0.7rem; }

/* ═══ TRUST CARDS ═══ */
.trust-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .trust-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
/* Trust card — reusable component */
.trust-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-fluid);
}
/* Double-bezel variant (when .trust-card-inner is used) */
.trust-card:has(.trust-card-inner) {
  background: rgba(255, 255, 255, 0.02);
  padding: 5px;
}
.trust-card-inner {
  background: var(--bg-card);
  border-radius: calc(var(--radius-lg) - 5px);
  padding: 2rem 2.25rem;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.trust-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: -1;
}
.trust-card:nth-child(1) .trust-card-inner::before {
  background-image: url('../images/capital-paving-job-sign.jpg');
}
.trust-card:nth-child(2) .trust-card-inner::before {
  background-image: url('../images/asphalt-paving-road-wide.jpg');
}
.trust-card:nth-child(3) .trust-card-inner::before {
  background-image: url('../images/completed-residential-driveway.jpg');
}
.trust-card:hover {
  border-color: rgba(254,207,1,0.2);
  transform: translateY(-4px);
}
.trust-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border: 1px solid rgba(254,207,1,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.trust-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.trust-card-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ═══ TESTIMONIAL CARDS ═══ */
.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color 0.3s ease, transform 0.3s var(--ease-fluid);
}
.testimonial-card:hover {
  border-color: rgba(254,207,1,0.15);
  transform: translateY(-2px);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--accent);
}
.testimonial-text {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { color: var(--text); font-size: 1rem; font-weight: 500; }
.testimonial-role { color: var(--text-faint); font-size: 1rem; }

/* ═══ FAQ ACCORDION ═══ */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item:hover, .faq-item.is-open {
  border-color: rgba(254,207,1,0.15);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
}
.faq-trigger:hover { color: var(--accent); }
.faq-trigger-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--accent);
}
.faq-item.is-open .faq-trigger-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ═══ FORMS ═══ */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  color: var(--text-mid);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  padding: 0.85rem 1.1rem;
  font-size: 16px;
  border-radius: 10px;
  transition: border-color 0.2s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
}
.form-input::placeholder { color: var(--text-faint); }
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input { appearance: none; }

/* ═══ ANIMATION SYSTEM ═══ */

/* Base reveal: fade up with blur */
/* Zentry-inspired scroll reveals */
.reveal {
  opacity: 0;
  transform: translate3d(0, 50px, -30px) rotateX(8deg);
  transform-origin: 50% 100%;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0deg);
}

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translate3d(-60px, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translate3d(60px, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Scale up from center with clip-path */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  clip-path: polygon(8% 8%, 92% 8%, 92% 92%, 8% 92%);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Clip-path reveal from center - Zentry signature effect */
.reveal-clip {
  opacity: 0;
  clip-path: polygon(30% 20%, 70% 20%, 70% 80%, 30% 80%);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              clip-path 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-clip.visible {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* 3D word reveal - Zentry text effect */
.reveal-word {
  opacity: 0;
  transform: translate3d(10px, 40px, -50px) rotateY(30deg) rotateX(-15deg);
  transform-origin: 50% 50% -100px;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-word.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateY(0deg) rotateX(0deg);
}

/* Stagger children - each child delays incrementally */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.6s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.7s; }

/* Parallax scroll hint — elements that move slower than scroll */
.parallax-slow {
  transition: transform 0.1s linear;
}

/* ═══ CONTACT SECTION ═══ */
.contact-section {
  background: var(--bg-surface);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 5fr 7fr; }
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}
.contact-info-icon {
  align-self: stretch;
  padding: 0 1rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 5px;
}
.contact-form-inner {
  background: var(--bg-card);
  border-radius: calc(var(--radius-lg) - 5px);
  padding: 2rem;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
}
@media (min-width: 768px) {
  .contact-form-wrap { padding: 2.5rem; }
}

/* ═══ MOBILE CTA BAR ═══ */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--bg-page);
  border-top: 1px solid var(--bg-border);
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.5rem;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.mobile-cta-bar.is-visible { transform: translateY(0); }
.mobile-cta-bar .btn-primary,
.mobile-cta-bar .btn-ghost { flex: 1; text-align: center; padding: 0.75rem; font-size: 1rem; }
@media (min-width: 1024px) { .mobile-cta-bar { display: none; } }

/* ═══ FLOATING CTA ═══ */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 35;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-page);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(254,207,1,0.3);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
  pointer-events: none;
}
.floating-cta.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.floating-cta:hover { background: var(--accent-dark); }
@media (max-width: 1023px) { .floating-cta { display: none; } }

/* ═══ SERVICES GRID ═══ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══ GALLERY GRID ═══ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s var(--ease-fluid), box-shadow 0.4s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}
.gallery-item:hover img { transform: scale(1.05); }

/* ═══ OFFER BANNER ═══ */
.offer-banner {
  background: var(--accent-glow);
  border: 1px solid rgba(254,207,1,0.3);
  border-radius: var(--radius);
  padding: 0.6rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.offer-amount { color: var(--accent); font-weight: 700; font-size: 1.1rem; }
.offer-text { color: var(--text-mid); font-size: 1rem; }
