/* FRESH 1779597788 */
/* ══════════════════════════════════════════════════════════════
   ANTONIO PRIMESCAPE CONSTRUCTION — Premium Dark CSS v4.0
   ══════════════════════════════════════════════════════════════ */

/* ─── Modern CSS Variables (NO old/duplicate vars) ─── */
:root {
  --bg: #0a0a0a;
  --s2: #111;
  --s3: #1a1a1a;
  --b: rgba(255,255,255,0.06);
  --t: #fff;
  --t2: #ddd;
  --t3: #999;
  --accent: #E85C00;
  --ah: #f06a10;
  --ag: rgba(232,92,0,0.25);
  --g: rgba(255,255,255,0.04);
  --gb: rgba(255,255,255,0.08);
  --r: 12px;
  --tr: 0.5s cubic-bezier(0.16,1,0.3,1);
  --font: 'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  --glass-bg: rgba(255,255,255,0.03);
  --glass-border: rgba(255,255,255,0.06);
  --glass-blur: 20px;
  --gold: #FFAA00;
}

/* ─── Reset & Base ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: #0a0a0a;
  color: var(--t);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: #E85C00;
  text-decoration: none;
  transition: opacity .3s;
}
a:hover { opacity: .85; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(32px, 5vw, 56px); letter-spacing: -1px; }
h2 { font-size: clamp(24px, 3.5vw, 40px); }
h3 { font-size: clamp(18px, 2vw, 24px); }
p { color: #ccc; line-height: 1.8; }

/* ─── Touch Target Sizing ─── */
.touch-target {
  min-height: 44px;
  min-width: 44px;
}

/* ══════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(10,10,10,0.95), rgba(10,10,10,0.8));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 36px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo { display: flex; align-items: center; }
.logo img { height: 42px; width: auto; transition: opacity .3s; }

nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  color: #ccc;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color .3s;
}
nav a:hover { color: var(--t); }

.cta-button {
  background: #E85C00;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all .3s;
}
.cta-button:hover {
  background: var(--ah);
  box-shadow: 0 4px 20px var(--ag);
  transform: translateY(-1px);
}

/* ─── Breadcrumb (specificity-based, no !important) ─── */
nav.breadcrumb-nav {
  position: relative;
  top: 80px;
  padding: 0 36px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
  color: #666;
  background: transparent;
  border: none;
  backdrop-filter: none;
  display: flex;
  gap: 6px;
}
nav.breadcrumb-nav a {
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}
nav.breadcrumb-nav span { color: #555; }

/* ══════════════════════════════════════
   HERO — PREMIUM CINEMATOGRAPHIC
   ══════════════════════════════════════ */

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 160px 36px 100px;
  text-align: center;
}

/* Full-bleed background image */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/projects/hero-bg.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Hero overlay — gradient + vignette */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.92) 0%,
      rgba(10,10,10,0.55) 40%,
      rgba(10,10,10,0.70) 70%,
      rgba(10,10,10,0.95) 100%
    ),
    radial-gradient(ellipse 60% 40% at 50% 60%, transparent 30%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Subtle grid overlay (cinematic) */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,92,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,92,0,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 30%, transparent 70%);
}

/* Noise texture overlay (cinematic grain) */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  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");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

/* Legacy hero (service pages) */
.hero {
  background: linear-gradient(140deg, #0C0C0C 0%, #1a1a1a 55%, #222 100%);
  padding: 140px 36px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(232,92,0,.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}

.hero .hero-content p {
  font-size: clamp(15px, 1.3vw, 17px);
  color: #ddd;
  max-width: 580px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--ah);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--ag);
}

.btn-secondary {
  background: var(--g);
  border: 1px solid var(--gb);
  color: var(--t);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   TRUST BADGES
   ══════════════════════════════════════ */
.trust-badges {
  background: var(--s2);
  border-bottom: 1px solid var(--b);
  padding: 24px 36px;
}

.badges-container {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.badge { text-align: center; }

.badge-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  line-height: 1;
  margin-bottom: 2px;
  position: relative;
}
.badge-number::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.badge-text {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ══════════════════════════════════════
   SERVICE CARDS — GLASSMORPHISM
   ══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  padding: 0 36px;
  max-width: 1100px;
  margin: 48px auto;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Top border gradient — reveals on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .4s;
}

/* Bottom-left glow on hover */
.service-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,92,0,0.08), transparent 70%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(232,92,0,0.3);
  transform: translateY(-4px);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.3),
    0 0 20px rgba(232,92,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }

.service-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-price {
  font-size: 14px;
  color: var(--accent);
  font-weight: 700;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 12px;
  transition: gap .3s;
}
.service-link:hover { gap: 8px; }

