/* ============================================================
   Outdoor Edge Landscaping LLC - Modernized CSS
   Design System: Forest Green + Warm Gold
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary: #0d1b2e;
    --primary-dark: #060d16;
    --primary-light: #112240;
    --primary-xlight: #1e3a5f;
    --accent: #d4af37;
    --accent-dark: #b5952f;
    --accent-light: #f3e5ab;
    --accent-xlight: #fbf8eb;
    --surface: #f4f6f9;
    --surface-2: #e8edf4;
    --bg-white: #ffffff;
    --bg-dark: #060d16;
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-white: #ffffff;
    --text-white-muted: rgba(255, 255, 255, 0.75);
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-green: 0 8px 32px rgba(13, 27, 46, 0.35);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.40);
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --container-max: 1280px;
    --container-padding: clamp(1rem, 4vw, 2rem);
    --section-padding: clamp(2.5rem, 4vw, 3.5rem);
    --header-height: 80px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0)
    }

    50% {
        transform: scale(1.08) translate(-1%, -1%)
    }

    100% {
        transform: scale(1) translate(0, 0)
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center
    }

    100% {
        background-position: 200% center
    }
}

@keyframes leafFloat {
    0% {
        transform: translateY(0) rotate(0deg) translateX(0);
        opacity: 0
    }

    10% {
        opacity: 0.6
    }

    90% {
        opacity: 0.3
    }

    100% {
        transform: translateY(-100vh) rotate(720deg) translateX(50px);
        opacity: 0
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(8px)
    }
}

@keyframes carouselScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.15);
        opacity: 0.7
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0
    }
}

@keyframes mapPulse {
    0% {
        transform: scale(1);
        opacity: 0.8
    }

    100% {
        transform: scale(2.8);
        opacity: 0
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
video,
svg {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

ul,
ol {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit
}

.animate-on-scroll,
.animate-left,
.animate-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll {
    transform: translateY(40px);
}

.animate-left {
    transform: translateX(-50px);
}

.animate-right {
    transform: translateX(50px);
}

.animate-on-scroll.visible,
.animate-left.visible,
.animate-right.visible {
    opacity: 1;
    transform: none
}

[data-delay="1"] {
    transition-delay: 0.1s
}

[data-delay="2"] {
    transition-delay: 0.2s
}

[data-delay="3"] {
    transition-delay: 0.3s
}

[data-delay="4"] {
    transition-delay: 0.4s
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--text-primary);
    font-weight: 700
}

h1 {
    font-size: clamp(2rem, 5vw, var(--text-6xl))
}

h2 {
    font-size: clamp(1.75rem, 4vw, var(--text-5xl))
}

h3 {
    font-size: clamp(1.25rem, 3vw, var(--text-3xl))
}

h4 {
    font-size: var(--text-xl)
}

p {
    margin-bottom: var(--space-4)
}

p:last-child {
    margin-bottom: 0
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding)
}

.section-padding {
    padding: var(--section-padding) 0
}

.bg-light {
    background-color: var(--surface)
}

.bg-dark {
    background-color: var(--bg-dark)
}

.bg-white {
    background-color: var(--bg-white)
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-4)
}

.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px
}

.section-title {
    font-size: clamp(1.75rem, 4vw, var(--text-5xl));
    color: var(--text-primary);
    margin-bottom: var(--space-4)
}

.section-title span {
    color: var(--primary-light)
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    line-height: 1;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
    z-index: 1;
}

.btn:hover::before {
    left: 150%;
    transition: left 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity var(--transition-fast)
}

.btn:hover::after {
    opacity: 1
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-white);
    border-color: var(--accent);
    box-shadow: var(--shadow-gold)
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.5)
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.6)
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--bg-white);
    transform: translateY(-2px)
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary)
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px)
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: var(--text-lg)
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: var(--text-sm)
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none
}

.promo-notification {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 0.6rem var(--container-padding);
    text-align: center;
    position: relative;
    font-size: var(--text-sm);
    font-weight: 500;
    overflow: hidden;
    z-index: calc(var(--z-sticky) + 1)
}

.promo-notification::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s infinite
}

.promo-notification .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    position: relative
}

.promo-notification strong {
    color: var(--accent-light)
}

.promo-notification a {
    color: var(--accent-light);
    text-decoration: underline;
    font-weight: 600
}

.promo-notification a:hover {
    color: var(--bg-white)
}

.promo-close {
    position: absolute;
    right: var(--space-4);
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-white-muted);
    cursor: pointer;
    padding: var(--space-3);
    line-height: 1;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.promo-close:hover {
    color: var(--bg-white);
    transform: translateY(-50%) scale(1.15);
}

.promo-notification.hidden {
    display: none
}

/* Hero rating loading pulse */
#hero-rating-value:not([data-loaded]) {
    animation: ratingPulse 1.4s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes ratingPulse {

    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 0.7;
    }
}

.promo-highlight {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 1px 7px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.05em;
    letter-spacing: 0.03em;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    transition: all var(--transition-slow)
}

.top-bar {
    background: var(--primary-dark);
    padding: 0.5rem 0;
    font-size: var(--text-sm);
    color: var(--text-white-muted);
    transition: all var(--transition-slow)
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4)
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: var(--space-5)
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-white-muted);
    transition: color var(--transition-fast)
}

.top-bar-link:hover {
    color: var(--accent-light)
}

.top-bar-hours {
    display: flex;
    align-items: center;
    gap: var(--space-2)
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--space-3)
}

