/* ==========================================================================
   Tampa Concrete Pros - Premium Design System v3.0
   ========================================================================== */

/* ==========================================================================
   1. CSS Variables & Design Tokens
   ========================================================================== */
:root {
    /* Primary palette */
    --color-primary: #1B3A4B;
    --color-primary-light: #2a4d5f;
    --color-primary-dark: #132a38;
    --color-secondary: #1FA2C0;
    --color-secondary-light: #3db5d0;
    --color-secondary-dark: #178a9e;
    --color-accent: #4A6670;

    /* Backgrounds */
    --color-background: #F5F7F8;
    --color-surface: #E9EDEF;
    --color-surface-dark: #1B3A4B;

    /* Text */
    --color-text: #1A2530;
    --color-text-muted: #5A6B75;
    --color-text-light: #F5F7F8;

    /* Functional */
    --color-border: #C8D1D6;
    --color-shadow: rgba(27, 58, 75, 0.12);
    --color-shadow-lg: rgba(27, 58, 75, 0.18);

    /* Typography */
    --font-display: 'Clash Display', 'Outfit', sans-serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 7rem 2rem;
    --section-padding-sm: 4rem 1.5rem;
    --container-max: 1300px;
    --border-thick: 4px;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-blur: 20px;
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-smooth);
}

/* Lazy image blur-up */
img[data-src] {
    filter: blur(10px);
    transition: filter 0.5s ease;
}
img.loaded {
    filter: blur(0);
}

/* ==========================================================================
   3. Preloader
   ========================================================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader-done {
    opacity: 0;
    visibility: hidden;
}
.preloader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   4. Header & Navigation
   ========================================================================== */
header {
    background: var(--color-surface-dark);
    color: var(--color-text-light);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(27, 58, 75, 0.2);
    border-bottom: var(--border-thick) solid var(--color-secondary);
    transition: transform 0.4s var(--ease-smooth), background 0.3s, padding 0.3s;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

header.header-scrolled {
    padding: 0.5rem 0;
    background: rgba(27, 58, 75, 0.95);
}

header.header-hidden {
    transform: translateY(-100%);
}

nav {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--color-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease-bounce);
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--color-secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 500;
    position: relative;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s var(--ease-smooth);
}

.nav-links > li > a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    opacity: 0.9;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown > a { cursor: pointer; display: flex; align-items: center; gap: 0.3rem; }
.dropdown-arrow { font-size: 0.7rem; transition: transform 0.3s; }
.dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 12px 40px rgba(27, 58, 75, 0.15);
    border-radius: 0 0 12px 12px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.35s var(--ease-smooth);
    z-index: 1000;
    margin-top: 1rem;
    border-top: var(--border-thick) solid var(--color-secondary);
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-text);
    font-weight: 500;
    transition: all 0.25s;
    border-bottom: 1px solid var(--color-border);
}

.dropdown-menu a:last-child { border-bottom: none; }

.dropdown-menu a:hover {
    background: var(--color-surface);
    color: var(--color-secondary);
    padding-left: 2rem;
}

.dropdown-menu-areas { min-width: 420px; }