/* Service card images */
.service-card img {
  transition: transform .6s cubic-bezier(.16,1,.3,1), opacity .4s;
}
.service-card:hover img { transform: scale(1.03); }

/* ══════════════════════════════════════
   TESTIMONIAL / REVIEWS SECTION
   ══════════════════════════════════════ */
.testimonial-section {
  padding: 80px 36px;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 30%, rgba(232,92,0,0.04), transparent 70%);
  pointer-events: none;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.testimonial-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.testimonial-header p {
  color: #888;
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(232,92,0,0.15), transparent 30%, rgba(232,92,0,0.08) 70%, transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity .4s;
}

.testimonial-card:hover::before { opacity: 1; }

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 20px rgba(232,92,0,0.06);
  border-color: rgba(232,92,0,0.15);
}

/* Gold stars for reviews */
.testimonial-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 14px;
  color: #bbb;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 16px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--ah));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.testimonial-location {
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════
   HAMBURGER MENU — MOBILE
   ══════════════════════════════════════ */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 9999;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #ccc;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger active state → X */
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: #fff;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: #fff;
}

/* Mobile overlay backdrop */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-overlay.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* Mobile nav — slide in from right */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: linear-gradient(180deg, rgba(15,15,15,0.98), rgba(10,10,10,0.99));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255,255,255,0.04);
  z-index: 9999;
  padding: 90px 28px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  display: block;
  visibility: hidden;
}

.mobile-nav.show {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-links a:hover {
  background: rgba(255,255,255,0.04);
  color: var(--accent);
  padding-left: 20px;
}

.mobile-nav-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}

.mobile-nav-cta .phone-btn {
  background: var(--accent);
  color: #fff;
}
.mobile-nav-cta .phone-btn:hover {
  background: var(--ah);
}

.mobile-nav-cta .quote-btn {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.mobile-nav-cta .quote-btn:hover {
  background: rgba(232,92,0,0.1);
}

/* Hide hamburger and mobile nav on desktop */
@media (min-width: 769px) {
  .hamburger { display: none; }
  .mobile-overlay { display: none; }
  .mobile-nav { display: none; }
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
  .hamburger { display: flex; }
}

/* ══════════════════════════════════════
   STICKY MOBILE CTA (bottom bar)
   ══════════════════════════════════════ */

.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9997;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  justify-content: center;
  gap: 10px;
}

.sticky-mobile-cta .sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  max-width: 200px;
}

.sticky-mobile-cta .sticky-call {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}
.sticky-mobile-cta .sticky-call:hover {
  background: rgba(255,255,255,0.12);
}

.sticky-mobile-cta .sticky-quote {
  background: var(--accent);
  color: #fff;
}
.sticky-mobile-cta .sticky-quote:hover {
  background: var(--ah);
}

@media (max-width: 767px) {
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* ══════════════════════════════════════
   WHATSAPP FLOATING BUTTON (desktop only)
   ══════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9996;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow:
    0 4px 20px rgba(37,211,102,0.3),
    0 0 0 0 rgba(37,211,102,0.4);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  animation: whatsappPulse 3s ease-in-out 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow:
    0 6px 28px rgba(37,211,102,0.4),
    0 0 0 0 rgba(37,211,102,0.4);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

@keyframes whatsappPulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.3), 0 0 0 0 rgba(37,211,102,0.4); }
  50%  { box-shadow: 0 4px 20px rgba(37,211,102,0.3), 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.3), 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 768px) {
  .whatsapp-float { display: none; }
}

/* ══════════════════════════════════════
   MAIN CONTENT
   ══════════════════════════════════════ */
body > div:not(.trust-badges):not(.hero):not(.badges-container):not(.services-grid):not(.testimonial-section):not(.quote-section) {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 36px;
}

body > div h2 {
  font-size: clamp(24px, 2.5vw, 34px);
  color: #fff;
  margin: 48px 0 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

body > div h3 {
  color: #fff;
  margin: 32px 0 12px;
}

body > div p { margin-bottom: 16px; }

body > div ul, body > div ol {
  margin: 16px 0 16px 24px;
  color: #ccc;
  line-height: 1.8;
}

body > div li { margin-bottom: 8px; }

body > div img {
  max-width: 100%;
  border-radius: var(--r);
  margin: 24px 0;
}

/* ══════════════════════════════════════
   QUOTE FORM — Dark Inputs
   ══════════════════════════════════════ */
.quote-section {
  padding: 64px 36px;
  background: var(--s2);
  border-top: 1px solid var(--b);
}

.quote-section h2 {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 800;
}

.quote-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--b);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  font-family: var(--font);
  color: #fff;
  transition: border-color .3s, box-shadow .3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--ag);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