.top-bar-right a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-white-muted);
    transition: color var(--transition-fast);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm)
}

.top-bar-right a:hover {
    color: var(--accent-light)
}

.main-nav {
    background: transparent;
    transition: all var(--transition-slow)
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: var(--space-8)
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
    text-decoration: none
}

.nav-logo img {
    height: 52px;
    width: auto;
    border-radius: var(--radius-md);
    transition: transform var(--transition-base), opacity var(--transition-base);
    flex-shrink: 0;
}

.nav-logo:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

.nav-logo-text {
    display: flex;
    flex-direction: column
}

.nav-logo-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1.1
}

.nav-logo-tagline {
    font-size: var(--text-xs);
    color: var(--accent-light);
    letter-spacing: 0.05em;
    text-transform: uppercase
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-1)
}

.nav-list a {
    display: block;
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: all var(--transition-base)
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--bg-white);
    background: rgba(255, 255, 255, 0.1)
}

.nav-list a:hover::after,
.nav-list a.active::after {
    left: var(--space-3);
    right: var(--space-3)
}

.nav-cta {
    flex-shrink: 0
}

.site-header.scrolled .top-bar {
    height: 0;
    padding: 0;
    overflow: hidden
}

.site-header.scrolled .main-nav {
    background: rgba(6, 13, 22, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3)
}

.site-header:not(.scrolled) .main-nav {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%)
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 5px;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
    flex-shrink: 0
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1)
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--bg-white);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-sticky) - 1);
    opacity: 0;
    transition: opacity var(--transition-base)
}

.mobile-menu-overlay.active {
    opacity: 1
}

@media(max-width:1024px) {

    .top-bar-hours,
    .top-bar-right a span {
        display: none
    }
}

@media(max-width:768px) {
    .top-bar {
        display: none
    }

    .hamburger {
        display: flex
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: flex-start;
        padding: calc(var(--header-height) + var(--space-8)) var(--space-6) var(--space-8);
        transition: right var(--transition-slow);
        z-index: var(--z-sticky);
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4)
    }

    .nav-menu.open {
        right: 0
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-1);
        width: 100%
    }

    .nav-list a {
        font-size: var(--text-base);
        padding: var(--space-3) var(--space-4);
        color: var(--text-white-muted);
        border-radius: var(--radius-md);
        opacity: 0;
        transform: translateX(20px);
        transition: all var(--transition-base)
    }

    .nav-menu.open .nav-list a {
        opacity: 1;
        transform: none
    }

    .nav-menu.open .nav-list li:nth-child(1) a {
        transition-delay: 0.05s
    }

    .nav-menu.open .nav-list li:nth-child(2) a {
        transition-delay: 0.10s
    }

    .nav-menu.open .nav-list li:nth-child(3) a {
        transition-delay: 0.15s
    }

    .nav-menu.open .nav-list li:nth-child(4) a {
        transition-delay: 0.20s
    }

    .nav-menu.open .nav-list li:nth-child(5) a {
        transition-delay: 0.25s
    }

    .nav-menu.open .nav-list li:nth-child(6) a {
        transition-delay: 0.30s
    }

    .nav-menu.open .nav-list li:nth-child(7) a {
        transition-delay: 0.35s
    }

    .nav-menu.open .nav-list li:nth-child(8) a {
        transition-delay: 0.40s
    }

    .nav-cta {
        display: none
    }

    .mobile-menu-overlay {
        display: block
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    height: calc(100vh - 44px);
    min-height: 560px;
    max-height: 860px;
    overflow: hidden;
    background: var(--primary-dark)
}

.promo-hidden .hero {
    height: 100vh;
    max-height: 900px;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden
}

.hero-particle {
    position: absolute;
    bottom: -20px;
    background: var(--accent-light);
    border-radius: 50% 0 50% 0;
    opacity: 0;
    animation: leafFloat linear infinite
}

.hero-particle:nth-child(1) {
    left: 5%;
    animation-duration: 12s;
    animation-delay: 0s;
    width: 6px;
    height: 6px
}

.hero-particle:nth-child(2) {
    left: 15%;
    animation-duration: 15s;
    animation-delay: 2s;
    width: 10px;
    height: 10px
}

.hero-particle:nth-child(3) {
    left: 25%;
    animation-duration: 11s;
    animation-delay: 4s;
    width: 7px;
    height: 7px
}

.hero-particle:nth-child(4) {
    left: 35%;
    animation-duration: 14s;
    animation-delay: 1s;
    width: 9px;
    height: 9px
}

.hero-particle:nth-child(5) {
    left: 45%;
    animation-duration: 13s;
    animation-delay: 3s;
    width: 6px;
    height: 6px
}

.hero-particle:nth-child(6) {
    left: 55%;
    animation-duration: 16s;
    animation-delay: 5s;
    width: 8px;
    height: 8px
}

.hero-particle:nth-child(7) {
    left: 65%;
    animation-duration: 12s;
    animation-delay: 0.5s;
    width: 11px;
    height: 11px
}

.hero-particle:nth-child(8) {
    left: 75%;
    animation-duration: 14s;
    animation-delay: 2.5s;
    width: 7px;
    height: 7px
}

.hero-particle:nth-child(9) {
    left: 85%;
    animation-duration: 11s;
    animation-delay: 4.5s;
    width: 9px;
    height: 9px
}