.dropdown:hover .dropdown-menu-areas {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.dropdown-menu-areas a {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
}

.dropdown-menu-areas a:nth-child(2n) { border-right: none; }
.dropdown-menu-areas a:nth-last-child(-n+2) { border-bottom: none; }
.dropdown-menu-areas a:hover { padding-left: 1.5rem; }

.nav-cta {
    background: var(--color-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-cta:hover::before { opacity: 1; }

.nav-cta:hover {
    background: var(--color-secondary-dark);
    opacity: 1 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(31, 162, 192, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */
.hero {
    margin-top: 74px;
    min-height: 100vh;
    background: linear-gradient(150deg, rgba(27, 58, 75, 0.95) 0%, rgba(27, 58, 75, 0.7) 100%),
                url('/images/hero/hero-main.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-text-light);
    padding: 10rem 2rem 8rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--color-background), transparent);
    pointer-events: none;
}

/* Animated gradient orbs */
.hero .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}
.hero .hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--color-secondary);
    top: -200px;
    right: -200px;
    animation: orbFloat 8s ease-in-out infinite;
}
.hero .hero-orb-2 {
    width: 400px;
    height: 400px;
    background: #4A6670;
    bottom: -100px;
    left: -100px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-content {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero h1 span {
    color: var(--color-secondary);
    display: block;
}

.hero h1 .typed-text {
    color: var(--color-secondary);
}

.typed-cursor {
    color: var(--color-secondary);
    font-weight: 300;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 560px;
    line-height: 1.8;
}

/* Hero stats bar */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
    text-align: center;
}

.hero-stat .counter {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    display: block;
}

.hero-stat span:last-child {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   6. Buttons
   ========================================================================== */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.15rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s var(--ease-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
    background: var(--color-secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(31, 162, 192, 0.3);
}

.btn-primary:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(31, 162, 192, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-light);
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: white;
    color: var(--color-primary);
    border-color: white;
    transform: translateY(-3px);
}

/* Dark section button variants */
.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
    background: white;
    color: var(--color-primary);
}

/* ==========================================================================
   7. Trust Bar
   ========================================================================== */
.trust-bar {
    background: white;
    padding: 0;
    position: relative;
    z-index: 3;
}

.trust-items {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.trust-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--color-border);
    position: relative;
    transition: all 0.4s var(--ease-smooth);
    text-align: center;
}

.trust-item:last-child { border-right: none; }

.trust-item:hover {
    background: var(--color-surface);
    transform: translateY(-2px);
}

.trust-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--color-secondary);
    transition: width 0.4s var(--ease-smooth);
}

.trust-item:hover::before { width: 60%; }

.trust-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 0.75rem;
    color: var(--color-secondary);
    display: block;
}

.trust-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-detail {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   8. Section Titles
   ========================================================================== */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
    color: var(--color-primary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-secondary);
    margin-top: 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 4rem;
    max-width: 650px;
    line-height: 1.8;
}

/* Center variants */
.text-center .section-title::after,
.section-title.text-center::after {
    margin-left: auto;
    margin-right: auto;
}

/* Splitting.js char styles */
.split-text .char {
    display: inline-block;
    will-change: transform, opacity;
}

/* ==========================================================================
   9. Services Section
   ========================================================================== */
.services-preview {
    padding: var(--section-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--color-shadow);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    will-change: transform;
}

/* Glassmorphism variant */
.service-card.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-smooth);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--color-shadow-lg);
}

/* Tilt glare fix */
.service-card .js-tilt-glare {
    border-radius: 16px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.4s var(--ease-bounce);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--color-secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: gap 0.3s;
}

.service-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-smooth);
}

