/* Colors injected as CSS variables by index.php from config.php */
/* Do NOT add a :root block here - it will override the PHP-injected variables */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 900; }
h1 { font-size: clamp(34px, 7vw, 55px); }
h2 { font-size: clamp(26px, 3.5vw, 44px); }
h3 { font-size: 19px; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
.section-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 2px dashed #000; border-radius: 50px; padding: 5px 10px; }
.section-label::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.section-sub { color: var(--grey); font-size: 16px; margin-top: 12px; max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 12px auto 0; }
.section-watermark { position: absolute; top: -20px; right: -20px; pointer-events: none; z-index: 0; }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--cta); color: var(--dark); font-weight: 800; font-size: 15px; padding: 14px 28px; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: var(--transition); animation: ctaGlow 3s ease-in-out infinite; }
.btn-primary:hover { background: var(--cta-dark); transform: translateY(-2px); box-shadow: 0 6px 20px var(--cta-glow); animation: none; }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: var(--radius-sm); border: 2px solid #fff; cursor: pointer; transition: var(--transition); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-outline-dark { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--primary); font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: var(--radius-sm); border: 2px solid var(--primary); cursor: pointer; transition: var(--transition); }
.btn-outline-dark:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

@keyframes ctaGlow { 0%, 100% { box-shadow: 0 4px 14px var(--cta-glow); } 50% { box-shadow: 0 4px 28px var(--cta-glow); } }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== ANNOUNCEMENT BAR ===== */
#announcementBar { height: 36px; background: var(--dark-2); display: flex; align-items: center; }
#announcementBar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.ann-signals { display: flex; align-items: center; gap: 28px; }
.ann-signal { display: flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; }
.ann-signal svg { color: var(--cta); flex-shrink: 0; }
.ann-live { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: #4ade80; }
.ann-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: pulseGreen 2s infinite; }
@keyframes pulseGreen { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ===== NAVBAR ===== */
#navbar { position: fixed; top: 36px; left: 0; right: 0; z-index: 1000; padding: 18px 0; transition: background 0.3s ease, padding 0.3s ease, top 0.3s ease; }
#navbar.scrolled { background: var(--dark); padding: 12px 0; top: 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 56px; width: auto; }
.site-logo { display: flex; align-items: center; gap: 8px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-primary { font-size: 17px; font-weight: 900; color: var(--cta); letter-spacing: -0.3px; }
.logo-secondary { font-size: 11px; font-weight: 700; color: #fff; letter-spacing: 0.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 15px; font-weight: 600; color: #fff; transition: color var(--transition); }
.nav-links a:hover { color: var(--cta); }
.nav-links a.active { color: var(--cta); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-phone { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); border-radius: var(--radius-sm); padding: 8px 14px; transition: var(--transition); animation: navPhonePulse 2.5s infinite; }
.nav-phone:hover { border-color: var(--cta); color: var(--cta); }
.nav-phone svg { color: var(--cta); }
@keyframes navPhonePulse { 0%,100% { box-shadow: 0 0 0 0 var(--cta-glow); } 60% { box-shadow: 0 0 0 8px transparent; } }
.nav-book { background: var(--cta); color: var(--dark); font-weight: 800; font-size: 14px; padding: 9px 18px; border-radius: var(--radius-sm); transition: var(--transition); }
.nav-book:hover { background: var(--cta-dark); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: var(--transition); border-radius: 2px; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-mobile-cta { display: none; align-items: center; gap: 10px; }
#mobileMenu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark-2); padding: 20px 24px; flex-direction: column; gap: 4px; }
#mobileMenu.open { display: flex; }
#mobileMenu a { color: #fff; font-size: 16px; font-weight: 600; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: block; }
#mobileMenu .mob-cta-btn { background: var(--cta); color: var(--dark); font-weight: 800; padding: 14px 20px; border-radius: var(--radius-sm); text-align: center; border: none; margin-top: 8px; }

/* ===== HERO ===== */
#hero { min-height: 97vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 0; }
.hero-bg { position: absolute; inset: 0; background: center/cover no-repeat; will-change: transform; }
.hero-bg-video { background: #000; }
.hero-bg-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(0, 0, 0, 0.93) 0%, rgba(0, 0, 0, 0.72) 35%, rgb(0 0 0 / 0%) 100%); z-index: 1; }
.hero-container { position: relative; z-index: 2; padding-top: 112px; padding-bottom: 60px; width: 100%; }
.hero-content { max-width: 680px; }
.hero-offer-badge { display: inline-flex; flex-direction: column; background: rgba(255,255,255,0.08); border: 1.5px solid var(--primary); border-radius: var(--radius-sm); padding: 10px 18px; margin-bottom: 24px; }
.hero-offer-badge span { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--cta); }
.hero-offer-badge p { font-size: 14px; font-weight: 700; color: #fff; margin: 0; }
.hero-badge { display: inline-flex; flex-direction: column; background: rgba(255,255,255,0.08); border: 1.5px solid var(--primary); border-radius: var(--radius-sm); padding: 10px 18px; margin-bottom: 24px; }
.hero-badge span { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--cta); }
.hero-badge p { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); margin: 0; }
#hero h1 { color: #fff; margin-bottom: 20px; }
#hero h1 em { color: var(--primary); font-style: normal; }
.hero-sub { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 28px; max-width: 560px; line-height: 1.65; }
.hero-google-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20); border-radius: 40px; padding: 8px 18px; margin-bottom: 32px; }
.google-icon { flex-shrink: 0; display: block; }
.g-stars { color: var(--cta); font-size: 14px; letter-spacing: 1px; }
.g-text { color: #fff; font-size: 13px; font-weight: 600; }
.hero-actions { display: flex; align-items: center; gap: 20px; margin-top: 40px; margin-bottom: 20px; flex-wrap: wrap; }
.hero-phone-display { display: flex; align-items: center; gap: 10px; background: transparent; border: 1.5px solid var(--cta-glow); border-radius: var(--radius-sm); padding: 12px 18px; animation: navPhonePulse 2.5s infinite; transition: var(--transition); }
.hero-phone-display:hover { border-color: var(--cta); }
.hero-phone-display svg { color: var(--cta); flex-shrink: 0; }
.phone-num { font-size: 18px; font-weight: 900; color: #fff; display: block; line-height: 1.1; }
.phone-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; display: block; }
.hero-trust-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-trust-pill { font-size: 12px; font-weight: 500; color: #fff; background: #ffffff25; border: 1px solid rgba(255,255,255,0.12); border-radius: 40px; padding: 6px 14px; }

/* ===== REVIEWS CAROUSEL ===== */
#reviews { background: #fff; position: relative; overflow: hidden; }
#reviews::before { content: '"'; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); font-size: 320px; font-weight: 900; color: var(--primary); opacity: 0.04; z-index: 0; pointer-events: none; }
#reviews .container { position: relative; z-index: 1; }
.reviews-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--off-white); border: 1px solid var(--light-grey); border-radius: 100px; padding: 8px 20px; margin-bottom: 20px; }
.reviews-badge-text { font-size: 13px; font-weight: 700; color: var(--dark); }
.reviews-badge-stars { color: var(--cta); font-size: 13px; }
.reviews-carousel-wrap { overflow: hidden; margin: 40px -24px 0; padding: 10px 0 20px; mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%); }
.reviews-track { display: flex; gap: 20px; width: max-content; align-items: stretch; will-change: transform; }
.rcard { width: 340px; flex-shrink: 0; background: #fff; border-top: 3px solid var(--primary); border-radius: 14px; padding: 24px; box-shadow: 0 5px 8px rgba(0,0,0,0.13); transition: var(--transition); display: flex; flex-direction: column; min-height: 220px; }
.rcard:hover { transform: translateY(-5px); box-shadow: 0 5px 8px rgba(0,0,0,0.13); }
.rcard-quote { font-size: 48px; font-weight: 900; color: var(--primary); opacity: 0.25; line-height: 1; margin-bottom: 8px; flex-shrink: 0; }
.rcard-text-wrap { flex: 1; margin-bottom: 12px; }
.rcard-text { font-style: italic; font-size: 14px; line-height: 1.8; color: var(--text); display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.rcard-text.expanded { display: block; -webkit-line-clamp: unset; overflow: visible; }
.rcard-read-more { font-size: 12px; font-weight: 700; color: var(--primary); background: none; border: none; cursor: pointer; padding: 4px 0; display: block; margin-top: 4px; }
.rcard-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--light-grey); flex-shrink: 0; }
.rcard-name { font-size: 14px; font-weight: 800; color: var(--primary); }
.rcard-suburb { font-size: 12px; color: var(--grey); }
.rcard-stars { color: var(--cta); font-size: 13px; letter-spacing: 1px; }
.reviews-cta-row { display: flex; align-items: center; gap: 16px; margin-top: 36px; justify-content: center; flex-wrap: wrap; }
.reviews-link { font-size: 15px; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }

/* ===== WHY US ===== */
#why-us { background: var(--dark); position: relative; overflow: hidden; padding: 88px 0; }
#why-us .container { position: relative; z-index: 2; }
.why-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center; }
.why-photos { display: flex; gap: 14px; align-items: flex-start; }
.why-photo-main { flex: 1; height: 480px; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.why-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.why-photo-accent { flex: 1; height: 480px; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4); margin-top: 40px; }
.why-photo-accent img { width: 100%; height: 100%; object-fit: cover; }
.why-content .section-label { color: var(--primary); }
.why-content h2 { color: #fff; margin-bottom: 12px; }
.why-content h2 em { color: var(--cta); font-style: normal; }
.why-intro { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 24px; line-height: 1.7; }
.why-stats { display: flex; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 28px; }
.why-stat { flex: 1; padding: 18px 16px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.why-stat:last-child { border-right: none; }
.why-stat-num { font-size: 28px; font-weight: 900; color: #fff; line-height: 1; }
.why-stat-label { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #fff; margin-top: 4px; }
.why-features { display: flex; flex-direction: column; }
.why-feature { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.why-feature:last-of-type { border-bottom: none; }
.why-feature-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-feature-icon svg { color: var(--cta); }
.why-feature h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.why-feature p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.55; }
.why-cta { margin-top: 28px; }

/* ===== SERVICES GRID ===== */
#services { background: var(--off-white); position: relative; overflow: hidden; }
#services .container { position: relative; z-index: 1; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.service-card { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(0,0,0,0.06); box-shadow: var(--shadow); display: flex; flex-direction: column; transition: var(--transition); position: relative; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-card::after { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, var(--cta-glow), transparent); transition: left 0.5s ease; pointer-events: none; }
.service-card:hover::after { left: 150%; }
.service-card-top { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); padding: 18px 24px; display: flex; align-items: center; gap: 12px; position: relative; overflow: hidden; }
.service-card-top::before { content: ''; position: absolute; top: -20px; right: -20px; width: 80px; height: 80px; background: rgba(255,255,255,0.07); border-radius: 50%; }
.service-card-top::after { content: ''; position: absolute; bottom: -30px; right: 20px; width: 60px; height: 60px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.service-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.18); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; }
.service-icon svg { color: #fff; }
.service-card-top h3 { color: #fff; font-size: 17px; font-weight: 800; position: relative; z-index: 1; }
.service-card-body { background: #fff; padding: 16px 24px 20px; flex: 1; display: flex; flex-direction: column; }
.service-card-body p { font-size: 13px; color: var(--grey); line-height: 1.75; flex: 1; margin-bottom: 14px; }
.service-link { font-size: 13px; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; transition: gap var(--transition); }
.service-link:hover { gap: 8px; text-decoration: underline; }
.services-cta { text-align: center; margin-top: 36px; }

/* ===== PRICING ===== */
#pricing { background: var(--off-white); }
.pricing-layout { display: grid; grid-template-columns: 380px 1fr; gap: 24px; margin-top: 48px; align-items: stretch; }
.pricing-featured { border-radius: var(--radius); overflow: hidden; position: relative; background: var(--dark) center/cover no-repeat; display: flex; flex-direction: column; justify-content: flex-end; }
.pricing-featured-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.1) 100%); }
.pricing-featured-body { position: relative; z-index: 1; padding: 32px 28px; }
.pricing-badge { display: inline-block; background: var(--cta); color: var(--dark); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 5px 12px; border-radius: 20px; margin-bottom: 14px; }
.pricing-featured-price { font-size: 52px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px; }
.pricing-featured-body h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.pricing-featured-body p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 24px; }
.pricing-featured-btn { display: inline-block; background: var(--cta); color: var(--dark); font-size: 15px; font-weight: 800; padding: 13px 24px; border-radius: var(--radius-sm); transition: var(--transition); }
.pricing-featured-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-content: stretch; }
.pricing-card { height: 100%; }
.pricing-card { background: #fff; border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.07); box-shadow: var(--shadow); padding: 28px 24px; display: flex; flex-direction: column; gap: 6px; transition: var(--transition); }
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pricing-card-icon { color: var(--primary); margin-bottom: 6px; }
.pricing-card-value { font-size: 36px; font-weight: 900; color: var(--primary); line-height: 1; }
.pricing-card-title { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.pricing-card p { font-size: 13.5px; color: var(--grey); line-height: 1.6; flex: 1; }
.pricing-card-link { font-size: 13.5px; font-weight: 700; color: var(--primary); margin-top: 8px; }
.pricing-card-link:hover { text-decoration: underline; }
.pricing-footnote { text-align: center; font-size: 13px; color: var(--grey); margin-top: 28px; }
@media(max-width:900px) { .pricing-layout { grid-template-columns: 1fr; } .pricing-featured { min-height: 360px; } }
@media(max-width:540px) { .pricing-cards { grid-template-columns: 1fr; } }

/* ===== SERVICE SPOTLIGHT ===== */
#about-us { background: #fff; }
.about-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 48px; }
.about-us-img { border-radius: var(--radius); overflow: hidden; height: 460px; box-shadow: var(--shadow-lg); }
.about-us-img img { width: 100%; height: 100%; object-fit: cover; }
.about-us-content h2 { margin-bottom: 16px; }
.about-us-content p { color: var(--grey); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.about-us-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.about-us-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.about-us-list li .check-icon { width: 22px; height: 22px; background: var(--primary-glow); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.about-us-list li .check-icon svg { display: block; color: var(--primary); }

/* ===== BEFORE / AFTER SLIDER ===== */
#before-after { background: var(--off-white); }
.ba-wrap { max-width: 900px; margin: 48px auto 0; border-radius: 18px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.ba-slider { position: relative; cursor: col-resize; user-select: none; overflow: hidden; }
.ba-after { width: 100%; height: 500px; object-fit: cover; display: block; }
.ba-before-wrap { position: absolute; top: 0; left: 0; bottom: 0; width: 50%; overflow: hidden; }
.ba-before { width: 900px; max-width: none; height: 500px; object-fit: cover; display: block; }
.ba-label { position: absolute; top: 16px; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; background: rgba(0,0,0,0.55); padding: 5px 14px; border-radius: 40px; }
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; justify-content: center; width: 44px; cursor: col-resize; z-index: 10; }
.ba-handle-line { flex: 1; width: 2px; background: #fff; }
.ba-handle-circle { width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; box-shadow: 0 4px 16px rgba(0,0,0,0.25); flex-shrink: 0; }
.ba-cta-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* ===== GALLERY ===== */
#gallery { background: #fff; position: relative; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 48px; }
.gallery-item { overflow: hidden; border-radius: 10px; height: 240px; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption { position: absolute; inset: 0; background: rgba(0,0,0,0.62); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-caption span { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-cta { text-align: center; margin-top: 32px; color: var(--grey); font-size: 15px; }
.gallery-cta a { color: var(--primary); font-weight: 700; }

/* ===== LIGHTBOX ===== */
#lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 9999; align-items: center; justify-content: center; display: none; }
#lightbox.open { display: flex; }
.lb-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lb-inner img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 8px; }
.lb-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 32px; cursor: pointer; }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 24px; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.lb-prev { left: -64px; }
.lb-next { right: -64px; }
.lb-prev:hover, .lb-next:hover { background: var(--primary); }
.lb-counter { position: absolute; bottom: -32px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 13px; }

/* ===== PROCESS STEPS ===== */
#process { background: #fff; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; position: relative; }
.process-steps.steps-3 { grid-template-columns: repeat(3, 1fr); }
.process-steps::before { content: ''; position: absolute; top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px); height: 2px; background: linear-gradient(to right, var(--primary), var(--primary-dark)); z-index: 0; }
.process-steps.steps-3::before { left: calc(16.67% + 28px); right: calc(16.67% + 28px); }
.process-step { background: var(--off-white); border-radius: var(--radius); padding: 28px 20px; text-align: center; position: relative; z-index: 1; box-shadow: var(--shadow); border: 1px solid var(--light-grey); transition: var(--transition); }
.process-step:hover { border-color: var(--primary); transform: translateY(-3px); }
.process-num { width: 56px; height: 56px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 900; color: #fff; margin: 0 auto 16px; box-shadow: 0 4px 16px var(--primary-glow); }
.process-step h4 { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.process-step p { font-size: 13.5px; color: var(--grey); line-height: 1.55; }
.process-cta { text-align: center; margin-top: 36px; }

/* ===== HOW IT WORKS (ICON CARD VARIANT) ===== */
#how-it-works { background: var(--off-white); }
.hsw-steps { display: flex; align-items: stretch; gap: 0; margin-top: 56px; }
.hsw-step { flex: 1; }
.hsw-card { background: #fff; border-radius: var(--radius); padding: 28px 20px 24px; text-align: center; height: 100%; display: flex; flex-direction: column; align-items: center; position: relative; border: 1px solid var(--light-grey); box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: var(--transition); }
.hsw-card:hover { box-shadow: 0 8px 28px var(--primary-glow); border-color: var(--primary); transform: translateY(-4px); }
.hsw-num { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 28px; height: 28px; background: var(--primary); color: #fff; border-radius: 50%; font-size: 13px; font-weight: 900; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px var(--primary-glow); }
.hsw-icon { width: 72px; height: 72px; background: var(--primary-glow); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 16px auto; }
.hsw-icon svg { color: var(--primary); }
.hsw-card h4 { font-size: 14px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.hsw-card p { font-size: 12.5px; color: var(--grey); line-height: 1.65; }
.hsw-arrow { flex-shrink: 0; width: 36px; display: flex; align-items: center; justify-content: center; padding-top: 14px; opacity: 0.7; }
.hsw-arrow svg { color: var(--primary); }
.hsw-note { display: flex; align-items: flex-start; gap: 12px; background: var(--primary-glow); border: 1px solid var(--primary); border-radius: var(--radius-sm); padding: 16px 20px; margin-top: 40px; font-size: 14px; color: var(--grey); line-height: 1.6; }
.hsw-note svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ===== CTA BANNER (PARALLAX) ===== */
#cta-banner { position: relative; padding: 96px 0; overflow: hidden; }
.cta-parallax-bg { position: absolute; inset: -60px 0; background: center/cover no-repeat; background-attachment: fixed; }
.cta-parallax-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.75) 100%); }
#cta-banner .container { position: relative; z-index: 1; }
.cta-banner-inner { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; }
.cta-banner-text { flex: 1; }
.cta-banner-text h2 { color: #fff; margin-bottom: 10px; }
.cta-banner-text p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 20px; }
.cta-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-pill { background: rgba(255,255,255,0.15); color: #fff; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 40px; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 14px; align-items: stretch; flex-shrink: 0; min-width: 220px; }
.btn-cta-white { display: inline-flex; align-items: center; gap: 8px; background: var(--cta); color: var(--dark); font-weight: 800; font-size: 15px; padding: 15px 32px; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: var(--transition); }
.btn-cta-white:hover { background: var(--cta-dark); transform: translateY(-2px); }
.btn-cta-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; font-weight: 700; font-size: 15px; padding: 15px 32px; border-radius: var(--radius-sm); border: 2px solid rgba(255,255,255,0.6); cursor: pointer; transition: var(--transition); }
.btn-cta-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

/* ===== FAQ ACCORDION ===== */
#faq { background: #fff; position: relative; overflow: hidden; }
.faq-bg-mark { position: absolute; top: -60px; right: -40px; font-size: 480px; font-weight: 900; color: var(--primary); opacity: 0.04; pointer-events: none; user-select: none; z-index: 0; line-height: 1; }
.faq-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; position: relative; z-index: 1; margin-top: 48px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1.5px solid var(--light-grey); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; font-size: 15px; font-weight: 700; color: var(--dark); cursor: pointer; transition: background var(--transition); gap: 12px; }
.faq-q:hover { background: var(--off-white); }
.faq-q.open { color: var(--primary); background: var(--primary-glow); }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; background: var(--light-grey); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; transition: transform var(--transition), background var(--transition); }
.faq-q.open .faq-icon { background: var(--primary); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a.open { max-height: 400px; }
.faq-a-inner { padding: 16px 24px 20px; color: var(--grey); font-size: 14.5px; line-height: 1.7; }
.faq-photo { border-radius: 18px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); position: sticky; top: 100px; }
.faq-photo img { height: 520px; width: 100%; object-fit: cover; display: block; }

/* ===== SERVICE AREAS PILLS + MAP ===== */
#service-areas { background: var(--dark); padding: 88px 0; text-align: center; }
#service-areas .section-label { color: var(--primary); }
#cta-banner .section-label { color: var(--primary); border-color: var(--primary); }
#cta-banner .section-label::before { background: var(--primary); }
#contact .cl-left .section-label { background: transparent; border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); align-self: flex-start; }
#contact .cl-left .section-label::before { background: var(--primary); }
#service-areas h2 { color: #fff; }
#service-areas h2 em { color: var(--cta); font-style: normal; }
#service-areas .section-sub { color: rgba(255,255,255,0.8); max-width: 100%; }
.areas-pills, .service-areas-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; justify-content: center; }
.area-pill { border: 1.5px solid rgba(255,255,255,0.2); color: #fff; font-size: 13.5px; font-weight: 600; padding: 8px 18px; border-radius: 40px; transition: var(--transition); cursor: default; }
.area-pill:hover { background: var(--cta); color: var(--dark); border-color: var(--cta); }
.areas-note { color: rgba(255,255,255,0.65); font-size: 13px; margin-top: 20px; font-style: italic; }
.map-wrap { margin-top: 40px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.3); border: 2px solid rgba(255,255,255,0.1); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: none; }

/* ===== CONTACT — luxury split ===== */
#contact { padding: 0; }
.contact-luxury { display: grid; grid-template-columns: 45fr 55fr; min-height: 680px; }

/* Left dark panel */
.cl-left {
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: stretch;
}
.cl-left::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, color-mix(in srgb, var(--primary) 12%, transparent), transparent);
  pointer-events: none;
}
.cl-left-inner {
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  width: 100%;
}
.cl-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cl-sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 52px;
}