.hero-particle:nth-child(10) {
    left: 92%;
    animation-duration: 15s;
    animation-delay: 1.5s;
    width: 6px;
    height: 6px
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: kenBurns 20s ease-in-out infinite
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 13, 22, 0.75) 0%, rgba(13, 27, 46, 0.5) 50%, rgba(6, 13, 22, 0.65) 100%)
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: var(--header-height);
    margin-top: -3rem;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: var(--space-5);
    opacity: 0;
    transform: translateY(-20px);
}

.hero-slide.active .hero-label {
    animation: fadeInDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--bg-white);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    max-width: 700px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .hero-title {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.hero-title span {
    color: var(--accent-light)
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, var(--text-xl));
    color: var(--text-white-muted);
    max-width: 520px;
    margin-bottom: var(--space-8);
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .hero-subtitle {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .hero-buttons {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s both;
}

.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(6, 13, 22, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.3)
}

.hero-stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.hero-stat {
    padding: var(--space-5) var(--space-6);
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1)
}

.hero-stat:last-child {
    border-right: none
}

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1
}

.hero-stat-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-white-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: var(--space-1)
}

.hero-indicators {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: var(--space-2)
}

.hero-indicator {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0
}

.hero-indicator.active {
    width: 28px;
    background: var(--accent)
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    cursor: pointer
}

.hero-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1)
}

.hero-prev {
    left: var(--space-6)
}

.hero-next {
    right: var(--space-6)
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 120px;
    right: var(--space-8);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-white-muted);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1.5s both
}

.hero-scroll-indicator svg {
    animation: scrollBounce 2s ease-in-out infinite
}

@media(max-width:768px) {
    .hero-stats-bar .container {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero-stat {
        padding: var(--space-4)
    }

    .hero-stat:nth-child(2) {
        border-right: none
    }

    .hero-arrow {
        display: none
    }

    .hero-scroll-indicator {
        display: none
    }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--surface)
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.service-tab {
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--surface-2);
    background: var(--surface);
    color: var(--text-secondary);
    transition: all var(--transition-base)
}

.service-tab:hover {
    border-color: var(--primary-light);
    color: var(--primary)
}

.service-tab.active {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: var(--shadow-green)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-6)
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-green);
    border-color: rgba(255, 255, 255, 1);
}

.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--surface)
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow)
}

.service-card:hover .service-card-image img {
    transform: scale(1.08)
}

.service-card-icon {
    position: absolute;
    bottom: var(--space-4);
    left: var(--space-4);
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    box-shadow: var(--shadow-gold)
}

.service-card-body {
    padding: var(--space-5);
    flex: 1
}

.service-card-body h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
    color: var(--primary)
}

.service-card-body p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: 0
}

.service-card-footer {
    padding: var(--space-4) var(--space-5);
    border-top: 1px solid var(--surface-2)
}

.service-card-footer a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent);
    transition: gap var(--transition-fast)
}

.service-card-footer a:hover {
    gap: var(--space-3)
}

.service-card-no-image .service-card-body {
    padding-top: var(--space-6)
}

.service-card-no-image .service-card-body::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin-bottom: var(--space-4)
}

@media(max-width:768px) {
    .services-grid {
        grid-template-columns: 1fr
    }
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.why-choose-us {
    padding: var(--section-padding) 0;
    background: var(--surface)
}

.why-choose-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
}

.why-choose-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl)
}

.why-choose-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.why-choose-image-badge {
    position: absolute;
    bottom: var(--space-6);
    left: var(--space-6);
    background: var(--accent);
    color: var(--bg-white);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-gold)
}

.why-choose-image-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1
}

.why-choose-image-badge span {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9
}

.why-choose-content .section-header {
    text-align: left;
    margin-bottom: var(--space-8)
}

.why-choose-content .section-header .section-label {
    justify-content: flex-start
}

.why-choose-content .section-header .section-label::before {
    display: none
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-5)
}

.reason-item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start
}

.reason-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: var(--accent-xlight);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    transition: all var(--transition-base)
}

.reason-item:hover .reason-icon {
    background: var(--accent);
    color: var(--bg-white);
    transform: scale(1.1)
}

.reason-text h4 {
    font-size: var(--text-lg);
    color: var(--primary);
    margin-bottom: var(--space-1)
}

.reason-text p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: 0
}

@media(max-width:900px) {
    .why-choose-inner {
        grid-template-columns: 1fr
    }

    .why-choose-image {
        display: none
    }
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e3a6e' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.process-section .section-header .section-title {
    color: var(--bg-white)
}

.process-section .section-header .section-subtitle {
    color: var(--text-white-muted)
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    position: relative
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    z-index: 0
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1
}

.process-step-number {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--accent-light);
    position: relative;
    transition: all var(--transition-base)
}

.process-step:hover .process-step-number {
    background: var(--accent);
    color: var(--bg-white);
    border-color: var(--accent-light);
    transform: scale(1.1)
}

.process-step h3 {
    font-size: var(--text-xl);
    color: var(--bg-white);
    margin-bottom: var(--space-2)
}

.process-step p {
    font-size: var(--text-sm);
    color: var(--text-white-muted)
}

@media(max-width:768px) {
    .process-steps {
        grid-template-columns: 1fr 1fr
    }

    .process-steps::before {
        display: none
    }
}

@media(max-width:480px) {
    .process-steps {
        grid-template-columns: 1fr
    }
}

/* ============================================================
   GALLERY / PROJECTS SECTION
   ============================================================ */
.projects-section {
    padding: var(--section-padding) 0;
    background: var(--surface)
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: var(--space-3)
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    background: var(--primary-dark)
}

.project-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2
}

.project-item:nth-child(4) {
    grid-column: span 2
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow)
}

