/* ============================================
DESIGN SYSTEM TOKENS
============================================ */
:root {
/* Colors */
--color-primary: #E0E722;
--color-primary-hover: #B8BF1D;
--color-primary-glow: rgba(224,231,34,0.25);
--color-secondary: #1A1A1A;
--color-background: #FFFFFF;
--color-foreground: #1A1A1A;
--color-body-text: #374151;
--color-muted: #6B7280;
--color-surface: #F7F7F2;
--color-border: #E5E7EB;
--color-accent-gradient: linear-gradient(135deg, #E0E722 0%, #C3D72E 50%, #A8C030 100%);
/* Typography */
--font-heading: 'Montserrat', sans-serif;
--font-body: 'Inter', sans-serif;
/* Spacing */
--space-xs: 0.5rem;
--space-sm: 1rem;
--space-md: 1.5rem;
--space-lg: 2rem;
--space-xl: 3rem;
--space-2xl: 5rem;
--space-3xl: 7rem;
/* Layout */
--content-width: 800px;
--wide-width: 1200px;
/* Border */
--radius-sm: 6px;
--radius-md: 10px;
--radius-lg: 16px;
--radius-full: 9999px;
/* Shadows */
--shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
--shadow-md: 0 4px 12px rgba(0,0,0,0.1);
--shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
--shadow-glow: 0 4px 20px rgba(224,231,34,0.3);
}
/* ============================================
BASE STYLES
============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {font-family: var(--font-body);color: var(--color-body-text);background: var(--color-background);line-height: 1.7;font-size: 1.0625rem;-webkit-font-smoothing: antialiased;overflow-x: hidden;}
h1, h2, h3, h4, h5, h6 {font-family: var(--font-heading);color: var(--color-foreground);line-height: 1.15;font-weight: 700;}
h1 { font-size: clamp(2.75rem, 5.5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--color-foreground); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
/* ============================================
LAYOUT HELPERS
============================================ */
.container { max-width: var(--content-width); margin: 0 auto; padding: 0 var(--space-md); }
.wide { max-width: var(--wide-width); margin: 0 auto; padding: 0 var(--space-md); }
.section {padding: var(--space-2xl) var(--space-md);position: relative;}
.section--surface { background: var(--color-surface); }
.section--dark {background: var(--color-secondary);color: #FFFFFF;}
.section--dark h2, .section--dark h3, .section--dark h4 { color: #FFFFFF; }
.section--dark p { color: rgba(255,255,255,0.85); }
.section--green {background: var(--color-primary);color: var(--color-secondary);}
.section-header {text-align: center;max-width: 700px;margin: 0 auto var(--space-xl);}
.section-header p {color: var(--color-muted);font-size: 1.125rem;margin-top: 1rem;}
.section--dark .section-header p { color: rgba(255,255,255,0.75); }
/* Accent line under section headings */
.section-header h2::after {content: '';display: block;width: 60px;height: 3px;background: var(--color-accent-gradient);margin: 1rem auto 0;border-radius: 2px;}
/* ============================================
BUTTONS
============================================ */
.btn {display: inline-flex;align-items: center;gap: 0.5rem;padding: 0.875rem 2rem;border-radius: var(--radius-sm);font-family: var(--font-body);font-size: 1rem;font-weight: 600;text-decoration: none;border: 2px solid transparent;cursor: pointer;transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);line-height: 1;position: relative;overflow: hidden;}
.btn--primary {background: var(--color-primary);color: var(--color-secondary);border-color: var(--color-primary);box-shadow: 0 2px 8px rgba(224,231,34,0.3);}
.btn--primary:hover {background: var(--color-primary-hover);border-color: var(--color-primary-hover);box-shadow: var(--shadow-glow);transform: translateY(-2px);}
.btn--secondary {background: transparent;color: #FFFFFF;border-color: #FFFFFF;}
.btn--secondary:hover {background: #FFFFFF;color: var(--color-secondary);transform: translateY(-2px);}
.btn--dark {background: var(--color-secondary);color: #FFFFFF;border-color: var(--color-secondary);}
.btn--dark:hover {background: #333;border-color: #333;transform: translateY(-2px);}
.btn--outline {background: transparent;color: var(--color-secondary);border-color: var(--color-secondary);}
.btn--outline:hover {background: var(--color-secondary);color: #FFFFFF;transform: translateY(-2px);}
.btn--lg {padding: 1rem 2.5rem;font-size: 1.0625rem;}
/* CRO: Pulse animation on primary hero CTA */
.btn--pulse {animation: pulse-glow 2s ease-in-out infinite;}
@keyframes pulse-glow {
0%, 100% { box-shadow: 0 2px 8px rgba(224,231,34,0.3); }
50% { box-shadow: 0 4px 25px rgba(224,231,34,0.5); }
}
/* ============================================
HEADER / NAV
============================================ */
.site-header {position: fixed;top: 0;left: 0;right: 0;z-index: 100;transition: box-shadow 0.3s ease, transform 0.3s ease;}
.site-header.scrolled {box-shadow: 0 4px 20px rgba(0,0,0,0.3);}
.site-header.header-hidden {transform: translateY(-100%);}
.top-bar {background: var(--color-secondary);padding: 0.5rem 0;font-size: 0.8125rem;color: rgba(255,255,255,0.7);}
.top-bar-inner {max-width: var(--wide-width);margin: 0 auto;padding: 0 var(--space-md);display: flex;justify-content: space-between;align-items: center;}
.top-bar a {color: rgba(255,255,255,0.7);transition: color 0.2s;font-size: 0.8125rem;}
.top-bar a:hover { color: #FFFFFF; }
.top-bar-contact {display: flex;gap: 1.5rem;align-items: center;}
.top-bar-hours {color: rgba(255,255,255,0.5);}
.main-nav {background: #C3D72E;}
.header-inner {max-width: var(--wide-width);margin: 0 auto;padding: 0 var(--space-md);display: flex;align-items: center;justify-content: space-between;height: 72px;}
.logo { height: 55px; width: auto; }
.nav-links {display: flex;align-items: center;gap: 2rem;list-style: none;}
.nav-links a {font-size: 0.9375rem;font-weight: 600;color: var(--color-secondary);transition: color 0.2s;letter-spacing: 0.01em;position: relative;}
.nav-links a::after {content: '';position: absolute;bottom: -4px;left: 0;width: 0;height: 2px;background: var(--color-secondary);transition: width 0.3s ease;}
.nav-links a:hover::after { width: 100%; }
.nav-cta {display: flex;align-items: center;gap: 1rem;}
.nav-phone {font-weight: 700;color: var(--color-secondary);font-size: 1rem;letter-spacing: 0.02em;}
.mobile-toggle {display: none;background: none;border: none;cursor: pointer;padding: 0.5rem;}
.mobile-toggle span {display: block;width: 24px;height: 2px;background: var(--color-secondary);margin: 5px 0;transition: 0.3s;}
.mobile-toggle.active span:nth-child(1) {transform: rotate(45deg) translate(5px, 5px);}
.mobile-toggle.active span:nth-child(2) {opacity: 0;}
.mobile-toggle.active span:nth-child(3) {transform: rotate(-45deg) translate(5px, -5px);}
/* Desktop dropdown sub-menus */
.nav-links > li {position: relative;}
.nav-links > li.has-dropdown > a {display: inline-flex;align-items: center;gap: 0.3rem;}
.nav-links > li.has-dropdown > a .dropdown-arrow {width: 10px;height: 10px;transition: transform 0.3s ease;}
.nav-links > li.has-dropdown > a .dropdown-arrow polyline {stroke: var(--color-secondary);stroke-width: 2.5;fill: none;}
.dropdown-menu {position: absolute;top: 100%;left: 50%;transform: translateX(-50%);min-width: 220px;background: #FFFFFF;border-radius: var(--radius-md);box-shadow: var(--shadow-lg);padding: 0.5rem 0;opacity: 0;visibility: hidden;transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;transform: translateX(-50%) translateY(8px);z-index: 110;list-style: none;}
.dropdown-menu::before {content: '';position: absolute;top: -8px;left: 0;right: 0;height: 8px;}
.nav-links > li.has-dropdown:hover .dropdown-menu {opacity: 1;visibility: visible;transform: translateX(-50%) translateY(0);}
.nav-links > li.has-dropdown:hover > a .dropdown-arrow {transform: rotate(180deg);}
.dropdown-menu li a {display: block;padding: 0.6rem 1.25rem;font-size: 0.875rem;font-weight: 500;color: var(--color-body-text);transition: background 0.2s, color 0.2s;white-space: nowrap;}
.dropdown-menu li a::after {display: none;}
.dropdown-menu li a:hover {background: var(--color-surface);color: var(--color-foreground);}
.dropdown-menu li:first-child a {border-radius: var(--radius-md) var(--radius-md) 0 0;}
.dropdown-menu li:last-child a {border-radius: 0 0 var(--radius-md) var(--radius-md);}
/* Two-column dropdown for locations */
.dropdown-menu--wide {min-width: 320px;display: grid;grid-template-columns: 1fr 1fr;}
.dropdown-menu--wide li:first-child a,
.dropdown-menu--wide li:last-child a {border-radius: 0;}
.dropdown-menu .dropdown-view-all a {color: var(--color-foreground);font-weight: 600;border-top: 1px solid var(--color-border);margin-top: 0.25rem;padding-top: 0.75rem;}
.dropdown-menu--wide .dropdown-view-all {grid-column: 1 / -1;}
/* Mobile menu panel */
.mobile-menu {display: none;position: fixed;top: 60px;left: 0;right: 0;bottom: 0;background: #FFFFFF;z-index: 99;overflow-y: auto;padding: 1rem 0;transform: translateX(100%);transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);}
.mobile-menu.open {transform: translateX(0);}
.mobile-menu ul {list-style: none;}
.mobile-menu > ul > li > a,
.mobile-menu > ul > li > .mobile-dropdown-toggle {display: flex;align-items: center;justify-content: space-between;padding: 1rem 1.5rem;font-size: 1.0625rem;font-weight: 600;color: var(--color-foreground);border-bottom: 1px solid var(--color-border);cursor: pointer;background: none;border-top: none;border-left: none;border-right: none;width: 100%;font-family: var(--font-body);text-align: left;}
.mobile-dropdown-toggle .mobile-arrow {width: 16px;height: 16px;transition: transform 0.3s ease;}
.mobile-dropdown-toggle .mobile-arrow polyline {stroke: var(--color-muted);stroke-width: 2.5;fill: none;}
.mobile-dropdown-toggle.active .mobile-arrow {transform: rotate(180deg);}
.mobile-submenu {max-height: 0;overflow: hidden;transition: max-height 0.35s ease;background: var(--color-surface);}
.mobile-submenu.open {max-height: 600px;}
.mobile-submenu li a {display: block;padding: 0.75rem 1.5rem 0.75rem 2.25rem;font-size: 0.9375rem;font-weight: 500;color: var(--color-body-text);border-bottom: 1px solid var(--color-border);}
.mobile-submenu li:last-child a {border-bottom: none;}
.mobile-submenu li a:hover {color: var(--color-foreground);}
.mobile-menu-cta {padding: 1.5rem;display: flex;flex-direction: column;gap: 0.75rem;}
.mobile-menu-cta .btn {text-align: center;justify-content: center;}
/* ============================================
HERO - ENHANCED
============================================ */
/* Above-fold wrapper: hero + trust strip = 100vh */
.above-fold {height: 100vh;display: flex;flex-direction: column;padding-top: 104px;}
.hero-section {position: relative;flex: 1;display: flex;align-items: center;overflow: hidden;}
.hero-video {position: absolute;top: 0; left: 0;width: 100%; height: 100%;object-fit: cover;}
.hero-overlay {position: absolute;top: 0; left: 0;width: 100%; height: 100%;background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.5) 100%);}
.hero-content {position: relative;z-index: 2;max-width: var(--wide-width);margin: 0 auto;padding: 0 var(--space-md);color: #FFFFFF;}
.hero-content h1 {color: #FFFFFF;margin-bottom: 1.25rem;max-width: 700px;opacity: 0;transform: translateY(40px);animation: hero-fade-up 0.8s ease forwards;animation-delay: 0.3s;}
.hero-content h1 span {color: var(--color-primary);position: relative;}
.hero-subtitle {font-size: 1.3rem;line-height: 1.6;max-width: 580px;margin-bottom: 2rem;color: rgba(255,255,255,0.9);opacity: 0;transform: translateY(30px);animation: hero-fade-up 0.8s ease forwards;animation-delay: 0.6s;}
.hero-ctas {display: flex;gap: 1rem;flex-wrap: wrap;align-items: center;opacity: 0;transform: translateY(30px);animation: hero-fade-up 0.8s ease forwards;animation-delay: 0.9s;}
/* CRO: Social proof badge near hero CTA */
.hero-social-proof {display: flex;align-items: center;gap: 0.75rem;margin-top: 1.5rem;opacity: 0;animation: hero-fade-up 0.8s ease forwards;animation-delay: 1.2s;}
.hero-social-proof .stars {color: var(--color-primary);font-size: 1.1rem;letter-spacing: 2px;}
.hero-social-proof span {color: rgba(255,255,255,0.7);font-size: 0.875rem;}
@keyframes hero-fade-up {
to { opacity: 1; transform: translateY(0); }
}
/* ============================================
TRUST STRIP - ENHANCED
============================================ */
.trust-strip {background: var(--color-secondary);padding: 1.5rem var(--space-md);position: relative;overflow: hidden;flex-shrink: 0;}
.trust-strip::before {content: '';position: absolute;top: 0;left: 0;right: 0;height: 3px;background: var(--color-accent-gradient);}
.trust-strip-inner {max-width: var(--wide-width);margin: 0 auto;display: flex;justify-content: center;gap: 3rem;flex-wrap: wrap;}
.trust-item {display: flex;align-items: center;gap: 0.75rem;color: #FFFFFF;}
.trust-icon {width: 40px;height: 40px;background: var(--color-primary);border-radius: var(--radius-full);display: flex;align-items: center;justify-content: center;flex-shrink: 0;transition: transform 0.3s ease, box-shadow 0.3s ease;}
.trust-item:hover .trust-icon {transform: scale(1.1);box-shadow: 0 0 15px rgba(224,231,34,0.4);}
.trust-icon svg {width: 20px;height: 20px;fill: none;stroke: var(--color-secondary);stroke-width: 2;stroke-linecap: round;stroke-linejoin: round;}
.trust-text strong {display: block;font-size: 0.9375rem;font-weight: 600;}
.trust-text span {font-size: 0.8125rem;color: rgba(255,255,255,0.65);}
/* ============================================
BREADCRUMBS (IN-HERO)
============================================ */
.breadcrumbs {margin-bottom: var(--space-md);font-size: 0.875rem;opacity: 0;animation: hero-fade-up 0.8s ease forwards;animation-delay: 0.1s;}
.breadcrumbs a {color: rgba(255,255,255,0.6);text-decoration: none;transition: color 0.2s;}
.breadcrumbs a:hover {color: #FFFFFF;}
.breadcrumbs .separator {margin: 0 0.5rem;color: rgba(255,255,255,0.4);}
.breadcrumbs .current {color: rgba(255,255,255,0.9);font-weight: 500;}
/* ============================================
QUOTE FORM - CRO ENHANCED
============================================ */
.quote-section {padding: var(--space-2xl) var(--space-md);background: var(--color-surface);position: relative;}
.quote-inner {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: 1fr 1fr;gap: var(--space-xl);align-items: start;}
.quote-text h2 {margin-bottom: 1rem;}
.quote-text p {font-size: 1.125rem;color: var(--color-muted);}
/* CRO: Trust badges near form */
.quote-trust-badges {display: flex;gap: 1.5rem;margin-top: 1.5rem;padding-top: 1.5rem;border-top: 1px solid var(--color-border);}
.quote-trust-badge {display: flex;align-items: center;gap: 0.5rem;font-size: 0.8125rem;color: var(--color-muted);font-weight: 500;}
.quote-trust-badge svg {width: 18px;height: 18px;fill: none;stroke: var(--color-primary-hover);stroke-width: 2;stroke-linecap: round;stroke-linejoin: round;flex-shrink: 0;}
.quote-text .quote-phone {margin-top: 2rem;padding-top: 2rem;border-top: 1px solid var(--color-border);}
.quote-text .quote-phone strong {font-size: 1.25rem;color: var(--color-foreground);display: block;margin-bottom: 0.25rem;}
.quote-text .quote-phone span {color: var(--color-muted);font-size: 0.875rem;}
.quote-form {background: #FFFFFF;padding: var(--space-lg);border-radius: var(--radius-md);box-shadow: var(--shadow-lg);border: 1px solid var(--color-border);position: relative;overflow: hidden;}
/* CRO: Green accent top bar on form */
.quote-form::before {content: '';position: absolute;top: 0;left: 0;right: 0;height: 4px;background: var(--color-accent-gradient);}
.quote-form h3 {margin-bottom: 0.5rem;font-size: 1.25rem;}
/* CRO: Urgency subtext under form heading */
.form-urgency {font-size: 0.8125rem;color: var(--color-primary-hover);font-weight: 600;margin-bottom: var(--space-md);display: flex;align-items: center;gap: 0.5rem;}
.form-urgency svg {width: 14px;height: 14px;fill: none;stroke: currentColor;stroke-width: 2;stroke-linecap: round;stroke-linejoin: round;}
.form-row {display: grid;grid-template-columns: 1fr 1fr;gap: 1rem;margin-bottom: 1rem;}
.form-group {margin-bottom: 1rem;}
.form-group label {display: block;font-size: 0.875rem;font-weight: 500;color: var(--color-foreground);margin-bottom: 0.375rem;}
.form-group input,
.form-group select,
.form-group textarea {width: 100%;padding: 0.75rem 1rem;border: 1px solid var(--color-border);border-radius: var(--radius-sm);font-family: var(--font-body);font-size: 0.9375rem;color: var(--color-foreground);background: #FFFFFF;transition: border-color 0.2s, box-shadow 0.2s;}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {outline: none;border-color: var(--color-primary);box-shadow: 0 0 0 3px rgba(224,231,34,0.15);}
.form-group textarea {resize: vertical;min-height: 100px;}
.form-submit {width: 100%;padding: 1rem;font-size: 1.0625rem;position: relative;}
/* ============================================
SERVICE CARDS - ENHANCED
============================================ */
.service-grid {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: repeat(4, 1fr);gap: var(--space-md);}
.service-card {background: #FFFFFF;border-radius: var(--radius-md);overflow: hidden;box-shadow: var(--shadow-sm);transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);border: 1px solid var(--color-border);border-top: 3px solid var(--color-primary);}
.service-card:hover {box-shadow: var(--shadow-lg);transform: translateY(-8px);border-top-color: var(--color-primary-hover);}
.service-card-img {width: 100%;height: 180px;object-fit: cover;background: var(--color-surface);transition: transform 0.5s ease;}
.service-card:hover .service-card-img {transform: scale(1.05);}
.service-card-img-wrap {overflow: hidden;height: 180px;}
.service-card-body {padding: var(--space-md);}
.service-card-body h4 {margin-bottom: 0.5rem;}
.service-card-body p {font-size: 0.9375rem;color: var(--color-muted);margin-bottom: 1rem;}
.service-card-link {font-size: 0.875rem;font-weight: 600;color: var(--color-foreground);display: inline-flex;align-items: center;gap: 0.25rem;transition: gap 0.3s ease, color 0.2s;}
.service-card-link:hover {color: var(--color-primary-hover);gap: 0.5rem;}
.services-cta {text-align: center;margin-top: var(--space-xl);}
/* ============================================
WHY CHOOSE FOX - ENHANCED
============================================ */
.features-grid {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: repeat(3, 1fr);gap: var(--space-lg);}
.feature-card {text-align: center;padding: var(--space-lg);border-radius: var(--radius-md);transition: all 0.4s ease;background: #FFFFFF;border: 1px solid transparent;}
.feature-card:hover {border-color: var(--color-border);box-shadow: var(--shadow-md);transform: translateY(-4px);}
.feature-icon {width: 72px;height: 72px;background: var(--color-primary);border-radius: var(--radius-full);display: flex;align-items: center;justify-content: center;margin: 0 auto var(--space-md);transition: transform 0.3s ease, box-shadow 0.3s ease;}
.feature-card:hover .feature-icon {transform: scale(1.1) rotate(5deg);box-shadow: 0 0 20px rgba(224,231,34,0.35);}
.feature-icon svg {width: 30px;height: 30px;fill: none;stroke: var(--color-secondary);stroke-width: 2;stroke-linecap: round;stroke-linejoin: round;}
.feature-card h4 {margin-bottom: 0.75rem;font-size: 1.25rem;}
.feature-card p {color: var(--color-muted);font-size: 0.9375rem;}
/* ============================================
ABOUT / MISSION - ENHANCED
============================================ */
.about-split {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: 1fr 1fr;gap: var(--space-xl);align-items: center;}
.about-image {border-radius: var(--radius-md);overflow: hidden;aspect-ratio: 4/3;position: relative;}
.about-image img {width: 100%;height: 100%;object-fit: cover;transition: transform 0.6s ease;}
.about-image:hover img {transform: scale(1.03);}
/* Green accent corner on about image */
.about-image::after {content: '';position: absolute;bottom: 0;right: 0;width: 60px;height: 60px;background: var(--color-primary);clip-path: polygon(100% 0, 100% 100%, 0 100%);}
.about-text h2 {margin-bottom: 0.5rem;}
.about-text .about-tagline {font-size: 1.25rem;color: var(--color-foreground);font-weight: 500;margin-bottom: 1.5rem;line-height: 1.5;}
.about-text p {margin-bottom: 1.25rem;}
/* ============================================
TESTIMONIAL SLIDER
============================================ */
.testimonial-slider-wrap {max-width: 720px;margin: 0 auto;position: relative;}
.testimonial-slider {overflow: hidden;border-radius: var(--radius-md);}
.testimonial-track {display: flex;transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);}
.testimonial-slide {min-width: 100%;padding: 0 var(--space-md);box-sizing: border-box;}
.testimonial-card {background: #FFFFFF;border: 1px solid var(--color-border);border-radius: var(--radius-md);padding: var(--space-xl) var(--space-xl);position: relative;text-align: center;}
.testimonial-card::before {content: '';position: absolute;top: 0;left: var(--space-xl);right: var(--space-xl);height: 3px;background: var(--color-accent-gradient);border-radius: 0 0 3px 3px;}
.testimonial-quote {font-size: 4rem;color: var(--color-primary);font-family: Georgia, serif;line-height: 1;margin-bottom: 0.75rem;}
.testimonial-card blockquote {font-size: 1.125rem;color: var(--color-body-text);font-style: italic;line-height: 1.8;margin-bottom: 1.5rem;max-width: 540px;margin-left: auto;margin-right: auto;}
.testimonial-author {font-weight: 700;color: var(--color-foreground);font-size: 1rem;}
.testimonial-stars {color: var(--color-primary);font-size: 1rem;margin-top: 0.5rem;letter-spacing: 3px;}
.slider-arrow {position: absolute;top: 50%;transform: translateY(-50%);width: 48px;height: 48px;border-radius: var(--radius-full);background: #FFFFFF;border: 1px solid var(--color-border);box-shadow: var(--shadow-md);display: flex;align-items: center;justify-content: center;cursor: pointer;z-index: 3;transition: all 0.3s ease;}
.slider-arrow:hover {background: var(--color-primary);border-color: var(--color-primary);box-shadow: var(--shadow-glow);}
.slider-arrow svg {width: 20px;height: 20px;stroke: var(--color-secondary);stroke-width: 2.5;fill: none;stroke-linecap: round;stroke-linejoin: round;}
.slider-arrow--prev { left: -24px; }
.slider-arrow--next { right: -24px; }
.slider-dots {display: flex;justify-content: center;gap: 0.5rem;margin-top: var(--space-lg);}
.slider-dot {width: 10px;height: 10px;border-radius: var(--radius-full);background: var(--color-border);border: none;cursor: pointer;transition: all 0.3s ease;padding: 0;}
.slider-dot.active {background: var(--color-primary);width: 28px;box-shadow: 0 0 8px rgba(224,231,34,0.4);}
/* Social proof bar */
.social-proof-bar {background: var(--color-secondary);padding: 1.25rem var(--space-md);text-align: center;}
.social-proof-bar-inner {max-width: var(--wide-width);margin: 0 auto;display: flex;justify-content: center;align-items: center;gap: 1rem;flex-wrap: wrap;color: rgba(255,255,255,0.85);font-size: 0.9375rem;}
.social-proof-bar .stars {color: var(--color-primary);font-size: 1.1rem;letter-spacing: 2px;}
.social-proof-bar .divider {color: rgba(255,255,255,0.3);}
@media (max-width: 768px) {
.slider-arrow { display: none; }
.testimonial-card { padding: var(--space-lg) var(--space-md); }
.testimonial-slide { padding: 0 var(--space-xs); }
}
/* ============================================
GALLERY - ENHANCED
============================================ */
.gallery-grid {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: repeat(3, 1fr);gap: var(--space-sm);}
.gallery-item {aspect-ratio: 4/3;border-radius: var(--radius-md);overflow: hidden;background: var(--color-surface);position: relative;}
.gallery-item img {width: 100%;height: 100%;object-fit: cover;transition: transform 0.5s ease;}
.gallery-item:hover img {transform: scale(1.1);}
/* Overlay on hover */
.gallery-item::after {content: '';position: absolute;inset: 0;background: rgba(224,231,34,0.2);opacity: 0;transition: opacity 0.3s ease;}
.gallery-item:hover::after {opacity: 1;}
/* ============================================
CTA BANNER - ENHANCED
============================================ */
.cta-banner {background: var(--color-accent-gradient);padding: var(--space-xl) var(--space-md);text-align: center;position: relative;overflow: hidden;}
/* Diagonal pattern overlay */
.cta-banner::before {content: '';position: absolute;top: -50%;left: -50%;width: 200%;height: 200%;background: repeating-linear-gradient(45deg,transparent,transparent 20px,rgba(255,255,255,0.03) 20px,rgba(255,255,255,0.03) 40px);pointer-events: none;}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {margin-bottom: 0.75rem;}
.cta-banner p {font-size: 1.125rem;margin-bottom: 2rem;max-width: 550px;margin-left: auto;margin-right: auto;color: rgba(26,26,26,0.75);}
.cta-banner-buttons {display: flex;gap: 1rem;justify-content: center;flex-wrap: wrap;}
/* ============================================
STATS - ANIMATED COUNTERS
============================================ */
.stats-grid {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: repeat(4, 1fr);gap: var(--space-lg);text-align: center;}
.stat-item {position: relative;padding: var(--space-lg) 0;}
.stat-item:not(:last-child)::after {content: '';position: absolute;right: 0;top: 20%;height: 60%;width: 1px;background: rgba(255,255,255,0.15);}
.stat-item .stat-number {font-family: var(--font-heading);font-size: clamp(2.5rem, 5vw, 3.5rem);font-weight: 800;color: var(--color-primary);line-height: 1;}
.stat-item .stat-label {font-size: 0.9375rem;color: rgba(255,255,255,0.75);margin-top: 0.5rem;}
/* ============================================
PROMO SLIDESHOW
============================================ */
.promo-slideshow {position: relative;max-width: var(--wide-width);margin: 0 auto;overflow: hidden;border-radius: var(--radius-md);}
.promo-track {display: flex;transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);}
.promo-slide {min-width: 100%;display: grid;grid-template-columns: 1fr 1fr;gap: var(--space-xl);align-items: center;padding: 0 var(--space-md);}
.promo-slide-text h2 {margin-bottom: 0.75rem;}
.promo-slide-text p {font-size: 1.0625rem;color: var(--color-muted);margin-bottom: 1.25rem;}
.promo-slide-image {border-radius: var(--radius-md);overflow: hidden;}
.promo-slide-image img {width: 100%;border-radius: var(--radius-md);transition: transform 0.5s ease;}
.promo-slide-image:hover img {transform: scale(1.03);}
/* "X People Used Today" badge */
.promo-badge {display: inline-flex;align-items: center;gap: 0.5rem;background: var(--color-secondary);color: #FFFFFF;padding: 0.4rem 1rem;border-radius: var(--radius-full);font-size: 0.8125rem;font-weight: 600;margin-bottom: 1.25rem;}
.promo-badge .badge-dot {width: 8px;height: 8px;background: var(--color-primary);border-radius: 50%;animation: badge-pulse 1.5s ease-in-out infinite;}
@keyframes badge-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
/* Price card on right side */
.promo-price-card {background: var(--color-secondary);border-radius: var(--radius-md);padding: var(--space-xl);display: flex;flex-direction: column;align-items: center;justify-content: center;text-align: center;position: relative;overflow: hidden;}
/* Subtle brand green glow at top */
.promo-price-card::before {content: '';position: absolute;top: 0; left: 0; right: 0;height: 4px;background: var(--color-accent-gradient);}
.promo-price-label {font-size: 0.9375rem;color: rgba(255,255,255,0.6);font-weight: 500;margin-bottom: 0.25rem;}
.promo-price-amount {font-family: var(--font-heading);font-size: clamp(3.5rem, 7vw, 5rem);font-weight: 800;color: var(--color-primary);line-height: 1;margin-bottom: 1.5rem;}
.promo-slide-text h2 .highlight {color: var(--color-primary-hover);}
/* Offer tag */
.promo-offer-tag {display: inline-block;background: var(--color-primary);color: var(--color-secondary);padding: 0.375rem 1rem;border-radius: var(--radius-sm);font-weight: 700;font-size: 0.8125rem;letter-spacing: 0.03em;margin-bottom: 1rem;}
/* Fine print */
.promo-fine-print {font-size: 0.8125rem;color: var(--color-muted);margin-top: 0.5rem;}
/* Slideshow nav arrows — ghost style, visible on hover */
.promo-slideshow:hover .promo-nav {opacity: 1;}
.promo-nav {position: absolute;top: 50%;transform: translateY(-50%);width: 44px;height: 44px;background: rgba(255,255,255,0.85);border: 1px solid var(--color-border);border-radius: var(--radius-full);cursor: pointer;display: flex;align-items: center;justify-content: center;z-index: 3;opacity: 0;transition: opacity 0.3s ease, background 0.2s ease, transform 0.2s ease;box-shadow: var(--shadow-sm);backdrop-filter: blur(4px);}
.promo-nav:hover {background: #FFFFFF;transform: translateY(-50%) scale(1.08);box-shadow: var(--shadow-md);}
.promo-nav svg {width: 18px;height: 18px;fill: none;stroke: var(--color-secondary);stroke-width: 2.5;stroke-linecap: round;stroke-linejoin: round;}
.promo-nav--prev { left: 16px; }
.promo-nav--next { right: 16px; }
/* Slideshow dots */
.promo-dots {display: flex;justify-content: center;gap: 0.5rem;margin-top: var(--space-md);}
.promo-dot {width: 10px;height: 10px;border-radius: 50%;background: var(--color-border);border: none;cursor: pointer;transition: background 0.3s, transform 0.3s;}
.promo-dot.active {background: var(--color-primary);transform: scale(1.3);}
@media (max-width: 768px) {
.promo-slide { grid-template-columns: 1fr; gap: var(--space-md); }
.promo-nav { width: 36px; height: 36px; }
.promo-nav--prev { left: 6px; }
.promo-nav--next { right: 6px; }
}
/* ============================================
FRANCHISE SLIM BANNER - BRAND GREEN
============================================ */
.franchise-banner {background: var(--color-primary);padding: 1.5rem var(--space-md);text-align: center;}
.franchise-banner p {font-size: 1rem;color: var(--color-secondary);margin: 0;font-weight: 500;}
.franchise-banner strong {color: var(--color-secondary);}
.franchise-banner a {font-weight: 700;color: var(--color-secondary);text-decoration: underline;text-underline-offset: 3px;}
.franchise-banner a:hover { color: #333; }
/* ============================================
STICKY MOBILE CTA (CRO)
============================================ */
.sticky-cta {display: none;position: fixed;bottom: 0;left: 0;right: 0;z-index: 99;background: var(--color-secondary);padding: 0.75rem var(--space-md);box-shadow: 0 -4px 20px rgba(0,0,0,0.2);}
.sticky-cta-inner {display: flex;gap: 0.75rem;max-width: var(--wide-width);margin: 0 auto;}
.sticky-cta .btn {flex: 1;justify-content: center;padding: 0.75rem;font-size: 0.9375rem;}
/* ============================================
FOOTER
============================================ */
.site-footer {background: var(--color-secondary);color: rgba(255,255,255,0.75);padding: var(--space-2xl) var(--space-md) var(--space-lg);}
.footer-grid {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: 1.5fr 1fr 1fr 1fr;gap: var(--space-xl);}
.footer-col h4 {color: #FFFFFF;font-size: 1rem;margin-bottom: 1.25rem;font-weight: 600;}
.footer-col p {font-size: 0.875rem;line-height: 1.7;color: rgba(255,255,255,0.65);}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {color: rgba(255,255,255,0.65);font-size: 0.875rem;transition: color 0.2s, padding-left 0.2s;}
.footer-col ul li a:hover {color: var(--color-primary);padding-left: 4px;}
.footer-bottom {max-width: var(--wide-width);margin: var(--space-xl) auto 0;padding-top: var(--space-md);border-top: 1px solid rgba(255,255,255,0.1);display: flex;justify-content: space-between;align-items: center;font-size: 0.8125rem;color: rgba(255,255,255,0.45);}
.footer-social {display: flex;gap: 1rem;}
.footer-social a {color: rgba(255,255,255,0.45);transition: color 0.2s;}
.footer-social a:hover { color: var(--color-primary); }
/* ============================================
ANIMATIONS - ENHANCED
============================================ */
.reveal {opacity: 0;transform: translateY(30px);transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);}
.reveal.visible {opacity: 1;transform: translateY(0);}
/* Staggered card reveals */
.reveal-stagger { transition-delay: 0s; }
.reveal-stagger:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger:nth-child(7) { transition-delay: 0.6s; }
.reveal-stagger:nth-child(8) { transition-delay: 0.7s; }
/* Slide from left */
.reveal-left {opacity: 0;transform: translateX(-40px);transition: opacity 0.7s ease, transform 0.7s ease;}
.reveal-left.visible {opacity: 1;transform: translateX(0);}
/* Slide from right */
.reveal-right {opacity: 0;transform: translateX(40px);transition: opacity 0.7s ease, transform 0.7s ease;}
.reveal-right.visible {opacity: 1;transform: translateX(0);}
/* Scale up */
.reveal-scale {opacity: 0;transform: scale(0.9);transition: opacity 0.6s ease, transform 0.6s ease;}
.reveal-scale.visible {opacity: 1;transform: scale(1);}
/* ============================================
RESPONSIVE
============================================ */
@media (max-width: 1024px) {
.service-grid { grid-template-columns: repeat(2, 1fr); }
.footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
.nav-links { display: none; }
.nav-cta .btn { display: none; }
.nav-phone { display: none; }
.mobile-toggle { display: block; }
.mobile-menu { display: block; }
.top-bar { display: none; }
.header-inner { height: 60px; }
.above-fold { height: auto; padding-top: 60px; }
body.mobile-menu-open { overflow: hidden; }
.hero-section { min-height: calc(100vh - 60px); }
.hero-content h1 { font-size: 2.25rem; }
.hero-subtitle { font-size: 1.0625rem; }
.quote-inner { grid-template-columns: 1fr; }
.form-row { grid-template-columns: 1fr; }
.service-grid { grid-template-columns: 1fr; }
.features-grid { grid-template-columns: 1fr; }
.about-split { grid-template-columns: 1fr; }
.gallery-grid { grid-template-columns: repeat(2, 1fr); }
.stats-grid { grid-template-columns: repeat(2, 1fr); }
.voucher-split { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; }
.stat-item:not(:last-child)::after { display: none; }
.stat-item { padding: var(--space-sm) 0; }
.trust-strip-inner {
flex-direction: column;
gap: 1rem;
align-items: flex-start;
padding: 0 var(--space-md);
}
.section { padding: var(--space-xl) var(--space-md); }
/* Show sticky CTA on mobile */
.sticky-cta { display: block; }
body { padding-bottom: 70px; }
.quote-trust-badges { flex-direction: column; gap: 0.75rem; }
}
/* ============================================
FONT LABEL
============================================ */
.font-label {position: fixed;bottom: 20px;right: 20px;background: var(--color-secondary);color: #FFFFFF;padding: 0.5rem 1rem;border-radius: var(--radius-sm);font-size: 0.75rem;font-weight: 600;z-index: 200;font-family: var(--font-body);}
@media (max-width: 768px) {
.font-label { bottom: 80px; }
}

/* ============================================
INNER PAGE HERO (shared by all non-homepage pages)
============================================ */
.hero-inner {position: relative;min-height: 480px;display: flex;align-items: center;overflow: hidden;padding-top: 104px;}
.hero-inner-bg {position: absolute;top: 0; left: 0;width: 100%; height: 100%;object-fit: cover;}
.hero-inner .hero-content {padding: var(--space-2xl) var(--space-md);}
.hero-inner .hero-subtitle {font-size: 1.2rem;line-height: 1.7;max-width: 640px;}
/* Contact page short hero modifier */
.hero-inner--short {min-height: 420px;background: var(--color-secondary);}
.hero-inner--short .hero-inner-bg {opacity: 0.3;}
.hero-inner--short .hero-content {text-align: center;max-width: 720px;margin: 0 auto;padding: var(--space-xl) var(--space-md);}
.hero-inner--short .hero-content h1 {font-size: clamp(2rem, 4vw, 2.75rem);max-width: none;}
/* ============================================
URGENCY BADGES
============================================ */
/* Floating urgency badge (positioned in hero above content) */
.hero-urgency-badge {position: absolute;top: 130px;left: 50%;transform: translateX(-50%);z-index: 3;display: inline-flex;align-items: center;gap: 0.5rem;background: rgba(224,231,34,0.15);border: 1px solid rgba(224,231,34,0.3);color: var(--color-primary);padding: 0.4rem 1rem;border-radius: var(--radius-full);font-size: 0.8125rem;font-weight: 600;backdrop-filter: blur(4px);-webkit-backdrop-filter: blur(4px);}
.hero-urgency-badge .badge-dot {width: 8px;height: 8px;background: var(--color-primary);border-radius: 50%;animation: badge-pulse 1.5s ease-in-out infinite;}
/* Inline urgency badge (inside hero-content) */
.urgency-badge {display: inline-flex;align-items: center;gap: 0.5rem;background: rgba(224,231,34,0.15);border: 1px solid rgba(224,231,34,0.3);color: var(--color-primary);padding: 0.4rem 1rem;border-radius: var(--radius-full);font-size: 0.8125rem;font-weight: 600;margin-top: 1rem;opacity: 0;animation: hero-fade-up 0.8s ease forwards;animation-delay: 1.4s;}
.urgency-badge .badge-dot {width: 8px;height: 8px;background: var(--color-primary);border-radius: 50%;animation: badge-pulse 1.5s ease-in-out infinite;}
@keyframes badge-pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(1.3); }
}
/* ============================================
FAQ ACCORDION
============================================ */
.faq-list {max-width: var(--content-width);margin: 0 auto;}
.faq-item {border: 1px solid var(--color-border);border-radius: var(--radius-md);margin-bottom: var(--space-sm);overflow: hidden;transition: border-color 0.3s ease, box-shadow 0.3s ease;}
.faq-item:hover {border-color: var(--color-primary);}
.faq-item.active {border-color: var(--color-primary);box-shadow: 0 2px 12px rgba(224,231,34,0.15);}
.faq-question {width: 100%;padding: 1.25rem var(--space-md);background: #FFFFFF;border: none;text-align: left;cursor: pointer;font-family: var(--font-body);font-size: 1rem;font-weight: 600;color: var(--color-foreground);display: flex;justify-content: space-between;align-items: center;gap: 1rem;transition: background 0.2s ease;}
.faq-question:hover {background: var(--color-surface);}
.faq-item.active .faq-question {background: var(--color-surface);}
.faq-answer {max-height: 0;overflow: hidden;transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;}
.faq-item.active .faq-answer {max-height: 500px;}
.faq-answer-inner {padding: 0 var(--space-md) 1.25rem;font-size: 0.9375rem;color: var(--color-muted);line-height: 1.7;}
/* FAQ icon variant (circle with arrow) */
.faq-icon {width: 28px;height: 28px;border-radius: 50%;background: var(--color-surface);display: flex;align-items: center;justify-content: center;flex-shrink: 0;transition: transform 0.3s ease, background 0.3s ease;}
.faq-item.active .faq-icon {transform: rotate(180deg);background: var(--color-primary);}
.faq-icon svg {width: 14px;height: 14px;fill: none;stroke: var(--color-secondary);stroke-width: 2.5;stroke-linecap: round;stroke-linejoin: round;}
/* FAQ chevron variant (simple SVG arrow) */
.faq-chevron {width: 20px;height: 20px;fill: none;stroke: var(--color-muted);stroke-width: 2;stroke-linecap: round;stroke-linejoin: round;transition: transform 0.3s ease;flex-shrink: 0;}
.faq-item.active .faq-chevron {transform: rotate(180deg);stroke: var(--color-primary-hover);}
/* ============================================
STEPS / HOW IT WORKS
============================================ */
.steps-grid {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: repeat(3, 1fr);gap: var(--space-lg);position: relative;}
.steps-grid::before {content: '';position: absolute;top: 48px;left: 15%;right: 15%;height: 2px;background: var(--color-border);z-index: 0;}
.step-card {text-align: center;padding: var(--space-lg);border-radius: var(--radius-md);transition: all 0.4s ease;background: #FFFFFF;border: 1px solid transparent;position: relative;z-index: 1;}
.step-card:hover {border-color: var(--color-border);box-shadow: var(--shadow-md);transform: translateY(-4px);}
.step-number {width: 64px;height: 64px;background: var(--color-primary);border-radius: var(--radius-full);display: flex;align-items: center;justify-content: center;margin: 0 auto var(--space-md);font-family: var(--font-heading);font-size: 1.5rem;font-weight: 800;color: var(--color-secondary);border: 4px solid #FFFFFF;box-shadow: var(--shadow-md);transition: transform 0.3s ease, box-shadow 0.3s ease;}
.step-card:hover .step-number {transform: scale(1.1);box-shadow: 0 0 20px rgba(224,231,34,0.35);}
.step-card h4 {margin-bottom: 0.75rem;font-size: 1.25rem;}
.step-card p {color: var(--color-muted);font-size: 0.9375rem;}
/* Connecting line between individual step cards */
.step-card:not(:last-child)::after {content: '';position: absolute;top: 32px;right: -16px;width: 32px;height: 2px;background: var(--color-border);}
/* ============================================
TIPS SLIDER
============================================ */
.tips-slider-wrap {max-width: var(--wide-width);margin: 0 auto;position: relative;}
.tips-slider {overflow: hidden;border-radius: var(--radius-md);}
.tips-track {display: flex;transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);}
.tip-slide {min-width: 25%;padding: 0 var(--space-sm);box-sizing: border-box;}
.tip-card {padding: var(--space-lg);background: #FFFFFF;border-radius: var(--radius-md);border: 1px solid var(--color-border);box-shadow: var(--shadow-sm);}
.tip-card h4 {margin-bottom: 0.75rem;font-size: 1.125rem;display: flex;align-items: center;gap: 0.5rem;}
.tip-card h4 svg {width: 22px;height: 22px;fill: none;stroke: var(--color-primary-hover);stroke-width: 2;stroke-linecap: round;stroke-linejoin: round;flex-shrink: 0;}
.tip-card p {font-size: 0.9375rem;color: var(--color-muted);line-height: 1.7;margin-bottom: 1rem;}
.tip-read-more {display: inline-flex;align-items: center;gap: 0.375rem;font-size: 0.875rem;font-weight: 600;color: var(--color-foreground);transition: gap 0.3s ease, color 0.2s;}
.tip-read-more:hover {color: var(--color-primary-hover);gap: 0.625rem;}
.tip-read-more svg {width: 16px;height: 16px;fill: none;stroke: currentColor;stroke-width: 2;stroke-linecap: round;stroke-linejoin: round;}
.tips-slider-wrap .slider-arrow--prev { left: -24px; }
.tips-slider-wrap .slider-arrow--next { right: -24px; }
.tips-slider-wrap .slider-arrow { display: none; }
.tips-dots {display: none;justify-content: center;gap: 0.5rem;margin-top: var(--space-lg);}
.tips-dot {width: 10px;height: 10px;border-radius: var(--radius-full);background: var(--color-border);border: none;cursor: pointer;transition: all 0.3s ease;padding: 0;}
.tips-dot.active {background: var(--color-primary);width: 28px;box-shadow: 0 0 8px rgba(224,231,34,0.4);}
/* ============================================
ABOUT PAGE COMPONENTS
============================================ */
.about-text h2 { margin-bottom: 1rem; }
.about-text h3 { margin-bottom: 0.5rem; }
.about-text p { margin-bottom: 1.25rem; }
.about-text .local-benefit { margin-bottom: 1.25rem; }
.about-text .local-benefit strong { color: var(--color-foreground); }
.feature-card--accent {border-top: 3px solid var(--color-primary);text-align: left;}
.feature-card--accent .feature-icon {margin: 0 0 var(--space-md) 0;}
/* Area grid (about page district overview) */
.area-grid {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: repeat(4, 1fr);gap: var(--space-md);}
.area-card {background: #FFFFFF;border-radius: var(--radius-md);padding: var(--space-md);border: 1px solid var(--color-border);border-top: 3px solid var(--color-primary);transition: all 0.3s ease;}
.area-card:hover {box-shadow: var(--shadow-md);transform: translateY(-4px);}
.area-card h4 {font-size: 1.0625rem;margin-bottom: 0.75rem;color: var(--color-foreground);}
.area-card p {font-size: 0.8125rem;color: var(--color-muted);line-height: 1.6;}
/* Services list (about page compact grid) */
.services-list-grid {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: repeat(3, 1fr);gap: var(--space-sm);}
.service-list-item {display: flex;align-items: center;gap: 0.75rem;padding: 1rem var(--space-md);background: #FFFFFF;border: 1px solid var(--color-border);border-radius: var(--radius-sm);transition: all 0.3s ease;text-decoration: none;color: var(--color-foreground);}
.service-list-item:hover {border-color: var(--color-primary);box-shadow: var(--shadow-sm);transform: translateX(4px);color: var(--color-foreground);}
.service-list-icon {width: 36px;height: 36px;background: var(--color-primary);border-radius: var(--radius-full);display: flex;align-items: center;justify-content: center;flex-shrink: 0;}
.service-list-icon svg {width: 18px;height: 18px;fill: none;stroke: var(--color-secondary);stroke-width: 2;stroke-linecap: round;stroke-linejoin: round;}
.service-list-item span {font-size: 0.9375rem;font-weight: 500;}
/* ============================================
SERVICE PAGE COMPONENTS
============================================ */
.split-content {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: 1fr 1fr;gap: var(--space-xl);align-items: center;}
.split-content__text h2 { margin-bottom: 0.5rem; }
.split-content__text h3 { margin-bottom: 1.25rem; }
.split-content__text p { margin-bottom: 1.25rem; }
.split-content__image {border-radius: var(--radius-md);overflow: hidden;aspect-ratio: 4/3;position: relative;}
.split-content__image img {width: 100%;height: 100%;object-fit: cover;transition: transform 0.6s ease;}
.split-content__image:hover img { transform: scale(1.03); }
.split-content__image::after {content: '';position: absolute;bottom: 0;right: 0;width: 60px;height: 60px;background: var(--color-primary);clip-path: polygon(100% 0, 100% 100%, 0 100%);}
/* What's Included */
.included-grid {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: repeat(2, 1fr);gap: var(--space-lg);}
.included-card {display: flex;gap: var(--space-md);padding: var(--space-md);border-radius: var(--radius-md);transition: all 0.3s ease;background: #FFFFFF;border: 1px solid var(--color-border);}
.included-card:hover {box-shadow: var(--shadow-md);transform: translateY(-3px);border-color: var(--color-primary);}
.included-card__icon {width: 52px;height: 52px;background: var(--color-primary);border-radius: var(--radius-md);display: flex;align-items: center;justify-content: center;flex-shrink: 0;}
.included-card__icon svg {width: 24px;height: 24px;fill: none;stroke: var(--color-secondary);stroke-width: 2;stroke-linecap: round;stroke-linejoin: round;}
.included-card h4 { margin-bottom: 0.5rem; font-size: 1.0625rem; }
.included-card p { color: var(--color-muted); font-size: 0.9375rem; }
/* Mowing Options (pricing cards) */
.options-grid {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: repeat(4, 1fr);gap: var(--space-md);}
.option-card {background: #FFFFFF;border-radius: var(--radius-md);overflow: hidden;box-shadow: var(--shadow-sm);transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);border: 1px solid var(--color-border);border-top: 3px solid var(--color-primary);display: flex;flex-direction: column;}
.option-card:hover {box-shadow: var(--shadow-lg);transform: translateY(-8px);border-top-color: var(--color-primary-hover);}
.option-card__body {padding: var(--space-md);flex: 1;display: flex;flex-direction: column;}
.option-card__body h4 { margin-bottom: 0.75rem; }
.option-card__body p { font-size: 0.9375rem; color: var(--color-muted); margin-bottom: 1rem; }
.option-card__list {list-style: none;margin-top: auto;padding-top: 0.75rem;border-top: 1px solid var(--color-border);}
.option-card__list li {font-size: 0.875rem;color: var(--color-body-text);padding: 0.375rem 0;display: flex;align-items: center;gap: 0.5rem;}
.option-card__list li::before {content: '';width: 16px;height: 16px;background: var(--color-primary);border-radius: 50%;flex-shrink: 0;background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");background-size: 10px;background-position: center;background-repeat: no-repeat;}
/* Alternating content rows (Why Choose Fox) */
.alt-content-row {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: 1fr 1fr;gap: var(--space-xl);align-items: center;margin-bottom: var(--space-xl);}
.alt-content-row:last-child { margin-bottom: 0; }
.alt-content-row.reversed .alt-content-text { order: 2; }
.alt-content-row.reversed .alt-content-image { order: 1; }
.alt-content-text h4 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.alt-content-text p { color: var(--color-muted); font-size: 1rem; }
.alt-content-image {border-radius: var(--radius-md);overflow: hidden;aspect-ratio: 16/10;background: var(--color-surface);}
.alt-content-image img {width: 100%;height: 100%;object-fit: cover;transition: transform 0.5s ease;}
.alt-content-image:hover img { transform: scale(1.03); }
/* District card links (service page variant) */
.districts-grid {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: repeat(3, 1fr);gap: var(--space-md);}
a.district-card {display: block;text-decoration: none;color: inherit;}
.districts-grid .district-card {background: #FFFFFF;border: 1px solid var(--color-border);border-radius: var(--radius-md);padding: var(--space-md);transition: all 0.3s ease;}
.districts-grid .district-card:hover {box-shadow: var(--shadow-md);transform: translateY(-3px);border-color: var(--color-primary);}
.districts-grid .district-card h4 {font-size: 1.0625rem;margin-bottom: 0.75rem;display: flex;align-items: center;gap: 0.5rem;}
.districts-grid .district-card h4::before {content: '';width: 8px;height: 8px;background: var(--color-primary);border-radius: 50%;flex-shrink: 0;}
.districts-grid .district-card p {font-size: 0.875rem;color: var(--color-muted);line-height: 1.7;}
/* Related services cards */
.related-grid {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: repeat(3, 1fr);gap: var(--space-md);}
.related-card {background: #FFFFFF;border-radius: var(--radius-md);overflow: hidden;box-shadow: var(--shadow-sm);transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);border: 1px solid var(--color-border);border-top: 3px solid var(--color-primary);}
.related-card:hover {box-shadow: var(--shadow-lg);transform: translateY(-8px);border-top-color: var(--color-primary-hover);}
.related-card__body { padding: var(--space-md); }
.related-card__body h4 { margin-bottom: 0.5rem; }
.related-card__body p { font-size: 0.9375rem; color: var(--color-muted); margin-bottom: 1rem; }
.related-card__link {font-size: 0.875rem;font-weight: 600;color: var(--color-foreground);display: inline-flex;align-items: center;gap: 0.25rem;transition: gap 0.3s ease, color 0.2s;}
.related-card__link:hover {color: var(--color-primary-hover);gap: 0.5rem;}
/* ============================================
LOCATIONS HUB PAGE COMPONENTS
============================================ */
.intro-section {padding: var(--space-2xl) var(--space-md);text-align: center;}
.intro-inner { max-width: 720px; margin: 0 auto; }
.intro-inner h2 { margin-bottom: 1.25rem; }
.intro-inner h2::after {content: '';display: block;width: 60px;height: 3px;background: var(--color-accent-gradient);margin: 1rem auto 0;border-radius: 2px;}
.intro-inner p {font-size: 1.0625rem;color: var(--color-body-text);line-height: 1.8;}
/* District grid (locations hub — detailed cards) */
.district-grid {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: repeat(2, 1fr);gap: var(--space-md);}
.district-card {background: #FFFFFF;border-radius: var(--radius-md);border: 1px solid var(--color-border);border-left: 3px solid var(--color-primary);padding: var(--space-lg);transition: all 0.3s ease;position: relative;}
.district-card:hover {box-shadow: var(--shadow-md);transform: translateY(-4px);border-left-color: var(--color-primary-hover);}
.district-card h4 {margin-bottom: 0.75rem;font-size: 1.25rem;display: flex;align-items: center;gap: 0.5rem;}
.district-card h4 svg {width: 20px;height: 20px;fill: none;stroke: var(--color-primary-hover);stroke-width: 2;stroke-linecap: round;stroke-linejoin: round;flex-shrink: 0;}
.district-suburbs {font-size: 0.9375rem;color: var(--color-muted);line-height: 1.7;margin-bottom: 1rem;}
.district-meta {display: flex;align-items: center;justify-content: space-between;gap: 1rem;padding-top: 0.75rem;border-top: 1px solid var(--color-border);}
.district-count {font-size: 0.8125rem;font-weight: 600;color: var(--color-foreground);display: flex;align-items: center;gap: 0.375rem;}
.district-count svg {width: 14px;height: 14px;fill: none;stroke: var(--color-primary-hover);stroke-width: 2;stroke-linecap: round;stroke-linejoin: round;}
.district-link {font-size: 0.875rem;font-weight: 600;color: var(--color-foreground);display: inline-flex;align-items: center;gap: 0.25rem;transition: gap 0.3s ease, color 0.2s;}
.district-link:hover {color: var(--color-primary-hover);gap: 0.5rem;}
/* Service icon grid */
.service-icon-grid {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: repeat(4, 1fr);gap: var(--space-md);}
.service-icon-card {text-align: center;padding: var(--space-lg);border-radius: var(--radius-md);transition: all 0.4s ease;background: #FFFFFF;border: 1px solid var(--color-border);}
.service-icon-card:hover {border-color: var(--color-primary);box-shadow: var(--shadow-md);transform: translateY(-4px);}
.service-icon-circle {width: 64px;height: 64px;background: var(--color-primary);border-radius: var(--radius-full);display: flex;align-items: center;justify-content: center;margin: 0 auto var(--space-sm);transition: transform 0.3s ease, box-shadow 0.3s ease;}
.service-icon-card:hover .service-icon-circle {transform: scale(1.1) rotate(5deg);box-shadow: 0 0 20px rgba(224,231,34,0.35);}
.service-icon-circle svg {width: 28px;height: 28px;fill: none;stroke: var(--color-secondary);stroke-width: 2;stroke-linecap: round;stroke-linejoin: round;}
.service-icon-card h4 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.service-icon-card p { font-size: 0.875rem; color: var(--color-muted); margin-bottom: 0.75rem; }
.service-icon-link {font-size: 0.8125rem;font-weight: 600;color: var(--color-foreground);display: inline-flex;align-items: center;gap: 0.25rem;transition: gap 0.3s ease, color 0.2s;}
.service-icon-link:hover {color: var(--color-primary-hover);gap: 0.5rem;}
.services-cta {text-align: center;margin-top: var(--space-xl);}
/* Map section */
.map-section {padding: var(--space-2xl) var(--space-md) var(--space-xl);}
.map-wrap {max-width: var(--wide-width);margin: 0 auto;border-radius: var(--radius-md);overflow: hidden;box-shadow: var(--shadow-md);border: 1px solid var(--color-border);}
.map-wrapper {max-width: var(--wide-width);margin: 0 auto;border-radius: var(--radius-md);overflow: hidden;box-shadow: var(--shadow-md);}
/* Quote trust list */
.quote-trust-list {list-style: none;padding: 0;margin: var(--space-md) 0;}
.quote-trust-list li {display: flex;align-items: center;gap: 0.75rem;padding: 0.5rem 0;font-size: 0.9375rem;color: var(--color-body-text);}
.quote-trust-list li svg {width: 20px;height: 20px;fill: none;stroke: var(--color-primary-hover);stroke-width: 2;stroke-linecap: round;stroke-linejoin: round;flex-shrink: 0;}
/* ============================================
LOCATION SINGLE PAGE COMPONENTS
============================================ */
.service-card-compact {background: #FFFFFF;border-radius: var(--radius-md);padding: var(--space-md);box-shadow: var(--shadow-sm);transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);border: 1px solid var(--color-border);border-top: 3px solid var(--color-primary);display: flex;flex-direction: column;}
.service-card-compact:hover {box-shadow: var(--shadow-lg);transform: translateY(-6px);border-top-color: var(--color-primary-hover);}
.service-card-compact .service-icon {width: 48px;height: 48px;background: var(--color-primary);border-radius: var(--radius-full);display: flex;align-items: center;justify-content: center;margin-bottom: var(--space-sm);transition: transform 0.3s ease, box-shadow 0.3s ease;}
.service-card-compact:hover .service-icon {transform: scale(1.1) rotate(5deg);box-shadow: 0 0 15px rgba(224,231,34,0.35);}
.service-card-compact .service-icon svg {width: 22px;height: 22px;fill: none;stroke: var(--color-secondary);stroke-width: 2;stroke-linecap: round;stroke-linejoin: round;}
.service-card-compact h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.service-card-compact p { font-size: 0.9375rem; color: var(--color-muted); margin-bottom: 1rem; flex: 1; }
.service-card-links { display: flex; gap: 1rem; font-size: 0.8125rem; }
.service-card-links a {font-weight: 600;color: var(--color-foreground);transition: color 0.2s, gap 0.3s;display: inline-flex;align-items: center;gap: 0.2rem;}
.service-card-links a:hover { color: var(--color-primary-hover); gap: 0.4rem; }
.service-card-links a.quote-link { color: var(--color-primary-hover); }
/* Suburbs grid */
.suburbs-grid {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: repeat(4, 1fr);gap: var(--space-sm);}
.suburb-card {background: #FFFFFF;border-radius: var(--radius-sm);padding: var(--space-sm) var(--space-md);border: 1px solid var(--color-border);transition: all 0.3s ease;}
.suburb-card:hover {border-color: var(--color-primary);box-shadow: var(--shadow-sm);transform: translateY(-2px);}
.suburb-card strong {font-size: 0.9375rem;color: var(--color-foreground);display: block;margin-bottom: 0.25rem;}
.suburb-card span {font-size: 0.8125rem;color: var(--color-muted);line-height: 1.5;}
a.suburb-card { text-decoration: none; color: inherit; display: block; }
/* CTA urgency text */
.cta-urgency {font-size: 0.875rem;font-weight: 600;color: var(--color-secondary);margin-top: 1rem;opacity: 0.7;}
/* Nearby area links */
.nearby-links {max-width: var(--wide-width);margin: 0 auto;display: flex;gap: var(--space-sm);flex-wrap: wrap;justify-content: center;}
.nearby-link {display: inline-flex;align-items: center;gap: 0.3rem;padding: 0.75rem 1.5rem;background: #FFFFFF;border: 1px solid var(--color-border);border-radius: var(--radius-full);font-size: 0.9375rem;font-weight: 500;color: var(--color-foreground);transition: all 0.3s ease;}
.nearby-link:hover {border-color: var(--color-primary);background: var(--color-primary);color: var(--color-secondary);transform: translateY(-2px);box-shadow: var(--shadow-sm);}
/* ============================================
CONTACT PAGE COMPONENTS
============================================ */
.contact-methods {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: repeat(3, 1fr);gap: var(--space-md);margin-top: calc(-1 * var(--space-xl));position: relative;z-index: 2;padding: 0 var(--space-md);}
.contact-method-card {background: #FFFFFF;border-radius: var(--radius-md);padding: var(--space-lg);text-align: center;box-shadow: var(--shadow-md);border: 1px solid var(--color-border);transition: all 0.3s ease;}
.contact-method-card:hover {box-shadow: var(--shadow-lg);transform: translateY(-4px);}
.contact-method-icon {width: 56px;height: 56px;background: var(--color-primary);border-radius: var(--radius-full);display: flex;align-items: center;justify-content: center;margin: 0 auto var(--space-sm);}
.contact-method-icon svg {width: 24px;height: 24px;fill: none;stroke: var(--color-secondary);stroke-width: 2;stroke-linecap: round;stroke-linejoin: round;}
.contact-method-card h3 { font-size: 1.0625rem; margin-bottom: 0.375rem; }
.contact-method-card p { font-size: 0.9375rem; color: var(--color-muted); margin-bottom: 0.75rem; }
.contact-method-card a.contact-link {font-size: 1.125rem;font-weight: 700;color: var(--color-foreground);transition: color 0.2s;}
.contact-method-card a.contact-link:hover { color: var(--color-primary-hover); }
.contact-map-section { padding: var(--space-xl) var(--space-md) 0; }
.contact-map-wrap {max-width: var(--wide-width);margin: 0 auto;display: grid;grid-template-columns: 1fr 1fr;gap: var(--space-lg);align-items: start;}
.contact-map-info h3 { margin-bottom: var(--space-sm); }
.contact-map-info p { color: var(--color-muted); margin-bottom: var(--space-md); }
.contact-hours { list-style: none; padding: 0; margin: 0; }
.contact-hours li {display: flex;justify-content: space-between;padding: 0.625rem 0;border-bottom: 1px solid var(--color-border);font-size: 0.9375rem;}
.contact-hours li:last-child { border-bottom: none; }
.contact-hours li strong { color: var(--color-foreground); }
.contact-hours li span { color: var(--color-muted); }
.contact-map-embed {border-radius: var(--radius-md);overflow: hidden;box-shadow: var(--shadow-md);border: 1px solid var(--color-border);}
/* ============================================
PAGE-SPECIFIC RESPONSIVE
============================================ */
@media (max-width: 1024px) {
.area-grid { grid-template-columns: repeat(2, 1fr); }
.services-list-grid { grid-template-columns: repeat(2, 1fr); }
.options-grid { grid-template-columns: repeat(2, 1fr); }
.related-grid { grid-template-columns: repeat(2, 1fr); }
.districts-grid { grid-template-columns: repeat(2, 1fr); }
.service-icon-grid { grid-template-columns: repeat(2, 1fr); }
.suburbs-grid { grid-template-columns: repeat(3, 1fr); }
/* Tips slider: 2 per view at tablet */
.tip-slide { min-width: 50%; }
.tips-slider-wrap .slider-arrow { display: flex; }
.tips-dots { display: flex; }
}

@media (max-width: 768px) {
/* Inner page hero */
.hero-inner { padding-top: 60px; min-height: 420px; }
.hero-inner--short { min-height: 280px; }
.hero-urgency-badge { top: 80px; font-size: 0.75rem; }
/* Grids collapse to single column */
.split-content { grid-template-columns: 1fr; }
.steps-grid { grid-template-columns: 1fr; }
.steps-grid::before { display: none; }
.step-card:not(:last-child)::after { display: none; }
.included-grid { grid-template-columns: 1fr; }
.options-grid { grid-template-columns: 1fr; }
.alt-content-row { grid-template-columns: 1fr; }
.alt-content-row.reversed .alt-content-text { order: 1; }
.alt-content-row.reversed .alt-content-image { order: 2; }
.districts-grid { grid-template-columns: 1fr; }
.related-grid { grid-template-columns: 1fr; }
.area-grid { grid-template-columns: 1fr; }
.services-list-grid { grid-template-columns: 1fr; }
.district-grid { grid-template-columns: 1fr; }
.service-icon-grid { grid-template-columns: 1fr; }
.suburbs-grid { grid-template-columns: repeat(2, 1fr); }
.contact-methods { grid-template-columns: 1fr; margin-top: calc(-1 * var(--space-lg)); }
.contact-map-wrap { grid-template-columns: 1fr; }
/* Tips slider: 1 per view at mobile */
.tip-slide { min-width: 100%; padding: 0 var(--space-xs); }
.tips-slider-wrap .slider-arrow { display: none; }
/* Location single page */
.nearby-links { flex-direction: column; align-items: stretch; }
.nearby-link { justify-content: center; }
}