/* Contact details — architectural stacked list */
.cl-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  margin-bottom: 40px;
}
.cl-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
}
.cl-detail:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.cl-detail svg { color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.cl-detail span {
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  line-height: 1.55;
}
a.cl-detail:hover span { color: var(--primary); }

/* Map */
.cl-map { border-radius: 8px; overflow: hidden; opacity: 0.85; }

/* Right light panel */
.cl-right {
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 64px;
}
.cl-form-wrap { width: 100%; max-width: 480px; }
.cl-form-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.cl-form-heading {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

/* Form fields */
.clf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.clf-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}
.clf-group input,
.clf-group textarea,
.clf-group select {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.clf-group textarea { resize: none; min-height: 90px; }
.clf-group select { cursor: pointer; }
.clf-group input:focus,
.clf-group textarea:focus,
.clf-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.clf-group input::placeholder,
.clf-group textarea::placeholder { color: #b0b8c4; }
/* Custom select dropdown */
.csd { position: relative; }
.csd-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: #b0b8c4;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.csd-trigger.has-value { color: var(--dark); }
.csd-trigger:focus,
.csd.open .csd-trigger {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.csd-trigger svg { flex-shrink: 0; color: var(--grey); transition: transform 0.2s; }
.csd.open .csd-trigger svg { transform: rotate(180deg); }
.csd-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  max-height: 240px;
  overflow-y: auto;
  display: none;
  padding: 6px 0;
}
.csd.open .csd-list { display: block; }
.csd-option {
  padding: 11px 16px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  list-style: none;
}
.csd-option:hover { background: var(--off-white); color: var(--dark); }
.csd-option.selected { background: var(--primary-glow); color: var(--primary); font-weight: 600; }

/* Submit button */
.clf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 24px;
  background: var(--dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
  margin-bottom: 16px;
}
.clf-submit:hover { background: var(--primary); color: var(--dark); transform: translateY(-1px); }
.clf-submit svg { transition: transform 0.2s; }
.clf-submit:hover svg { transform: translateX(3px); }

/* keep old form vars working for success/error states */
.contact-grid { display: none; }
.contact-form-wrap h3 { display: none; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cf-group label { font-size: 13px; font-weight: 700; color: var(--dark); }
.cf-group input, .cf-group select, .cf-group textarea { width: 100%; border: 1.5px solid var(--light-grey); border-radius: var(--radius-sm); padding: 12px 14px; font-size: 15px; font-family: inherit; color: var(--dark); transition: border-color var(--transition); background: #fff; }
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.cf-group textarea { resize: vertical; min-height: 100px; }
.cf-hidden { display: none; }
.cf-submit { width: 100%; padding: 15px; background: var(--cta); color: var(--dark); font-size: 16px; font-weight: 800; border: none; border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); }
.cf-submit:hover { background: var(--cta-dark); transform: translateY(-1px); box-shadow: 0 4px 16px var(--cta-glow); }
.cf-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.cf-fine { font-size: 12px; color: var(--grey); text-align: center; margin-top: 10px; }
#formSuccess { display: none; text-align: center; padding: 32px 0; }
#formSuccess svg { color: #22c55e; margin: 0 auto 16px; }
#formSuccess h4 { font-size: 20px; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
#formSuccess p { color: var(--grey); font-size: 14px; }
#formError { display: none; color: #dc2626; font-size: 13px; text-align: center; margin-top: 10px; }

/* ===== FOOTER 4-COL + TRUST BAR ===== */
footer { background: linear-gradient(160deg, var(--dark-2) 0%, var(--dark) 50%, var(--dark) 100%); border-top: 3px solid var(--cta); position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; inset: 0; opacity: 0.06; pointer-events: none; }
.footer-bg-overlay { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.18; pointer-events: none; z-index: 0; }
.footer-inner { position: relative; z-index: 1; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 52px; }
.footer-tagline { color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.65; max-width: 300px; }
.footer-social { display: flex; gap: 8px; margin-top: 32px; flex-wrap: wrap; }
.footer-social-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); transition: background .2s, color .2s; }
.footer-social-icon:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-google-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 10px 14px; margin-top: 4px; align-self: flex-start; }
.footer-google-badge-text { font-size: 12px; color: #fff; font-weight: 600; }
.footer-col h4 { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: #fff; font-size: 13px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--cta); }
.footer-contact-rows { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-row { display: flex; align-items: center; gap: 10px; }
.footer-contact-icon { width: 30px; height: 30px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-contact-icon svg { color: var(--cta); }
.footer-contact-row a, .footer-contact-row span { color: rgba(255,255,255,0.75); font-size: 13px; }
.footer-contact-row a:hover { color: var(--cta); }
.footer-trust-bar { border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 18px 0; position: relative; z-index: 1; }
.footer-trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 0; }
.footer-trust-signal { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #fff; padding: 0 28px; border-right: 1px solid rgba(255,255,255,0.12); }
.footer-trust-signal:last-child { border-right: none; }
.footer-trust-signal svg { color: var(--cta); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 10px 0; position: relative; z-index: 1; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,0.55); font-size: 13px; text-align: center; }
.footer-abn { color: rgba(255,255,255,0.4); font-size: 12px; }

/* ===== MOBILE STICKY BAR ===== */
#mobile-sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; height: 60px; z-index: 9999; }
.mobile-sticky-inner { display: flex; width: 100%; height: 100%; align-items: stretch; }
.mobile-sticky-call { flex: 1; background: var(--dark-2); color: #fff; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 15px; font-weight: 800; text-decoration: none; border: none; overflow: hidden; }
.mobile-sticky-quote { flex: 1; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 15px; font-weight: 800; text-decoration: none; overflow: hidden; }
.mobile-sticky-call svg, .mobile-sticky-quote svg { color: #fff; }

/* ===== ADDITIONAL UTILITY COMPONENTS ===== */

/* Why number one / feature cards */
.wno-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.wno-card { background: #fff; border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); }
.wno-icon { width: 52px; height: 52px; background: var(--primary-glow); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.wno-icon svg { color: var(--primary); }
.wno-card h3 { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.wno-card p { font-size: 14px; color: var(--grey); line-height: 1.75; }

/* Inline phone link */
.inline-phone { color: var(--primary); font-weight: 800; }

/* Competitor / guarantee diff section */
.competitor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 48px; }
.competitor-left p { color: var(--grey); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.competitor-right h3 { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.competitor-list { display: flex; flex-direction: column; gap: 12px; }
.competitor-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--text); }
.diff-check { width: 22px; height: 22px; background: var(--primary-glow); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; color: var(--primary); font-weight: 900; font-size: 11px; }

/* Guarantee diff cards */
.gd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.gd-card { background: #fff; border-radius: var(--radius); padding: 36px; display: flex; flex-direction: column; gap: 24px; }
.gd-bad { border: 2px solid rgba(0,0,0,0.08); opacity: 0.85; }
.gd-good { border: 2px solid var(--primary); box-shadow: 0 8px 32px var(--primary-glow); }
.gd-card-header { display: flex; flex-direction: column; gap: 10px; }
.gd-label-bad { display: inline-flex; align-items: center; gap: 6px; background: var(--light-grey); color: var(--grey); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 100px; width: fit-content; }
.gd-label-good { display: inline-flex; align-items: center; gap: 6px; background: var(--primary-glow); color: var(--primary); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 100px; width: fit-content; }
.gd-card h3 { font-size: 22px; font-weight: 800; color: var(--text); }
.gd-list { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.gd-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; line-height: 1.6; color: var(--text); }
.gd-item-bad { color: var(--grey); }
.gd-icon { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.gd-icon-bad { background: rgba(239,68,68,0.1); }
.gd-icon-good { background: var(--primary-glow); }
.gd-footnote { font-size: 12px; color: var(--grey); font-style: italic; margin-top: 4px; }
.gd-note { text-align: center; font-size: 14px; color: var(--grey); max-width: 600px; margin: 32px auto 0; font-style: italic; }

/* ===== RESPONSIVE: 900px ===== */
@media (max-width: 900px) {
  #announcementBar { display: none; }
  #navbar { top: 0; }
  .nav-links, .nav-actions { display: none; }
  .nav-mobile-cta { display: flex; }
  .nav-hamburger { display: flex; }

  /* Why us */
  .why-grid { grid-template-columns: 1fr; }
  .why-photos { flex-direction: column; }
  .why-photo-main, .why-photo-accent { height: 220px; }
  .why-photo-accent { margin-top: 0; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; }
  .faq-photo { position: static; }
  .faq-photo img { height: 260px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-trust-bar-inner { flex-wrap: wrap; gap: 12px; justify-content: flex-start; }
  .footer-trust-signal { border-right: none; padding: 0; }

  /* How it works steps */
  .hsw-steps { flex-direction: column; align-items: stretch; gap: 32px; }
  .hsw-arrow { display: none; }

  /* Process steps */
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .process-steps.steps-3 { grid-template-columns: 1fr 1fr; }
}

/* ===== RESPONSIVE: 768px ===== */
@media (max-width: 768px) {
  #mobile-sticky { display: flex; }
  body { padding-bottom: 60px; }
  .hero-actions { margin-top: 28px; margin-bottom: 20px; }
}

/* ===== RESPONSIVE: 600px ===== */
@media (max-width: 600px) {
  section { padding: 60px 0; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Spotlight */
  .about-us-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .gallery-item { height: 120px; }

  /* Before/After */
  .ba-after, .ba-before { height: 280px; }
  .ba-before { width: 100vw; }

  /* CTA parallax - disable fixed attachment on mobile */
  .cta-parallax-bg { background-attachment: scroll; }

  /* CTA banner */
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-pills { justify-content: center; }
  .cta-banner-actions { width: 100%; min-width: unset; }
  .btn-cta-white, .btn-cta-outline { width: 100%; justify-content: center; }

  /* Process */
  .process-steps, .process-steps.steps-3 { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }

  /* Wno cards */
  .wno-grid { grid-template-columns: 1fr; }

  /* Competitor / gd */
  .competitor-grid { grid-template-columns: 1fr; }
  .gd-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-luxury { grid-template-columns: 1fr; }
  .cl-left-inner { padding: 56px 28px; }
  .cl-right { padding: 56px 28px; }

  /* Form */
  .cf-row { grid-template-columns: 1fr; gap: 0; }
  .cf-group input, .cf-group select, .cf-group textarea { font-size: 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  /* Hero */
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-phone-display { width: 100%; justify-content: center; }

  /* Map */
  .map-wrap iframe { height: 260px; }

  /* Service areas pills wrap tighter */
  .area-pill { font-size: 12px; padding: 6px 14px; }
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 3px; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reviews-track { animation: none; }
  .btn-primary { animation: none; }
}

/* ===== INDUSTRY BACKGROUND PATTERNS ===== */
/* Applied as ::before overlays on dark sections per trade industry */

.dark-sections-pattern { position: relative; }

/* Dark sections that receive the pattern */
body[class*="industry-"] #why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

#why-us { position: relative; }
#why-us > * { position: relative; z-index: 1; }

/* --- PLUMBER: water pipe cross grid --- */
body.industry-plumber #why-us::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect x='27' y='0' width='6' height='60' fill='rgba(255%2C255%2C255%2C0.06)'/%3E%3Crect x='0' y='27' width='60' height='6' fill='rgba(255%2C255%2C255%2C0.06)'/%3E%3Ccircle cx='30' cy='30' r='5' fill='none' stroke='rgba(255%2C255%2C255%2C0.09)' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

/* --- ELECTRICIAN: circuit dot-dash grid --- */
body.industry-electrician #why-us::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50'%3E%3Ccircle cx='25' cy='25' r='2' fill='rgba(255%2C255%2C255%2C0.09)'/%3E%3Cline x1='25' y1='0' x2='25' y2='18' stroke='rgba(255%2C255%2C255%2C0.06)' stroke-width='1.5'/%3E%3Cline x1='25' y1='32' x2='25' y2='50' stroke='rgba(255%2C255%2C255%2C0.06)' stroke-width='1.5'/%3E%3Cline x1='0' y1='25' x2='18' y2='25' stroke='rgba(255%2C255%2C255%2C0.06)' stroke-width='1.5'/%3E%3Cline x1='32' y1='25' x2='50' y2='25' stroke='rgba(255%2C255%2C255%2C0.06)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 50px 50px;
}

/* --- ROOFER: diagonal shingle scales --- */
body.industry-roofer #why-us::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='40'%3E%3Cpath d='M0 20 L30 0 L60 20' fill='none' stroke='rgba(255%2C255%2C255%2C0.08)' stroke-width='1.5'/%3E%3Cpath d='M0 40 L30 20 L60 40' fill='none' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 40px;
}

/* --- CLEANER: bubble dots scatter --- */
body.industry-cleaner #why-us::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='20' cy='20' r='6' fill='none' stroke='rgba(255%2C255%2C255%2C0.09)' stroke-width='1.5'/%3E%3Ccircle cx='60' cy='20' r='3' fill='none' stroke='rgba(255%2C255%2C255%2C0.05)' stroke-width='1.5'/%3E%3Ccircle cx='40' cy='50' r='8' fill='none' stroke='rgba(255%2C255%2C255%2C0.07)' stroke-width='1.5'/%3E%3Ccircle cx='10' cy='65' r='4' fill='none' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1.5'/%3E%3Ccircle cx='70' cy='60' r='5' fill='none' stroke='rgba(255%2C255%2C255%2C0.06)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

/* --- PEST CONTROL: hexagon honeycomb mesh --- */
body.industry-pest-control #why-us::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 2 L54 16 L54 44 L28 58 L2 44 L2 16 Z' fill='none' stroke='rgba(255%2C255%2C255%2C0.08)' stroke-width='1.5'/%3E%3Cpath d='M28 58 L54 72 L54 100' fill='none' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1'/%3E%3Cpath d='M28 58 L2 72 L2 100' fill='none' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}

/* --- MECHANIC: gear cog dot grid --- */
body.industry-mechanic #why-us::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='10' fill='none' stroke='rgba(255%2C255%2C255%2C0.08)' stroke-width='1.5'/%3E%3Ccircle cx='30' cy='30' r='4' fill='rgba(255%2C255%2C255%2C0.09)'/%3E%3Crect x='28' y='18' width='4' height='6' rx='1' fill='rgba(255%2C255%2C255%2C0.06)'/%3E%3Crect x='28' y='36' width='4' height='6' rx='1' fill='rgba(255%2C255%2C255%2C0.06)'/%3E%3Crect x='18' y='28' width='6' height='4' rx='1' fill='rgba(255%2C255%2C255%2C0.06)'/%3E%3Crect x='36' y='28' width='6' height='4' rx='1' fill='rgba(255%2C255%2C255%2C0.06)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

/* --- LANDSCAPER: organic leaf dots --- */
body.industry-landscaper #why-us::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M20 60 Q20 30 50 30 Q50 60 20 60Z' fill='none' stroke='rgba(255%2C255%2C255%2C0.08)' stroke-width='1.5'/%3E%3Cline x1='20' y1='60' x2='50' y2='30' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1'/%3E%3Cpath d='M55 30 Q55 10 70 15 Q65 30 55 30Z' fill='none' stroke='rgba(255%2C255%2C255%2C0.05)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

/* --- PAINTER: diagonal brush stroke lines --- */
body.industry-painter #why-us::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cline x1='0' y1='60' x2='60' y2='0' stroke='rgba(255%2C255%2C255%2C0.07)' stroke-width='2'/%3E%3Cline x1='-20' y1='60' x2='40' y2='0' stroke='rgba(255%2C255%2C255%2C0.035)' stroke-width='1'/%3E%3Cline x1='20' y1='60' x2='80' y2='0' stroke='rgba(255%2C255%2C255%2C0.035)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

/* --- BUILDER: blueprint fine grid --- */
body.industry-builder #why-us::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Crect width='40' height='40' fill='none' stroke='rgba(255%2C255%2C255%2C0.07)' stroke-width='0.75'/%3E%3Cline x1='20' y1='0' x2='20' y2='40' stroke='rgba(255%2C255%2C255%2C0.035)' stroke-width='0.5' stroke-dasharray='2%2C2'/%3E%3Cline x1='0' y1='20' x2='40' y2='20' stroke='rgba(255%2C255%2C255%2C0.035)' stroke-width='0.5' stroke-dasharray='2%2C2'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}

/* --- SOLAR: diamond panel grid --- */
body.industry-solar #why-us::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect x='5' y='5' width='22' height='22' rx='2' fill='none' stroke='rgba(255%2C255%2C255%2C0.08)' stroke-width='1.5'/%3E%3Crect x='33' y='5' width='22' height='22' rx='2' fill='none' stroke='rgba(255%2C255%2C255%2C0.08)' stroke-width='1.5'/%3E%3Crect x='5' y='33' width='22' height='22' rx='2' fill='none' stroke='rgba(255%2C255%2C255%2C0.08)' stroke-width='1.5'/%3E%3Crect x='33' y='33' width='22' height='22' rx='2' fill='none' stroke='rgba(255%2C255%2C255%2C0.08)' stroke-width='1.5'/%3E%3Cline x1='5' y1='16' x2='27' y2='16' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1'/%3E%3Cline x1='33' y1='16' x2='55' y2='16' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1'/%3E%3Cline x1='5' y1='44' x2='27' y2='44' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1'/%3E%3Cline x1='33' y1='44' x2='55' y2='44' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1'/%3E%3Cline x1='16' y1='5' x2='16' y2='27' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1'/%3E%3Cline x1='44' y1='5' x2='44' y2='27' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1'/%3E%3Cline x1='16' y1='33' x2='16' y2='55' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1'/%3E%3Cline x1='44' y1='33' x2='44' y2='55' stroke='rgba(255%2C255%2C255%2C0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

/* =========================================================
   BACK TO TOP BUTTON
   ========================================================= */
#back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  pointer-events: none;
  z-index: 999;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover { background: var(--primary); color: var(--dark); }
@media (max-width: 767px) {
  #back-to-top { bottom: 80px; right: 16px; }
}