.project-item:hover img {
    transform: scale(1.08)
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 13, 22, 0.9) 0%, transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: flex-end;
    padding: var(--space-5)
}

.project-item:hover .project-overlay {
    opacity: 1;
    pointer-events: auto
}

.project-overlay-content h3 {
    color: var(--bg-white);
    font-size: var(--text-xl);
    margin-bottom: var(--space-1)
}

.project-overlay-content p {
    color: var(--text-white-muted);
    font-size: var(--text-sm);
    margin-bottom: 0
}

.project-zoom-btn {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    transition: all var(--transition-base);
    z-index: 5
}

.project-item:hover .project-zoom-btn {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1)
}

.project-zoom-btn:hover {
    background: var(--accent);
    border-color: var(--accent)
}

/* On real touch/mobile devices (detected by JS): always show overlay + zoom btn
   so users can see the title and tap the card to open the lightbox */
.touch-device .project-overlay {
    opacity: 1;
    pointer-events: auto
}

.touch-device .project-zoom-btn {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1)
}

.projects-cta {
    text-align: center;
    margin-top: var(--space-6);
}

@media(max-width:768px) {
    .projects-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px
    }

    .project-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1
    }

    .project-item:nth-child(4) {
        grid-column: span 1
    }
}

@media(max-width:480px) {
    .projects-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px
    }

    .project-item:nth-child(1),
    .project-item:nth-child(4) {
        grid-column: span 1
    }
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base)
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl)
}

.lightbox-caption {
    color: var(--text-white-muted);
    font-size: var(--text-sm);
    margin-top: var(--space-4);
    text-align: center
}

.lightbox-close {
    position: fixed;
    top: var(--space-6);
    right: var(--space-6);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 1.5rem
}

.lightbox-close:hover {
    background: var(--accent);
    border-color: var(--accent)
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base)
}

.lightbox-prev {
    left: var(--space-6)
}

.lightbox-next {
    right: var(--space-6)
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
    border-color: var(--accent)
}

/* ============================================================
   AREAS / MAP SECTION
   ============================================================ */
.areas-section {
    padding: var(--space-10) 0;
    background: var(--bg-white);
}

.areas-section .section-header {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: start;
}

.map-container {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

.cities-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.cities-intro {
    font-size: var(--text-lg);
    color: var(--text-secondary)
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}

.city-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--surface-2);
    transition: all var(--transition-base);
    cursor: default
}

.city-item:hover {
    background: var(--accent-xlight);
    border-color: var(--accent-light);
    transform: translateX(4px)
}

.city-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--accent);
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite
}

.city-name {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-primary)
}

.areas-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-top: var(--space-4)
}

@media(max-width:900px) {
    .areas-content {
        grid-template-columns: 1fr
    }

    .map-container iframe {
        height: 300px
    }
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
    padding: var(--section-padding) 0;
    background: var(--surface)
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
    gap: var(--space-6)
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: var(--space-5)
}

.rating-badge {
    text-align: center
}

.rating-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--primary);
    line-height: 1
}

.rating-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
    margin: var(--space-1) 0
}

.rating-stars svg {
    color: var(--accent)
}

.rating-count {
    font-size: var(--text-sm);
    color: var(--text-muted)
}

.google-badge {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--surface-2)
}

.google-badge-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary)
}

.google-badge-sub {
    font-size: var(--text-xs);
    color: var(--text-muted)
}

.reviews-carousel-wrapper {
    overflow: hidden;
    position: relative
}

.reviews-carousel-track {
    display: flex;
    gap: var(--space-5);
    animation: carouselScroll 40s linear infinite
}

.reviews-carousel-track:hover {
    animation-play-state: paused
}

.review-card {
    flex-shrink: 0;
    width: 340px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--surface-2)
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4)
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--bg-white);
    flex-shrink: 0;
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reviewer-initial-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}

.reviewer-info {
    flex: 1;
    min-width: 0
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--text-base);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.reviewer-date {
    font-size: var(--text-xs);
    color: var(--text-muted)
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-3);
    color: var(--accent);
}

.review-stars svg {
    color: var(--accent)
}

.review-text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.review-owner-reply {
    margin-top: var(--space-4);
    padding: var(--space-3);
    background: var(--surface);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-light)
}

.review-owner-reply p {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    margin-bottom: 0
}

.review-owner-reply strong {
    color: var(--primary);
    font-size: var(--text-xs)
}

.reviews-cta {
    text-align: center;
    margin-top: var(--space-6);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white)
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-3)
}

.faq-item {
    border: 1px solid var(--surface-2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    background: var(--bg-white)
}

.faq-item.open {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md)
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    text-align: left;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    gap: var(--space-4);
    transition: color var(--transition-fast)
}

.faq-question:hover {
    color: var(--primary)
}

.faq-item.open .faq-question {
    color: var(--primary)
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-base);
    color: var(--text-muted)
}

.faq-item.open .faq-icon {
    background: var(--primary);
    color: var(--bg-white);
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow)
}

.faq-item.open .faq-answer {
    max-height: 500px
}

.faq-answer-inner {
    padding: 0 var(--space-6) var(--space-5);
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7
}

.faq-answer-inner p {
    margin-bottom: var(--space-3)
}

.faq-answer-inner p:last-child {
    margin-bottom: 0
}

/* ============================================================
   QUOTE FORM SECTION
   ============================================================ */
.quote-section {
    padding: var(--section-padding) 0;
    background: var(--surface)
}