/* Tel input validation visual hint */
.form-group input[type="tel"]:invalid:not(:placeholder-shown) {
  border-color: #ff4444;
  box-shadow: 0 0 0 3px rgba(255,68,68,0.15);
}
.form-group input[type="tel"]:valid:not(:placeholder-shown) {
  border-color: #44cc44;
  box-shadow: 0 0 0 3px rgba(68,204,68,0.12);
}
.form-group input[type="tel"]:invalid:not(:placeholder-shown) + .tel-hint {
  display: block;
}
.tel-hint {
  display: none;
  font-size: 11px;
  color: #ff4444;
  margin-top: 2px;
}

.form-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  font-family: var(--font);
}
.form-submit:hover {
  background: var(--ah);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--ag);
}

.form-note {
  font-size: 11px;
  color: #666;
  text-align: center;
  margin-top: 8px;
}

.hidden { display: none; }

/* ══════════════════════════════════════
   FAQ — Specificity-based (no !important)
   ══════════════════════════════════════ */
section.faq-section {
  padding: 64px 36px;
  max-width: 900px;
  margin: 0 auto;
}
section.faq-section h2 {
  color: #fff;
  margin-bottom: 32px;
}
section.faq-section .faq-item {
  background: var(--s2);
  border: 1px solid var(--b);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 12px;
  transition: border-color .3s;
}
section.faq-section .faq-item:hover {
  border-color: rgba(232,92,0,0.3);
}
section.faq-section .faq-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
}
section.faq-section .faq-item p {
  font-size: 13px;
  color: #999;
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════
   FOOTER — Touch-friendly (44px min)
   ══════════════════════════════════════ */
footer {
  background: #050505;
  border-top: 1px solid var(--b);
  padding: 48px 36px 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-section h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-section p {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* Touch-friendly footer links — min 44px padding */
.footer-section a {
  display: block;
  font-size: 13px;
  color: #999;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color .3s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-section a:hover { color: #fff; }

.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
}
.footer-bottom p {
  font-size: 11px;
  color: #555;
  margin: 0;
}

.footer-year { font-size: 11px; color: #555; }

/* ══════════════════════════════════════
   CINEMATOGRAPHIC EFFECTS
   ══════════════════════════════════════ */

.noise-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Border gradient on premium cards */
.card-border-gradient {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
}

.card-border-gradient::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--r) + 1px);
  background: linear-gradient(135deg, rgba(232,92,0,0.3), transparent 40%, transparent 60%, rgba(232,92,0,0.15));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

.card-border-gradient:hover::before { opacity: 1; }

/* Glow on primary CTA */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), transparent, var(--accent));
  opacity: 0;
  transition: opacity .4s;
  z-index: -1;
}
.btn-primary:hover::after { opacity: 1; }

/* Smooth image transforms */
.hero img {
  transition: transform .6s cubic-bezier(.16,1,.3,1), opacity .4s;
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════ */

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

/* Section entrance animation */
.trust-badges,
.services-grid,
.quote-section,
footer {
  animation: fadeUp .6s ease-out both;
}
.trust-badges { animation-delay: .1s; }
.services-grid { animation-delay: .2s; }
.quote-section { animation-delay: .3s; }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Hero entrance animations */
.hero-eyebrow  { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; }
.hero h1       { animation: fadeUp 0.7s ease both; animation-delay: 0.25s; }
.hero-desc     { animation: fadeUp 0.7s ease both; animation-delay: 0.4s; }
.hero-cta      { animation: fadeUp 0.7s ease both; animation-delay: 0.55s; }
.hero-metrics  { animation: fadeUp 0.7s ease both; animation-delay: 0.7s; }
.hero-right    { animation: fadeIn 1.1s ease both; animation-delay: 0.3s; }

/* CTA Pulse */
.btn-primary {
  box-shadow: 0 0 0 0 rgba(232,92,0,0.5);
  animation: ctaPulse 2.8s ease-in-out 2s infinite;
}
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,92,0,0.45); }
  60%  { box-shadow: 0 0 0 12px rgba(232,92,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,92,0,0); }
}
.btn-primary:hover { animation: none; }

/* ══════════════════════════════════════
   ADDITIONAL ANIMATIONS
   ══════════════════════════════════════ */

/* Fade-in on load */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}
.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }

/* Scale-in effect */
.scale-in {
  opacity: 0;
  transform: scale(0.95);
  animation: scaleIn 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Hover lift effect */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

/* Glow hover */
.hover-glow {
  transition: box-shadow 0.3s ease;
}
.hover-glow:hover {
  box-shadow: 0 0 24px var(--ag);
}

/* Stagger children animation */
.stagger-children > * {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}
.stagger-children > *:nth-child(1) { animation-delay: 0.05s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.15s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.25s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(7) { animation-delay: 0.35s; }
.stagger-children > *:nth-child(8) { animation-delay: 0.4s; }

/* ══════════════════════════════════════
   SCROLLBAR & SELECTION
   ══════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.2); }

::selection { background: rgba(232,92,0,.3); color: #fff; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 1024px) {
  .testimonial-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-top { padding: 12px 16px; }
  .header-top .logo img { height: 34px; }
  nav { gap: 12px; }
  nav a { font-size: 10px; letter-spacing: 0.5px; }

  .hero { padding: 120px 16px 60px; }
  .hero .hero-content h1 { font-size: 28px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }

  .hero-section {
    min-height: 70vh;
    padding: 120px 20px 60px;
  }

  .trust-badges { padding: 16px; }
  .badges-container { gap: 16px; }
  .badge-number { font-size: 1.3rem; }

  .services-grid { padding: 0 16px; margin: 32px auto; }

  body > div:not(.trust-badges):not(.hero):not(.badges-container):not(.services-grid):not(.testimonial-section):not(.quote-section) {
    padding: 0 16px;
  }

  .quote-section { padding: 48px 16px; }

  .footer-content { grid-template-columns: 1fr 1fr; gap: 24px; }
  footer { padding: 32px 16px 20px; }

  nav.breadcrumb-nav { padding: 0 16px; top: 72px; font-size: 11px; }

  section.faq-section { padding: 48px 16px; }

  .testimonial-section { padding: 48px 16px; }
  .testimonial-carousel { grid-template-columns: 1fr; }

  /* Hide premium effects on mobile for performance */
  .service-card::before { display: none; }
  .hero::after { display: none; }
  .hero-overlay::after { display: none; }
}

@media (max-width: 480px) {
  .footer-content { grid-template-columns: 1fr; }
  nav a:not(.cta-button):not([href*="tel"]) { display: none; }
  nav a[href*="tel"] { font-size: 12px; }
  .testimonial-carousel { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   HELPERS
   ══════════════════════════════════════ */
.urgency-box { display: none; }
.whatsapp-btn { display: none; }

/* ══════════════════════════════════════
   PREMIUM.JS REFERENCE
   ══════════════════════════════════════ */
/* premium.js enabled — smooth scroll, intersection observer, glass effects */

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13, 13, 26, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu-overlay.show { opacity: 1; visibility: visible; }
.mobile-menu-content {
  width: 100%; max-width: 320px; text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu-overlay.show .mobile-menu-content { transform: translateY(0); }
.mobile-menu-header {
  margin-bottom: 30px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 30px; }
.mobile-menu-link {
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; font-weight: 600;
  text-decoration: none; padding: 16px 20px; border-radius: 12px;
  transition: all 0.2s ease; letter-spacing: 0.5px; min-height: 52px;
}
.mobile-menu-link:active { background: rgba(255, 255, 255, 0.08); color: #E85C00; }
.mobile-menu-link.mobile-menu-cta {
  background: #E85C00; color: #fff; font-weight: 700; margin-top: 10px;
}
.mobile-menu-contact {
  padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-phone-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.08); color: #fff;
  padding: 16px 28px; border-radius: 25px; text-decoration: none;
  font-weight: 600; font-size: 16px; min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
@media (min-width: 769px) { .mobile-menu-overlay { display: none !important; } }

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 768px) {
  body { padding-top: 64px !important; }
  .hero-home h1 { font-size: 32px !important; line-height: 1.2 !important; }
  .hero-home p { font-size: 16px !important; }
  section { padding: 52px 18px !important; }
  .service-grid, .services-grid { grid-template-columns: 1fr !important; }
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
  img { max-width: 100%; height: auto; }
}
@media (max-width: 480px) {
  .hero-home h1 { font-size: 26px !important; }
  .hero-home { padding: 60px 16px 40px !important; }
  section { padding: 40px 16px !important; }
  .cta-button, .btn-primary { padding: 14px 24px !important; font-size: 14px !important; min-height: 48px !important; }
}

/* STICKY MOBILE CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9997;
  background: #0d0d1a; border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 16px; gap: 8px;
}
.sticky-mobile-cta a {
  flex: 1; text-align: center; padding: 14px 10px; border-radius: 8px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  min-height: 48px; display: flex; align-items: center; justify-content: center;
}
.sticky-mobile-cta .sticky-call { background: rgba(255,255,255,0.1); color: #fff; }
.sticky-mobile-cta .sticky-quote { background: #E85C00; color: #fff; }
@media (max-width: 768px) {
  .sticky-mobile-cta { display: flex !important; }
  body { padding-bottom: 70px !important; }
}