.service-card:hover .service-link { gap: 0.75rem; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ==========================================================================
   10. Locations Section
   ========================================================================== */
.locations {
    padding: var(--section-padding);
    background: var(--color-primary);
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.locations::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(31, 162, 192, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.locations .section-title {
    color: white;
    text-align: center;
}

.locations .section-title::after {
    margin: 1rem auto 0;
}

.locations .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.locations-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.location-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 14px;
    text-align: center;
    transition: all 0.4s var(--ease-smooth);
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
    border-color: var(--color-secondary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.location-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.location-card p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ==========================================================================
   11. Why Choose Us
   ========================================================================== */
.why-us {
    padding: var(--section-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.why-us-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-secondary);
    margin-top: 1rem;
    border-radius: 2px;
}

.why-us-content p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.feature-list svg {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.why-us-image {
    background: var(--color-surface);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 60px var(--color-shadow-lg);
    position: relative;
}

.why-us-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.why-us-image:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   12. Testimonials
   ========================================================================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--color-surface);
}

.testimonials .section-title,
.testimonials .section-subtitle {
    text-align: center;
}

.testimonials .section-title::after {
    margin: 1rem auto 0;
}

.testimonials .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Swiper testimonials */
.testimonials-swiper {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.testimonials-swiper .swiper-pagination-bullet {
    background: var(--color-secondary);
    width: 10px;
    height: 10px;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--color-shadow);
    position: relative;
    transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--color-shadow-lg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 5rem;
    font-family: var(--font-display);
    color: var(--color-secondary);
    opacity: 0.15;
    line-height: 1;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars svg {
    width: 20px;
    height: 20px;
    fill: #FFB800;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--color-primary);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   13. CTA Section
   ========================================================================== */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 50%, var(--color-primary) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary {
    background: white;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary:hover {
    background: var(--color-background);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   14. Before/After Slider
   ========================================================================== */
.ba-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px var(--color-shadow-lg);
    cursor: ew-resize;
    aspect-ratio: 16/10;
}

.ba-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.ba-before {
    position: absolute;
    inset: 0;
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-before img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: white;
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.ba-handle::before {
    content: '⟨ ⟩';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    letter-spacing: 4px;
    font-weight: 700;
}

/* ==========================================================================
   15. Gallery
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,58,75,0.6), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after { opacity: 1; }

/* Gallery Swiper */
.gallery-swiper {
    padding-bottom: 50px;
}

.gallery-swiper .swiper-slide img {
    border-radius: 14px;
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

/* ==========================================================================
   16. Stats / Counters
   ========================================================================== */
.stats-section {
    padding: 5rem 2rem;
    background: var(--color-primary);
    color: white;
}

.stats-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item .counter {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    display: block;
    line-height: 1.2;
}

.stat-item span:last-child {
    font-size: 1rem;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   17. Glassmorphism Cards
   ========================================================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s var(--ease-smooth);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   18. Footer
   ========================================================================== */
footer {
    background: var(--color-primary);
    color: var(--color-text-light);
    padding: 5rem 2rem 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-dark), var(--color-primary));
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand h3 span { color: var(--color-secondary); }

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--color-secondary);
}

.footer-section ul { list-style: none; }

.footer-section ul li { margin-bottom: 0.75rem; }

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--color-secondary);
    padding-left: 4px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom a:hover { color: var(--color-secondary); }

/* ==========================================================================
   19. Page-Level Styles (Service/Location/Blog pages)
   ========================================================================== */
.page-hero {
    margin-top: 74px;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(150deg, rgba(27, 58, 75, 0.95), rgba(27, 58, 75, 0.8)),
                url('/images/textures/concrete-texture-dark.webp');
    background-size: cover;
    color: white;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.7;
}

.breadcrumb a {
    color: var(--color-secondary);
    opacity: 1;
}

.content-section {
    padding: var(--section-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.content-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.content-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-secondary);
    margin-top: 0.75rem;
    border-radius: 2px;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* FAQ Accordion */
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px var(--color-shadow);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 6px 24px var(--color-shadow-lg);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--color-surface);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Pricing cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 20px var(--color-shadow);
    text-align: center;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--color-shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--color-secondary);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

/* Blog cards */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--color-shadow);
    transition: all 0.4s var(--ease-smooth);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px var(--color-shadow-lg);
}

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 2rem;
}

/* Contact form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(31, 162, 192, 0.15);
}

/* ==========================================================================
   20. Utility Classes
   ========================================================================== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-secondary { color: var(--color-secondary); }
.bg-primary { background: var(--color-primary); color: white; }
.bg-surface { background: var(--color-surface); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* GSAP initial states */
.gsap-fade-up { opacity: 0; transform: translateY(40px); }
.gsap-fade-left { opacity: 0; transform: translateX(-40px); }
.gsap-fade-right { opacity: 0; transform: translateX(40px); }
.gsap-scale-up { opacity: 0; transform: scale(0.9); }

/* ==========================================================================
   21. Responsive Design
   ========================================================================== */

/* Touch targets - ensure minimum 44px on all interactive elements */
@media (pointer: coarse) {
    a, button, .btn, .nav-cta, .faq-question, .dropdown > a,
    .menu-toggle, .service-link, .location-card, .gallery-item {
        min-height: 44px;
        min-width: 44px;
    }
    .dropdown-menu a, .dropdown-menu-areas a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .footer-section ul li {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .footer-section ul li a {
        padding: 0.5rem 0;
        display: block;
        width: 100%;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero { min-height: auto; padding: 7rem 2rem 5rem; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .cta-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }

    .trust-items { grid-template-columns: repeat(3, 1fr); }
    .trust-item:nth-child(4), .trust-item:nth-child(5) { display: none; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: repeat(3, 1fr); }
    .why-us-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }

    /* Service page hero form layout */
    .service-hero-content { grid-template-columns: 1fr !important; }
    .content-grid { grid-template-columns: 1fr !important; }
    .sidebar { order: -1; }

    /* Before/after grid */
    .ba-grid, [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 3.5rem 1.25rem;
        --section-padding-sm: 3rem 1rem;
    }

    /* Base font minimum 16px */
    body { font-size: 16px; }

    /* Prevent horizontal overflow */
    html, body { overflow-x: hidden; }
    main, section, footer, header { max-width: 100vw; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-primary);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }

    .nav-links > li {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links > li > a {
        padding: 0.875rem 0;
        display: block;
        min-height: 44px;
    }

    .dropdown-menu,
    .dropdown-menu-areas {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        display: none;
        background: rgba(0,0,0,0.15);
        border-radius: 8px;
        margin-bottom: 0.5rem;
        border-top: none;
        min-width: unset;
    }

    .dropdown.active .dropdown-menu,
    .dropdown.active .dropdown-menu-areas {
        display: block !important;
    }

    .dropdown-menu-areas {
        display: none;
    }
    .dropdown.active .dropdown-menu-areas {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
    }

    .dropdown-menu a {
        color: var(--color-text, #1a1a1a);
        padding: 0.75rem 1.25rem;
        border-bottom-color: rgba(255,255,255,0.05);
        font-size: 0.95rem;
    }

    .dropdown-menu a:hover {
        background: rgba(255,255,255,0.08);
        color: var(--color-secondary);
        padding-left: 1.25rem;
    }

    .dropdown-menu-areas a {
        color: var(--color-text, #1a1a1a);
        border-right-color: rgba(255,255,255,0.05);
        border-bottom-color: rgba(255,255,255,0.05);
    }

    .nav-cta {
        text-align: center;
        margin-top: 0.5rem;
    }

    /* Hero */
    .hero {
        padding: 5rem 1.25rem 3.5rem;
        background-attachment: scroll;
        min-height: auto;
    }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1.1rem; margin-bottom: 2rem; }
    .hero-image { display: none; }
    .hero-stats-bar {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .hero-stat .counter { font-size: 2rem; }

    /* Trust bar */
    .trust-items { grid-template-columns: 1fr 1fr; }
    .trust-item { padding: 1.5rem 1rem; }
    .trust-item:nth-child(5) { display: none; }
    .trust-label { font-size: 0.85rem; }
    .trust-detail { font-size: 0.8rem; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .service-card { padding: 2rem 1.5rem; }

    /* Locations */
    .locations-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .location-card { padding: 1.5rem 1rem; }
    .location-card h3 { font-size: 1.05rem; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 2rem 1.5rem; }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stats-section { padding: 3.5rem 1.25rem; }
    .stat-item .counter { font-size: 2.5rem; word-break: break-word; }
    .stat-item span:last-child { font-size: 0.85rem; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    footer { padding: 3.5rem 1.25rem 1.5rem; }
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    .footer-contact p { justify-content: center; }
    .footer-section ul li { margin-bottom: 0.5rem; }
    .footer-section a { padding: 0.35rem 0; display: inline-block; }

    /* Before/after slider */
    .ba-slider { border-radius: 10px; aspect-ratio: 4/3; }
    .ba-handle::before { width: 40px; height: 40px; font-size: 0.85rem; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 2rem 1.5rem; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }

    /* Blog cards */
    .blog-card-content { padding: 1.5rem; }

    /* Forms */
    .form-group input,
    .form-group textarea,
    .form-group select,
    .form-input {
        width: 100%;
        font-size: 16px; /* prevents iOS zoom */
        padding: 0.875rem 1rem;
    }

    /* CTA section */
    .cta-section { padding: 4rem 1.25rem; }
    .cta-section p { font-size: 1.05rem; }

    /* Content sections */
    .content-section { padding: 3rem 1.25rem; }
    .section-subtitle { margin-bottom: 2.5rem; font-size: 1.05rem; }

    /* Page hero */
    .page-hero { padding: 5rem 1.25rem 3rem; }

    /* Service page specific */
    .service-hero { padding: 1rem 1.25rem 2rem; }
    .service-hero-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .hero-form { order: -1; }
    .benefits-grid { grid-template-columns: 1fr !important; }
    .process-steps { grid-template-columns: 1fr !important; }
    .why-grid { grid-template-columns: 1fr !important; }

    /* Location page specific */
    .location-hero { padding: 5rem 1.25rem 3rem; }
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .neighborhoods-grid { grid-template-columns: 1fr 1fr !important; }

    /* FAQ */
    .faq-question { padding: 1.25rem 1rem; font-size: 0.95rem; }
    .faq-answer { padding: 0 1rem 1.25rem; }

    /* Floating CTA (if any) */
    .floating-cta {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        z-index: 999;
        padding: 0.75rem 1rem;
    }

    /* Disable tilt on mobile */
    [data-tilt] {
        transform: none !important;
    }

    /* Text overflow prevention */
    h1, h2, h3, h4, h5, h6, p, span, a, li {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Disable parallax on mobile */
    .hero { background-attachment: scroll !important; }
}

/* Small Mobile (600px) */
@media (max-width: 600px) {
    .hero h1 { font-size: 1.85rem; }
    .hero p { font-size: 1rem; }
    .section-title { font-size: 1.6rem; }
    .trust-items { grid-template-columns: 1fr 1fr; }
    .trust-item:nth-child(3),
    .trust-item:nth-child(4),
    .trust-item:nth-child(5) { display: none; }
    .locations { padding: 3rem 1rem; }
    .services-preview { padding: 3rem 1rem; }
    .container { padding: 0 1rem; }
    nav { padding: 0 1rem; }
    .logo-text { font-size: 1.1rem; }
}

/* Extra Small Mobile (480px) */
@media (max-width: 480px) {
    .hero { padding: 4.5rem 1rem 3rem; }
    .hero h1 { font-size: 1.65rem; }
    .trust-items { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; padding: 1rem 1.5rem; }
    .stat-item .counter { font-size: 2rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .neighborhoods-grid { grid-template-columns: 1fr !important; }
    .dropdown-menu-areas,
    .dropdown.active .dropdown-menu-areas {
        grid-template-columns: 1fr !important;
    }
    .testimonials { padding: 3rem 1rem; }
    .footer-brand p { font-size: 0.9rem; }

    /* Ensure images don't overflow */
    img, video, iframe, embed, object {
        max-width: 100%;
        height: auto;
    }
}

/* ==========================================================================
   22. Print Styles
   ========================================================================== */
@media print {
    header, footer, .cta-section, .preloader { display: none; }
    .hero { min-height: auto; padding: 2rem; }
    body { color: #000; background: #fff; }
}

/* ==========================================================================
   22b. Content Spacing Fixes
   ========================================================================== */
.content-section h2 {
    margin-top: 3rem;
}

.content-section h3 {
    margin-top: 2.5rem;
}

/* ==========================================================================
   22c. Hero Gap Fix
   ========================================================================== */
.page-hero + section {
    padding-top: 3rem;
}

@media (max-width: 768px) {
    .page-hero + section {
        padding-top: 2rem;
    }
}

/* ==========================================================================
   23. Mobile CTA Bar
   ========================================================================== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1B3A4B;
    padding: 0.75rem 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    justify-content: center;
    gap: 0.75rem;
}
.mobile-cta-bar a {
    flex: 1;
    text-align: center;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
}
.mobile-cta-bar .cta-call {
    background: #E8491D;
}
.mobile-cta-bar .cta-quote {
    background: #1FA2C0;
}
@media (max-width: 768px) {
    .mobile-cta-bar { display: flex; }
    body { padding-bottom: 70px; }
}

/* AOS fallback - ensure content visible even if JS fails or GSAP/AOS conflict */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
.aos-animate [data-aos],
.aos-init [data-aos] {
    opacity: 1 !important;
}