.quote-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-12);
    align-items: start
}

.quote-info {
    padding: var(--space-8);
    background: var(--primary);
    border-radius: var(--radius-2xl);
    color: var(--bg-white)
}

.quote-info h3 {
    font-size: var(--text-3xl);
    color: var(--bg-white);
    margin-bottom: var(--space-4)
}

.quote-info p {
    color: var(--text-white-muted);
    margin-bottom: var(--space-6)
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8)
}

.quote-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--text-white-muted)
}

.quote-benefits li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    border-radius: var(--radius-full);
    background: var(--accent);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xs);
    font-weight: 700;
    flex-shrink: 0
}

.quote-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-3)
}

.quote-contact a {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--accent-light);
    font-weight: 600;
    transition: color var(--transition-fast)
}

.quote-contact a:hover {
    color: var(--bg-white)
}

.quote-form {
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg)
}

.quote-form h3 {
    font-size: var(--text-2xl);
    color: var(--primary);
    margin-bottom: var(--space-6)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4)
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-4)
}

.form-group label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary)
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--surface-2);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    color: var(--text-primary);
    background: var(--bg-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(30, 58, 110, 0.15)
}

.form-group textarea {
    resize: vertical;
    min-height: 120px
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #e53e3e
}

.field-error {
    font-size: var(--text-xs);
    color: #e53e3e;
    margin-top: var(--space-1)
}

.form-consent {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-3)
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
    font-size: var(--text-sm);
    color: var(--text-secondary)
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary)
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: var(--text-lg)
}

.form-success,
.form-error {
    display: none;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin-top: var(--space-4);
    font-weight: 500
}

.form-success {
    background: #f0fff4;
    color: #276749;
    border: 1px solid #9ae6b4
}

.form-error {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #feb2b2
}

.form-success.visible,
.form-error.visible {
    display: block
}

@media(max-width:900px) {
    .quote-container {
        grid-template-columns: 1fr
    }

    .quote-info {
        display: none
    }
}

@media(max-width:600px) {
    .form-row {
        grid-template-columns: 1fr
    }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white)
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.about-image {
    position: relative
}

.about-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--space-4) var(--space-5);
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-4);
}

.stat-item {
    text-align: center
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary);
    line-height: 1
}

.stat-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px
}

.about-text .section-header {
    text-align: left;
    margin-bottom: var(--space-6)
}

.about-text .section-header .section-label {
    justify-content: flex-start
}

.about-text .section-header .section-label::before {
    display: none
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: var(--space-4)
}

.about-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--surface-2)
}

.badge-item svg {
    color: var(--accent);
    flex-shrink: 0
}

.badge-item span {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-primary)
}

@media(max-width:900px) {
    .about-content {
        grid-template-columns: 1fr
    }

    .about-image {
        display: none
    }
}

/* Team Section */
.team-section {
    padding: var(--section-padding) 0;
    background: var(--surface)
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-6)
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow)
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg)
}

.team-card-image {
    height: 280px;
    overflow: hidden
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow)
}

.team-card:hover .team-card-image img {
    transform: scale(1.05)
}

.team-info {
    padding: var(--space-5)
}

.team-info h3 {
    font-size: var(--text-xl);
    color: var(--primary);
    margin-bottom: var(--space-1)
}

.team-role {
    font-size: var(--text-sm);
    color: var(--accent);
    font-weight: 600;
    margin-bottom: var(--space-3)
}

.team-bio {
    font-size: var(--text-sm);
    color: var(--text-secondary)
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--primary-dark);
    color: var(--text-white-muted);
    padding: var(--space-12) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-10);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4)
}

.footer-logo img {
    height: 48px;
    width: auto
}

.footer-logo-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--bg-white)
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--text-white-muted);
    margin-bottom: var(--space-6);
    max-width: 280px
}

.footer-social {
    display: flex;
    gap: var(--space-3)
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white-muted);
    transition: all var(--transition-base)
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-white);
    transform: translateY(-2px)
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--bg-white);
    margin-bottom: var(--space-5)
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-2)
}

.footer-links a {
    font-size: var(--text-sm);
    color: var(--text-white-muted);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-2)
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transition: all var(--transition-fast);
    transform: translateX(-8px)
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: var(--space-2)
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0)
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-4)
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3)
}

.footer-contact li svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px
}

.footer-contact li a,
.footer-contact li span {
    font-size: var(--text-sm);
    color: var(--text-white-muted);
    transition: color var(--transition-fast)
}

.footer-contact li a:hover {
    color: var(--accent-light)
}

.footer-bottom {
    padding: var(--space-5) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08)
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-4)
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--text-white-muted)
}

.footer-legal {
    display: flex;
    gap: var(--space-5)
}

.footer-legal a {
    font-size: var(--text-sm);
    color: var(--text-white-muted);
    transition: color var(--transition-fast)
}

.footer-legal a:hover {
    color: var(--accent-light)
}

@media(max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {
    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center
    }
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: var(--z-overlay);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-3);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-slow);
    pointer-events: none
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
    white-space: nowrap
}

.floating-cta-primary {
    background: var(--accent);
    color: var(--bg-white)
}

.floating-cta-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px) scale(1.03)
}

.floating-cta-phone {
    background: var(--primary);
    color: var(--bg-white)
}

.floating-cta-phone:hover {
    background: var(--primary-light);
    transform: translateY(-2px) scale(1.03)
}

.floating-cta-toggle {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-green), 0 0 0 3px rgba(212, 175, 55, 0.25);
    transition: all var(--transition-base);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
}

.floating-cta-toggle:hover {
    background: var(--accent);
    transform: scale(1.1)
}

.floating-cta-menu {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    align-items: flex-end;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: all var(--transition-base);
    pointer-events: none
}

.floating-cta.open .floating-cta-menu {
    opacity: 1;
    transform: none;
    pointer-events: all
}

@media(max-width:480px) {
    .floating-cta {
        bottom: var(--space-4);
        right: var(--space-4)
    }

    .floating-cta-btn span {
        display: none
    }

    .floating-cta-btn {
        padding: 0.875rem
    }
}

/* ============================================================
   LOADING STATES
   ============================================================ */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--bg-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite
}

.skeleton {
    background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md)
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important
    }

    .hero-particle {
        display: none
    }

    .reviews-carousel-track {
        animation: none
    }
}

/* ============================================================
   FOCUS / ACCESSIBILITY STYLES
   ============================================================ */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--radius-sm)
}

.skip-to-content:focus {
    top: 1rem !important
}

/* ============================================================
   SERVICE LINK (card footer CTA)
   ============================================================ */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent);
    transition: gap var(--transition-fast), color var(--transition-fast)
}

.service-link:hover {
    gap: var(--space-3);
    color: var(--accent-dark)
}

/* ============================================================
   SERVICES TABS  (.service-tab-btn alias for .service-tab)
   ============================================================ */
.service-tab-btn {
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--surface-2);
    background: var(--surface);
    color: var(--text-secondary);
    transition: all var(--transition-base)
}

.service-tab-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary)
}

.service-tab-btn.active {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: var(--shadow-green)
}

/* ============================================================
   SVG SERVICE AREA MAP
   ============================================================ */
.service-area-map {
    background: var(--primary-dark);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative
}

.svg-map {
    width: 100%;
    height: auto;
    display: block
}

/* City dot pulse animation */
.map-city .map-pulse-ring {
    animation: mapPulse 2.4s ease-out infinite;
    transform-origin: center;
    transform-box: fill-box
}

/* Stagger pulse delays for visual variety */
.map-city:nth-child(2) .map-pulse-ring {
    animation-delay: 0.2s
}

.map-city:nth-child(3) .map-pulse-ring {
    animation-delay: 0.4s
}

.map-city:nth-child(4) .map-pulse-ring {
    animation-delay: 0.6s
}

.map-city:nth-child(5) .map-pulse-ring {
    animation-delay: 0.8s
}

.map-city:nth-child(6) .map-pulse-ring {
    animation-delay: 1.0s
}

.map-city:nth-child(7) .map-pulse-ring {
    animation-delay: 1.2s
}

.map-city:nth-child(8) .map-pulse-ring {
    animation-delay: 0.3s
}

.map-city:nth-child(9) .map-pulse-ring {
    animation-delay: 0.5s
}

.map-city:nth-child(10) .map-pulse-ring {
    animation-delay: 0.7s
}

.map-city:nth-child(11) .map-pulse-ring {
    animation-delay: 0.9s
}

.map-city:nth-child(12) .map-pulse-ring {
    animation-delay: 1.1s
}

.map-city:nth-child(13) .map-pulse-ring {
    animation-delay: 1.3s
}

.map-city:nth-child(14) .map-pulse-ring {
    animation-delay: 0.15s
}

.map-city:nth-child(15) .map-pulse-ring {
    animation-delay: 0.45s
}

.map-city:nth-child(16) .map-pulse-ring {
    animation-delay: 0.75s
}

.map-city:nth-child(17) .map-pulse-ring {
    animation-delay: 1.05s
}

/* Home/business location star pulse */
.map-city-home .map-pulse-ring {
    animation: mapPulse 1.8s ease-out infinite;
    animation-delay: 0s
}

.map-city-home .map-star {
    filter: drop-shadow(0 0 6px rgba(232, 184, 109, 0.7))
}

/* Hover effect on city groups */
.map-city {
    cursor: pointer;
    transition: opacity 0.2s ease
}

.map-city:hover .map-dot {
    r: 8;
    fill: #f3e5ab;
    filter: drop-shadow(0 0 6px rgba(232, 184, 109, 0.8))
}

.map-city:hover text {
    fill: #ffffff
}

/* Google Maps link below SVG */
.map-gmaps-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: rgba(13, 27, 46, 0.8);
    color: var(--accent-light);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background var(--transition-fast), color var(--transition-fast);
    border-top: 1px solid rgba(212, 175, 55, 0.2)
}

.map-gmaps-link:hover {
    background: rgba(30, 58, 110, 0.9);
    color: var(--bg-white)
}

/* ============================================================
   SECTION PADDING UTILITY
   ============================================================ */
.section-padding {
    padding: var(--section-padding) 0;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
    background: var(--surface);
    overflow: hidden;
    padding: var(--section-padding) 0;
}

.reviews-header {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-12);
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    background: var(--bg-white);
    padding: var(--space-6) var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.rating-badge {
    text-align: center;
}

.rating-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.rating-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
    color: var(--accent);
    margin: var(--space-2) 0;
}

.rating-count {
    font-size: var(--text-xs);
    color: var(--text-muted);
    font-weight: 500;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--surface-2);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    color: var(--text-primary);
}

.google-badge:hover {
    border-color: var(--primary-xlight);
    background: var(--surface);
    transform: translateY(-2px);
}

.google-badge-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.google-badge-sub {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* Infinite scroll carousel */
.reviews-carousel-wrapper {
    overflow: hidden;
    position: relative;
    min-height: 260px;
    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-carousel-track {
    display: flex;
    gap: var(--space-6);
    /* animation set dynamically by JS after cards are injected */
    width: max-content;
    padding: var(--space-4) 0 var(--space-6);
}

.reviews-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Review cards */
.review-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    width: 340px;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--surface-2);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.reviewer-avatar {
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--text-primary);
}

.review-date {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: 2px;
}

.review-rating {
    margin-left: auto;
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.star {
    font-size: 13px;
}

.star-full,
.star-half {
    color: var(--accent);
}

.star-empty {
    color: var(--surface-2);
}

.review-text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reviewer-photo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
    flex-shrink: 0;
}

.reviewer-initial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--bg-white);
    flex-shrink: 0;
}

.review-reply {
    margin-top: var(--space-2);
    padding: var(--space-3);
    background: var(--surface);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
}

.reply-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-2);
}

.reply-label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--primary);
}

.reply-date,
.reply-text {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin: 0;
}

.reviews-cta {
    text-align: center;
    margin-top: var(--space-10);
}

/* ============================================================
   FLOATING CTA — item links inside the menu
   ============================================================ */
.floating-cta-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--bg-white);
    font-size: var(--text-sm);
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-green);
    transition: all var(--transition-base)
}

.floating-cta-item:hover {
    background: var(--accent);
    transform: translateX(-4px);
    box-shadow: var(--shadow-gold)
}

.floating-cta-item svg {
    flex-shrink: 0
}

/* Toggle button label text */
.floating-cta-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--bg-white)
}

/* ============================================================
   TEAM SECTION — missing selectors
   ============================================================ */
.team-photo {
    height: 280px;
    overflow: hidden;
    background: var(--surface)
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow)
}

.team-card:hover .team-photo img {
    transform: scale(1.05)
}

.team-title {
    font-size: var(--text-sm);
    color: var(--accent);
    font-weight: 600;
    margin-bottom: var(--space-3)
}

/* ============================================================
   FOOTER DISCLAIMER
   ============================================================ */
.footer-disclaimer {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    padding: var(--space-4) 0 var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: var(--space-2)
}

/* ============================================================
   QUOTE INFO — h2/h3 fix (HTML uses h2 inside .quote-info)
   ============================================================ */
.quote-info h2 {
    font-size: var(--text-3xl);
    color: var(--bg-white);
    margin-bottom: var(--space-4)
}

/* ============================================================
   QUOTE PHONE / HOURS
   ============================================================ */
.quote-phone {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--accent-light);
    font-family: var(--font-heading)
}

.quote-phone:hover {
    color: var(--bg-white)
}

.quote-hours {
    font-size: var(--text-sm);
    color: var(--text-white-muted)
}

/* ============================================================
   REVIEW CARD — google-reviews.js uses different class names
   ============================================================ */
.review-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4)
}

.review-date {
    font-size: var(--text-xs);
    color: var(--text-muted)
}

.review-rating {
    margin-left: auto;
    display: flex;
    gap: 2px
}

.star {
    font-size: 14px
}

.star-full,
.star-half {
    color: var(--accent)
}

.star-empty {
    color: var(--surface-2)
}

.reviewer-initial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--bg-white);
    flex-shrink: 0
}

.reviewer-photo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
    flex-shrink: 0
}

.review-reply {
    margin-top: var(--space-4);
    padding: var(--space-3);
    background: var(--surface);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-light)
}

.reply-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-2)
}

.reply-label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--primary)
}

.reply-date {
    font-size: var(--text-xs);
    color: var(--text-muted)
}

.reply-text {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    margin-bottom: 0
}

/* Loading spinner for reviews */
.reviews-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-12);
    color: var(--text-muted)
}

.reviews-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--surface-2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

/* ===== TEAM / FOUNDER SECTION ===== */
.section-dark,
.team-section {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--section-padding) 0;
}

.team-section .section-label {
    color: var(--accent-light);
}

.team-section .section-label::before,
.team-section .section-label::after {
    background: var(--accent-light);
}

.team-section .section-title {
    color: #fff;
}

.team-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== FOUNDER SHOWCASE ===== */
.founder-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(6, 13, 22, 0.5);
}

.founder-photo {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.founder-img-frame:hover .founder-photo {
    transform: scale(1.04);
}

.founder-img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--accent);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.founder-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.founder-title {
    color: var(--accent-light);
    font-size: 1rem;
    font-weight: 500;
    margin: 0.25rem 0 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.founder-quote {
    border-left: 4px solid var(--accent);
    padding-left: 1.25rem;
    margin: 0;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.founder-bio p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0 0 0.75rem;
    font-size: 0.97rem;
}

.founder-stats {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.founder-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.founder-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.founder-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.credential-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.founder-cta {
    align-self: flex-start;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .founder-showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .founder-photo {
        height: 400px;
        object-position: center top;
    }

    .founder-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .founder-stats {
        gap: 1rem;
    }

    .founder-stat .stat-number {
        font-size: 1.5rem;
    }
}

/* ============================================================
   UI EFFECTS & PROJECTS CAROUSEL (NEW)
   ============================================================ */

/* Primary Button Pulse Animation */
/* Removed continuous pulse to keep it elegant */
.btn-primary:active,
.btn-secondary:active,
.btn-outline:active {
    transform: translateY(1px) scale(0.96);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Service Card Hover Enhancement */
.service-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.service-image img {
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

/* Projects Carousel Styles */
.projects-carousel-wrapper {
    position: relative;
    padding: 0 50px;
    /* Space for arrows */
}

.projects-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: var(--space-6);
    padding-bottom: var(--space-4);

    /* Hide scrollbar for clean look */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.projects-carousel::-webkit-scrollbar {
    display: none;
}

.projects-carousel .project-item {
    flex: 0 0 calc(33.333% - (var(--space-6) * 2 / 3));
    scroll-snap-align: start;
    height: 280px;
}

/* Ensure picture fills the carousel item height so img height:100% resolves correctly */
.projects-carousel .project-item picture {
    display: block;
    width: 100%;
    height: 100%;
}

.projects-carousel .project-item picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--bg-white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 350;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: var(--accent);
    color: var(--bg-white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

@media (max-width: 900px) {
    .projects-carousel .project-item {
        flex: 0 0 calc(50% - (var(--space-6) / 2));
        height: 260px;
    }
}

@media (max-width: 600px) {
    .projects-carousel-wrapper {
        padding: 0 30px;
        /* Make room for smaller mobile arrows */
    }

    .projects-carousel .project-item {
        flex: 0 0 85%;
        height: 240px;
    }

    .carousel-nav {
        width: 36px;
        height: 36px;
    }

    .carousel-nav svg {
        width: 18px;
        height: 18px;
    }
}

/* FAQ Modal Styles */
#faq-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    background: rgba(6, 13, 22, 0.8);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity var(--transition-base);
}

#faq-modal.active {
    display: flex;
    opacity: 1;
}

.faq-modal-content {
    background: var(--bg-white);
    width: 100%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

#faq-modal.active .faq-modal-content {
    transform: translateY(0);
}

.faq-modal-header {
    padding: var(--space-6) var(--space-6) var(--space-4);
    border-bottom: 1px solid var(--surface-2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-modal-header h2 {
    font-size: var(--text-2xl);
    color: var(--primary);
    margin: 0;
}

.faq-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: var(--space-2);
    border-radius: 50%;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-modal-close:hover {
    background: var(--surface);
    color: var(--primary);
}

.faq-modal-body {
    padding: var(--space-6);
    overflow-y: auto;
}

/* Redesign FAQ list inside modal */
.faq-modal-body .faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

/* ============================================================
   FINANCING SECTION
   ============================================================ */
.financing-section {
    background: var(--primary-light) !important;
    /* Overriding bg-light if it's there */
    color: var(--text-white);
}

.financing-section .section-label {
    color: var(--accent);
}

.financing-section h2 {
    color: var(--text-white);
}

.financing-section .section-subtitle {
    color: var(--text-white-muted);
    margin: 0 auto;
    text-align: center;
}

.financing-section .section-header {
    text-align: center;
    align-items: center;
}

/* ============================================================
   VIDEO TESTIMONIAL SECTION
   ============================================================ */
#video-testimonial-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

#video-testimonial-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.video-testimonial-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
}

.video-testimonial-player {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.15);
    aspect-ratio: 16/9;
    max-height: 320px;
    /* Restrict max-height of player to keep container extremely compact and tidy */
}

.video-testimonial-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-testimonial-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.vt-stars {
    display: flex;
    gap: 4px;
}

.vt-stars span {
    font-size: 1.5rem;
    color: var(--accent);
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
    line-height: 1;
}

.vt-stars span.empty {
    color: rgba(212, 175, 55, 0.3);
}

.vt-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic;
    color: var(--text-white);
    line-height: 1.65;
    margin: 0;
    position: relative;
    padding-left: var(--space-6);
}

.vt-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.1em;
    font-size: 3.5rem;
    color: var(--accent);
    opacity: 0.6;
    font-family: var(--font-heading);
    line-height: 1;
}

.vt-client {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vt-client-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
    font-family: var(--font-heading);
}

.vt-client-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vt-client-name {
    color: var(--text-white);
    font-size: var(--text-base);
    font-weight: 700;
}

.vt-client-subtitle {
    color: var(--accent);
    font-size: var(--text-sm);
    font-weight: 500;
}

.vt-google-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: var(--space-2);
    width: fit-content;
}

.vt-google-link:hover {
    color: var(--text-white);
}

/* Carousel Slider CSS Wrapper and Track */
.video-testimonial-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 960px;
    /* Beautifully compact max-width so the card is not too big */
    margin: 0 auto;
    border-radius: var(--radius-xl);
}

.video-testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.video-testimonial-card {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    /* Force columns to shrink so they never overflow the 960px parent container */
    gap: var(--space-8);
    /* Reduced gap from space-12 for tightness */
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    /* Reduced padding from space-10 for elegant compactness */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
}

/* Slider control buttons */
.vt-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-4);
    pointer-events: none;
    z-index: 10;
}

.vt-control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(13, 27, 46, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-white);
    font-size: 1.8rem;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: auto;
}

.vt-control-btn:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

/* Slider indicator dots */
.vt-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: var(--space-6);
}

.vt-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.vt-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 900px) {
    .video-testimonial-card {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        padding: var(--space-8);
    }

    .vt-controls {
        position: relative;
        top: 0;
        transform: translateY(0);
        margin-top: var(--space-4);
        justify-content: center;
        gap: var(--space-8);
        pointer-events: auto;
    }
}

@media (max-width: 600px) {
    .video-testimonial-card {
        padding: var(--space-6);
    }

    .vt-quote {
        font-size: 1rem;
    }
}
.project-item picture, .service-card-image picture { display: block; width: 100%; height: 100%; }

