/* 
------------------------------------------------------
   DOMAINS: CSS Variables (Design Guide Tokens)
------------------------------------------------------ 
*/
:root {
    /* Brand Colors */
    --clr-primary: #FFD100;
    /* Sunshine Yellow */
    --clr-secondary: #00A9E0;
    /* Sky Blue */
    --clr-tertiary: #8CC63F;
    /* Lime Green */
    --clr-primary-hover: #E6BC00;
    --clr-secondary-hover: #008CBA;
    --clr-primary-light: rgba(255, 209, 0, 0.12);
    --clr-border: #E2E8F0;
    --radius: 8px;

    /* Neutral / Text */
    --clr-bg-base: #F8FAFC;
    /* Slate 50 */
    --clr-bg-alt: #FFFFFF;
    /* Pure White */
    --clr-text-dark: #1E293B;
    /* Slate 800 */
    --clr-text-light: #F8FAFC;
    --clr-text-muted: #64748B;
    /* Slate 500 */
    --clr-text-body: #475569;
    /* Slate 600 */
    --clr-bg-warm: #FFFBF0;
    /* Warm cream */

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* UI Tokens */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 9999px;

    /* Premium Shadows & Glass */
    --shadow-premium: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-bg-dark: rgba(30, 41, 59, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);

    /* Spacing — 8pt grid scale (base unit: 8px = 0.5rem) */
    --space-1: 0.5rem;   /* 8px */
    --space-2: 1rem;     /* 16px */
    --space-3: 1.5rem;   /* 24px */
    --space-4: 2rem;     /* 32px */
    --space-5: 2.5rem;   /* 40px */
    --space-6: 3rem;     /* 48px */
    --space-7: 3.5rem;   /* 56px */
    --space-8: 4rem;     /* 64px */
    --space-10: 5rem;    /* 80px */
    --space-12: 6rem;    /* 96px */
    --section-padding: 5rem 0; /* 80px — --space-10 */
}

/* Skip to Content Link (Accessibility) */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-primary);
    color: var(--clr-text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-family: var(--font-heading);
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 1rem;
    outline: 3px solid var(--clr-secondary);
    outline-offset: 2px;
}

/*
------------------------------------------------------
   RESET & BASE STYLES
------------------------------------------------------
*/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-dark);
    background-color: var(--clr-bg-base);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--clr-text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--clr-text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Global Focus Styles (Accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--clr-secondary);
    outline-offset: 2px;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--section-padding);
}

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

.text-yellow {
    color: var(--clr-primary);
}

/* 
------------------------------------------------------
   COMPONENTS
------------------------------------------------------ 
*/
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-text-dark);
    box-shadow: 0 4px 14px 0 rgba(255, 209, 0, 0.39);
}

.btn-primary:hover {
    background-color: var(--clr-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 209, 0, 0.23);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--clr-text-dark);
    color: var(--clr-text-dark);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: var(--clr-text-dark);
    color: var(--clr-text-light);
}

/* White outline variant — for use on dark/coloured backgrounds */
.btn-outline-light {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    border: var(--glass-border);
    box-shadow: var(--shadow-premium);
    padding: 2rem;
}

.glass-panel-dark {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-premium);
    padding: 2rem;
    color: var(--clr-text-light);
}

.glass-panel-dark h2,
.glass-panel-dark label {
    color: var(--clr-text-light);
}

.glass-panel-dark p {
    color: rgba(255, 255, 255, 0.7);
}

/* Booking Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    /* Dark muted slate */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: var(--glass-border);
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--clr-text-dark);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    color: var(--clr-text-dark);
}

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

.booking-form .form-group label {
    display: block;
    font-weight: 500;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--clr-text-dark);
    text-align: left;
}

.booking-form .form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.booking-form .form-group input:focus {
    outline: none;
    border-color: var(--clr-secondary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 169, 224, 0.1);
}

.booking-form .form-footer {
    margin-top: 1rem;
    color: var(--clr-text-muted);
}

.form-success {
    display: none;
    text-align: center;
    padding: 1rem 0 0.5rem;
}

.form-success.visible {
    display: block;
}

.form-success-icon {
    width: 56px;
    height: 56px;
    color: var(--clr-tertiary);
    margin: 0 auto 1.5rem;
}

.form-success h3 {
    margin-bottom: 0.5rem;
}

.form-success p {
    margin-bottom: 2rem;
}

.form-hint {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-top: 0.4rem;
    line-height: 1.4;
}

/* 
------------------------------------------------------
   SECTIONS
------------------------------------------------------ 
*/

/* 1. Header Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    padding: 0.85rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 68px;
    width: auto;
    border-radius: var(--radius-sm);
    filter: drop-shadow(0 6px 14px rgba(0, 169, 224, 0.12));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-list a {
    font-weight: 500;
    color: var(--clr-text-dark);
    font-family: var(--font-heading);
}

.nav-list a:hover {
    color: var(--clr-secondary);
}

/* Nav Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.dropdown-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.has-dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 220px;
    padding: 0.75rem 0 0.5rem;
    z-index: 200;
}

/* Invisible bridge so cursor can travel from link to menu without gap */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 0.625rem 1.5rem;
    border-left: 3px solid transparent;
    color: var(--clr-text-dark);
    font-weight: 500;
    font-family: var(--font-heading);
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-menu li a:hover,
.dropdown-menu li a:focus-visible {
    background: var(--clr-primary-light);
    color: var(--clr-text-dark);
    border-left: 3px solid var(--clr-primary);
    padding-left: calc(1.5rem - 3px);
    outline: none;
}

.mobile-menu-toggle {
    display: none;
}

/* Handled in media query */


/* 2. Hero Section */
.hero-section {
    position: relative;
    padding: 7.5rem 0 2.75rem;
    min-height: 62vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
        rgba(5, 25, 55, 0.93) 0%,
        rgba(5, 40, 85, 0.82) 45%,
        rgba(30, 41, 59, 0.40) 100%);
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.hero-section .hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    margin-bottom: 1.1rem;
}

.hero-section .hero-content p {
    font-size: clamp(1.08rem, 1.5vw, 1.22rem);
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.75rem;
}

.hero-section .hero-content .badge {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: var(--clr-text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: clamp(0.95rem, 1.4vw, 1.2rem);
    font-weight: 700;
    line-height: 1.15;
    box-shadow: 0 10px 24px rgba(255, 209, 0, 0.2);
}

.hero-section .hero-content .btn-outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.hero-section .hero-content .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
}

.badge {
    display: inline-block;
    background: rgba(255, 209, 0, 0.2);
    color: var(--clr-text-dark);
    border: 1px solid var(--clr-primary);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}


/* 3. Trust Bar */
.trust-bar {
    background-color: var(--clr-text-dark);
    color: var(--clr-text-light);
    padding: 1.5rem 0;
    overflow: hidden;
}

.trust-container {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    align-items: center;
    gap: 0.75rem 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.trust-icon {
    width: 24px;
    height: 24px;
    color: var(--clr-tertiary);
}


/* 4. About Section */
.about-section {
    background-color: var(--clr-bg-alt);
}

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

.image-wrapper {
    position: relative;
}

.owner-img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 2;
}

.accent-blob {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background-color: var(--clr-secondary);
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
    opacity: 0.4;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--clr-text-dark);
    font-style: italic;
    border-left: 4px solid var(--clr-primary);
    padding-left: 1rem;
}

.signature {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-secondary);
    margin-top: 1rem;
    font-size: 1.1rem;
}


/* 5. Services Section */
.services-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.service-showcase {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-showcase:hover .showcase-img {
    transform: scale(1.05);
}

.showcase-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-card {
    background: var(--clr-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

/* Sponge Animation Feature */
.sponge-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.sponge-animation:hover::before {
    left: 200%;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: var(--clr-secondary);
}

.card-icon {
    width: 60px;
    height: 60px;
    /* Slightly larger for emphasis */
    background-color: rgba(0, 169, 224, 0.1);
    color: var(--clr-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover .card-icon {
    background-color: var(--clr-secondary);
    color: #fff;
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 169, 224, 0.3);
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.card-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clr-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.card-link:hover {
    color: var(--clr-secondary-hover);
}


/* 6. Process Section */
.process-section {
    background-color: var(--clr-bg-base);
}

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

.timeline {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--clr-tertiary);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.benefit-item h3 {
    font-size: 1.125rem;
}

.rounded-img {
    border-radius: var(--radius-md);
}

.shadow-lg {
    box-shadow: var(--shadow-premium);
}


/* 7. Why Us Checklist */
.bg-slate {
    background-color: var(--clr-bg-base);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-us-section .benefits-grid,
.benefits-grid--3col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-item {
    text-align: center;
}

.check-icon {
    width: 40px;
    height: 40px;
    color: var(--clr-tertiary);
    margin-bottom: 1rem;
    flex-shrink: 0;
}

span.check-icon,
div.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.check-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.check-icon:empty::before {
    content: '\2713';
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--clr-tertiary);
}

.included-list .benefit-item,
.page-hero ~ .section-padding .benefits-grid .benefit-item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    text-align: left;
    padding: 1.125rem 1.25rem;
    background: #ffffff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
}

.included-list .benefit-item .check-icon,
.page-hero ~ .section-padding .benefits-grid .benefit-item .check-icon {
    margin-bottom: 0;
    grid-row: 1 / span 3;
    align-self: start;
}

/* Fix: when benefit-item has h3 and p as direct children (not in a wrapper div),
   force them into the second column so they don't wrap into the 40px icon column */
.page-hero ~ .section-padding .benefits-grid .benefit-item > h3,
.page-hero ~ .section-padding .benefits-grid .benefit-item > p {
    grid-column: 2;
}

.included-list .benefit-item > div:last-child,
.included-list .benefit-item > span:last-child,
.page-hero ~ .section-padding .benefits-grid .benefit-item > div:last-child,
.page-hero ~ .section-padding .benefits-grid .benefit-item > span:last-child {
    display: block;
    min-width: 0;
}

.included-list .benefit-item h3,
.page-hero ~ .section-padding .benefits-grid .benefit-item h3 {
    margin-bottom: 0.45rem;
}

.included-list .benefit-item p,
.page-hero ~ .section-padding .benefits-grid .benefit-item p {
    margin: 0;
}

/* Cards that use <strong> as the title instead of <h3> (e.g. pricing "What Can Affect Your Price") */
.benefits-grid .benefit-item > div > strong:first-child {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    line-height: 1.3;
    margin-bottom: 0.45rem;
}

.why-us-section .benefit-item {
    display: block;
    text-align: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}


/* 7b. Built for Tampa Bay Section */
.tampa-bay-section {
    background: var(--clr-bg-warm);
}

.tampa-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tampa-card {
    background: #ffffff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
}

.tampa-icon {
    width: 40px;
    height: 40px;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
}

.tampa-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--clr-text-dark);
}

.tampa-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--clr-text-body);
    margin: 0;
}

/* 8. Instant Estimate Section */
.calculator-section {
    background: linear-gradient(135deg, var(--clr-secondary) 0%, #007ba3 100%);
    position: relative;
    overflow: hidden;
}

/* Background pattern for calc section */
.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.input-group label {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

/* Custom Range Slider */
.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    margin-top: 10px;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--clr-primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
    transition: transform 0.1s;
}

.custom-slider::-webkit-slider-thumb:active {
    transform: scale(1.2);
}

/* Firefox range slider thumb */
.custom-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--clr-primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
}

.custom-slider::-moz-range-track {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.custom-slider:focus-visible::-webkit-slider-thumb {
    outline: 3px solid var(--clr-primary);
    outline-offset: 2px;
}

.custom-slider:focus-visible::-moz-range-thumb {
    outline: 3px solid var(--clr-primary);
    outline-offset: 2px;
}

.estimate-result {
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

.price-display {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--clr-primary);
    margin-top: 0.5rem;
}

.calc-reassurance {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
    line-height: 1.5;
}


/* 9. Our Results (Gallery / Collage Display) */
.results-section {
    background-color: var(--clr-bg-base);
}

.slider-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Split before/after card */
.compare-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    background: var(--clr-text-dark);
}

.compare-panels {
    display: flex;
    aspect-ratio: 4 / 3;
    position: relative;
}

.compare-panel {
    flex: 1;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-size: 200%;
    background-position: left top;
    transition: background-size 0.7s ease;
}

.compare-panel + .compare-panel {
    border-left: 2px solid rgba(255, 255, 255, 0.55);
    background-position: right top;
}

.compare-card:hover .compare-panel {
    background-size: 215%;
}

.compare-label {
    position: absolute;
    top: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-pill);
    pointer-events: none;
    white-space: nowrap;
}

.compare-label-before {
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
}

.compare-label-after {
    background: var(--clr-primary);
    color: var(--clr-text-dark);
}

.compare-caption {
    padding: 0.75rem 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    background: var(--clr-text-dark);
}

/* Single photo card (no before/after) */
.photo-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    background: var(--clr-text-dark);
}

.photo-card-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.photo-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.photo-card:hover .photo-card-img img {
    transform: scale(1.05);
}

.photo-card-caption {
    padding: 0.75rem 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    background: var(--clr-text-dark);
}

/* 10. Testimonials */
.testimonials-section {
    background-color: rgba(255, 209, 0, 0.05);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
@media (max-width: 900px) {
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .testimonial-grid { grid-template-columns: 1fr; }
}

.review-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    color: var(--clr-text-muted);
    text-align: center;
}

.review-summary p {
    margin: 0;
}

.review-summary strong {
    color: var(--clr-text-dark);
    font-family: var(--font-heading);
}

.google-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-pill);
    background: rgba(0, 169, 224, 0.1);
    border: 1px solid rgba(0, 169, 224, 0.18);
    color: var(--clr-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
}

.testimonial-marquee {
    overflow: hidden;
    margin-top: 3rem;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: review-marquee 74s linear infinite;
    will-change: transform;
}

.testimonial-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
}

.marquee-card.review-card {
    width: min(360px, calc(100vw - 4rem));
    min-height: 0;
    padding: 1.5rem;
    border: 1px solid rgba(30, 41, 59, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
}

.marquee-card-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.review-source {
    color: var(--clr-text-muted);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.marquee-card .stars {
    margin-bottom: 0;
    font-size: 1.15rem;
    letter-spacing: 1px;
}

.marquee-card .review-quote {
    margin: 0;
    color: var(--clr-text-dark);
    font-size: 1.02rem;
    line-height: 1.6;
    font-style: italic;
}

.marquee-card .review-footer {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.marquee-card .review-age {
    display: none;
}

.reviewer-name {
    margin: 0;
    color: var(--clr-text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
}

.review-age {
    margin: 0.25rem 0 0;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.testimonial-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.review-card {
    background: var(--clr-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
}

.stars {
    color: var(--clr-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
}

.author {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-top: 1rem;
    color: var(--clr-text-dark);
}

@keyframes review-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 0.75rem));
    }
}

/* Footer */
.site-footer {
    background-color: var(--clr-text-dark);
    color: #fff;
    padding-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.75fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links h4,
.footer-services h4,
.footer-company h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--clr-primary);
}

.footer-links ul,
.footer-services ul,
.footer-company ul {
    list-style: none;
}

.footer-links li,
.footer-services li,
.footer-company li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-services a,
.footer-company a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover,
.footer-services a:hover,
.footer-company a:hover {
    color: #fff;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom .designer-credit {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
}

.footer-bottom .designer-credit a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .designer-credit a:hover {
    color: var(--clr-primary);
}

/* Social Links */
.socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.socials a:hover {
    background: var(--clr-primary);
    color: var(--clr-text-dark);
    transform: translateY(-2px);
}


/* 
------------------------------------------------------
   ANIMATIONS (Phase 2)
------------------------------------------------------ 
*/
/* Base state for scroll animations */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Specific animations */
.fade-in {
    transform: translateY(30px);
}

.slide-up {
    transform: translateY(50px);
}

.scale-up {
    transform: scale(0.95);
}

/* Active state triggered by JS */
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered delays for child elements (e.g. service cards, benefits) */
.stagger-1 {
    transition-delay: 100ms;
}

.stagger-2 {
    transition-delay: 200ms;
}

.stagger-3 {
    transition-delay: 300ms;
}

.stagger-4 {
    transition-delay: 400ms;
}

.stagger-5 {
    transition-delay: 500ms;
}

.stagger-6 {
    transition-delay: 600ms;
}


/* 
------------------------------------------------------
   MEDIA QUERIES
------------------------------------------------------ 
*/
/* Legal Pages (Privacy, Terms) */
.legal-page h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    line-height: 1.8;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-page a {
    color: var(--clr-secondary);
}

.legal-page a:hover {
    color: var(--clr-secondary-hover);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }

    .testimonial-marquee {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .marquee-track {
        animation: none;
    }

    .marquee-group[aria-hidden="true"] {
        display: none;
    }
}

@media (max-width: 992px) {

    .about-container,
    .process-container,
    .calc-wrapper {
        grid-template-columns: 1fr;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

    .why-us-section .benefits-grid,
    .benefits-grid--3col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tampa-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .slider-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    /* Dropdown becomes static list on mobile overlay nav */
    .has-dropdown .dropdown-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.7rem 0;
    }

    .logo img {
        height: 58px;
    }

    .why-us-section .benefits-grid,
    .benefits-grid--3col {
        grid-template-columns: 1fr;
    }

    .tampa-grid {
        grid-template-columns: 1fr;
    }

    .slider-gallery {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: 54vh;
        padding: 7rem 0 2.5rem;
    }

    .hero-section .hero-content h1 {
        font-size: clamp(2.35rem, 9vw, 3.1rem);
    }

    .hero-section .hero-content p {
        font-size: 1rem;
    }

    .marquee-card.review-card {
        width: min(320px, calc(100vw - 4rem));
        min-height: 0;
        padding: 1.5rem;
    }

    .marquee-card .review-quote {
        font-size: 1rem;
    }

    .trust-bar {
        padding: 1.1rem 0;
    }

    .trust-container {
        display: grid;
        grid-template-columns: repeat(3, max-content);
        justify-content: center;
        gap: 0.75rem 1.5rem;
    }

    .trust-item {
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.82rem;
        line-height: 1.2;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .trust-item .trust-icon {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 999;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 2rem;
    }

    .nav-list a {
        font-size: 1.5rem;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.4s ease;
    }

    .main-nav.active .nav-list a {
        transform: translateY(0);
        opacity: 1;
    }

    /* Stagger mobile links */
    .main-nav.active .nav-list li:nth-child(1) a {
        transition-delay: 0.1s;
    }

    .main-nav.active .nav-list li:nth-child(2) a {
        transition-delay: 0.2s;
    }

    .main-nav.active .nav-list li:nth-child(3) a {
        transition-delay: 0.3s;
    }

    .main-nav.active .nav-list li:nth-child(4) a {
        transition-delay: 0.4s;
    }

    .nav-btn {
        width: auto;
        padding: 1rem 2rem;
        font-size: 1.25rem;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.4s ease 0.5s;
    }

    .main-nav.active .nav-btn {
        transform: translateY(0);
        opacity: 1;
    }

    /* Mobile dropdown: show inline below parent link */
    .has-dropdown:hover .dropdown-menu,
    .has-dropdown.open .dropdown-menu {
        display: block;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0.5rem 0 0;
    }

    .dropdown-menu li a {
        font-size: 1.1rem;
        color: var(--clr-text-dark);
        padding: 0.5rem 0;
        display: block;
    }

    .dropdown-toggle svg {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background-color: var(--clr-text-dark);
        border-radius: 3px;
        transition: transform 0.3s ease, opacity 0.2s ease;
        transform-origin: center;
    }

    .mobile-menu-toggle.is-open span {
        background-color: var(--clr-text-dark);
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .socials {
        justify-content: center;
    }
}

/* ============================================
   INNER PAGE STYLES
   ============================================ */
.page-hero {
    padding: 9rem 0 3.5rem;
    background: var(--clr-text-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

/* Suppress location pill on blog and utility pages */
.no-pill .container::before { display: none !important; }

.page-hero .container::before {
    content: "Serving Tampa Bay & Pasco County";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: min(100%, 34rem);
    margin: 0 auto 1.25rem;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-pill);
    background: var(--clr-primary);
    color: var(--clr-text-dark);
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.4vw, 1.2rem);
    font-weight: 700;
    line-height: 1.15;
    box-shadow: 0 10px 24px rgba(255, 209, 0, 0.2);
}

.page-hero .badge {
    display: none;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
}

.page-hero h1 { color: #ffffff; margin-bottom: 1rem; position: relative; text-wrap: balance; }
.page-hero .hero-subtitle { color: rgba(255,255,255,0.85); font-size: 1.2rem; max-width: 600px; margin: 0 auto 2rem; }
.page-hero .btn-outline { background-color: transparent; border-color: rgba(255,255,255,0.8); color: #ffffff; }
.page-hero .btn-outline:hover { background-color: rgba(255,255,255,0.15); border-color: #ffffff; color: #ffffff; }

.breadcrumb { padding: 1rem 0; font-size: 0.875rem; color: var(--clr-text-muted); }
.breadcrumb a { color: var(--clr-secondary); }
.breadcrumb span { margin: 0 0.5rem; }

.page-content { padding: 4rem 0; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-category { margin-bottom: 2.5rem; }
.faq-category h3 {
    color: var(--clr-secondary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--clr-secondary);
    display: inline-block;
}

.faq-item {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--clr-text-dark);
    background: var(--clr-bg-alt);
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
}

.faq-question:hover { background: var(--clr-bg-base); }

.faq-question .faq-icon {
    width: 20px; height: 20px;
    color: var(--clr-secondary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* ============================================
   CONTACT FORM (Full Page)
   ============================================ */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }

.contact-form .form-group { margin-bottom: 1.5rem; }
.contact-form label {
    display: block;
    font-weight: 500;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--clr-text-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--clr-bg-alt);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--clr-secondary);
    box-shadow: 0 0 0 3px rgba(0,169,224,0.1);
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-info-card {
    background: var(--clr-bg-alt);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--clr-border);
}

.contact-info-card h3 { margin-bottom: 1.25rem; }

.contact-info-item { display: flex; gap: 0.875rem; align-items: flex-start; margin-bottom: 1rem; }
.contact-info-item svg { width: 22px; height: 22px; color: var(--clr-secondary); flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--clr-text-muted); margin-bottom: 0.1rem; }
.contact-info-item a, .contact-info-item span { font-size: 0.975rem; color: var(--clr-text-dark); }
.contact-info-item a:hover { color: var(--clr-secondary); }

.contact-info-card hr { border: none; border-top: 1px solid var(--clr-border); margin: 1.25rem 0; }

.what-happens-next h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 0.875rem;
}
.next-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.next-steps-list li {
    font-size: 0.925rem;
    line-height: 1.4;
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
    counter-increment: steps;
}
.next-steps-list li::before {
    content: counter(steps);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.375rem;
    height: 1.375rem;
    background: var(--clr-primary);
    color: var(--clr-text-dark);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
    margin-top: 1px;
}
.next-steps-list { counter-reset: steps; }

.form-note {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    text-align: center;
    margin-top: 0.625rem;
}

.trust-signals-line {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    letter-spacing: 0.02em;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--clr-border);
}

.thank-you-content { text-align: center; max-width: 600px; margin: 0 auto; padding: 4rem 0; }
.thank-you-icon { width: 80px; height: 80px; color: var(--clr-tertiary); margin: 0 auto 2rem; }
.thank-you-steps { margin: 3rem 0; display: flex; gap: 2rem; text-align: center; }
.thank-you-step { flex: 1; }

/* ============================================
   BLOG STYLES
   ============================================ */
.blog-featured {
    background: var(--clr-bg-alt);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    display: block;
    margin-bottom: 3rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.blog-featured:hover { border-color: var(--clr-secondary); transform: translateY(-3px); }

.blog-featured-img {
    background: var(--clr-secondary);
    min-height: 300px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-heading);
}

.blog-featured-content { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; gap: 0.75rem; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }

.blog-card {
    background: var(--clr-bg-alt);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover { transform: translateY(-4px); border-color: var(--clr-secondary); }

.blog-card-img {
    height: 200px;
    background: var(--clr-bg-base);
    display: flex; align-items: center; justify-content: center;
    color: var(--clr-text-muted);
    font-family: var(--font-heading);
    font-size: 0.875rem;
}

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

.blog-meta {
    display: flex; gap: 1rem;
    font-size: 0.85rem; color: var(--clr-text-muted);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.blog-tag {
    display: inline-block;
    background: rgba(0,169,224,0.1);
    color: var(--clr-secondary);
    padding: 0.2rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem; font-weight: 600;
    font-family: var(--font-heading);
}

.blog-article { max-width: 760px; margin: 0 auto; padding: 3rem 0 5rem; }
.blog-article h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.75rem; }
.blog-article h3 { margin-top: 2rem; margin-bottom: 0.75rem; }

.blog-article p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }
.blog-article ul, .blog-article ol { margin: 1rem 0 1.5rem 1.5rem; }
.blog-article li { margin-bottom: 0.5rem; line-height: 1.7; color: var(--clr-text-muted); }
.blog-article a:not(.btn) { color: var(--clr-secondary); text-decoration: underline; }

.blog-cta-box {
    background: rgba(0,169,224,0.05);
    border: 1px solid rgba(0,169,224,0.15);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    margin: 2.5rem 0;
}
.blog-cta-box h3 { margin-top: 0; }
.blog-cta-box p { margin-bottom: 1.5rem; }
.blog-cta-box .btn {
    text-decoration: none;
}
.blog-cta-box .btn-primary {
    color: var(--clr-text-dark);
}
.blog-cta-box .btn-outline {
    color: var(--clr-text-dark);
    border-color: var(--clr-text-dark);
}
.blog-cta-box .btn-outline:hover {
    color: #ffffff;
}
.blog-cta-box-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pricing Callout Bar */
.pricing-callout-bar {
    background: var(--clr-secondary);
    padding: 1rem 0;
}

.pricing-callout {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.0625rem;
    text-align: center;
    margin: 0;
    letter-spacing: 0.01em;
}

/* Pricing Table */
.pricing-table-wrapper {
    overflow-x: auto;
    margin: 0 auto;
    max-width: 780px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    background: var(--clr-bg-alt);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.pricing-table thead {
    background: var(--clr-secondary);
    color: #ffffff;
}

.pricing-table th {
    padding: 0.875rem 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
}

.pricing-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--clr-border);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:nth-child(even) {
    background: var(--clr-bg-base);
}

.pricing-disclaimer {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--clr-text-muted);
    margin-top: 1.25rem;
    font-style: italic;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
    background: var(--clr-bg-alt);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid var(--clr-border);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured { border-color: var(--clr-primary); }

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--clr-primary); color: var(--clr-text-dark);
    padding: 0.25rem 1rem; border-radius: var(--radius-pill);
    font-family: var(--font-heading); font-weight: 600; font-size: 0.8rem;
}

.pricing-card h3 { margin-bottom: 0.5rem; }

.pricing-amount {
    font-size: 2.5rem; font-weight: 800;
    font-family: var(--font-heading);
    color: var(--clr-text-dark); margin: 1rem 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    line-height: 1.1;
}
.pricing-amount small { font-size: 1rem; font-weight: 500; color: var(--clr-text-muted); }
.pricing-amount--inquire { font-size: 1.75rem; }

.pricing-features { list-style: none; padding: 0; margin: 1.5rem 0 2rem; text-align: left; }
.pricing-features li {
    padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--clr-text-muted);
    display: flex; align-items: center; gap: 0.5rem;
}
.pricing-features li svg { width: 18px; height: 18px; color: var(--clr-tertiary); flex-shrink: 0; }

/* ============================================
   REVIEW FLOW
   ============================================ */
.review-container { max-width: 560px; margin: 0 auto; padding: 3rem 1rem 5rem; min-height: 60vh; }

.review-screen { display: none; animation: reviewFadeIn 0.3s ease; }
.review-screen.active { display: block; }

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

.star-rating { display: flex; gap: 0.75rem; justify-content: center; margin: 2rem 0; }

.star-btn {
    background: none; border: none; cursor: pointer;
    padding: 0.25rem; transition: transform 0.2s;
}
.star-btn:hover { transform: scale(1.15); }
.star-btn svg { width: 48px; height: 48px; color: #D1D5DB; transition: color 0.2s; }
.star-btn.active svg { color: var(--clr-primary); }
.star-btn.active-green svg { color: #16a34a; }
.star-btn.active-yellow svg { color: #ca8a04; }
.star-btn.active-red svg { color: #dc2626; }

.review-progress { height: 4px; background: rgba(0,0,0,0.08); border-radius: 2px; margin-bottom: 2rem; overflow: hidden; }
.review-progress-bar { height: 100%; background: var(--clr-secondary); border-radius: 2px; transition: width 0.4s ease; }

.chip-group { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }

.chip {
    display: inline-flex; align-items: center;
    padding: 0.5rem 1.5rem;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-family: var(--font-heading); font-weight: 500; font-size: 0.95rem;
    transition: all 0.2s;
    background: var(--clr-bg-alt); color: var(--clr-text-dark);
}

.chip:hover { border-color: var(--clr-secondary); background: rgba(0,169,224,0.05); }
.chip.selected { border-color: var(--clr-secondary); background: var(--clr-secondary); color: #fff; }

.review-textarea {
    width: 100%; padding: 1rem;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 1rem;
    resize: vertical; min-height: 120px;
    transition: border-color 0.3s;
}
.review-textarea:focus { outline: none; border-color: var(--clr-secondary); }

.review-screen .review-quote {
    background: rgba(0,169,224,0.05);
    border-left: 4px solid var(--clr-secondary);
    padding: 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0; font-style: italic;
}

.review-actions { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }

.btn-skip {
    background: none; border: none;
    color: var(--clr-text-muted); cursor: pointer;
    font-family: var(--font-heading); font-weight: 500;
    text-align: right; padding: 0.5rem; transition: color 0.2s;
}
.btn-skip:hover { color: var(--clr-text-dark); }

.toggle-group { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; }

.toggle-switch {
    width: 50px; height: 28px;
    background: #D1D5DB; border-radius: 14px;
    position: relative; cursor: pointer;
    transition: background 0.3s; border: none;
}
.toggle-switch.active { background: var(--clr-secondary); }
.toggle-switch::after {
    content: ''; position: absolute; top: 3px; left: 3px;
    width: 22px; height: 22px;
    background: white; border-radius: 50%;
    transition: transform 0.3s;
}
.toggle-switch.active::after { transform: translateX(22px); }

/* ============================================
   CITY / LOCATION GRID
   ============================================ */
.city-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }

.city-card {
    background: var(--clr-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none; color: inherit; display: block;
}

.city-card:hover { transform: translateY(-3px); border-color: var(--clr-secondary); }
.city-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.city-card p { font-size: 0.875rem; margin: 0; }

/* ============================================
   GUARANTEE PAGE
   ============================================ */
.guarantee-statement {
    background: rgba(255,209,0,0.08);
    border: 2px solid var(--clr-primary);
    border-radius: var(--radius-md);
    padding: 3rem; text-align: center;
    max-width: 700px; margin: 2rem auto;
}
.guarantee-statement h2 { color: var(--clr-text-dark); }
.guarantee-compare {
    font-size: 0.9375rem;
    color: var(--clr-text-muted);
    font-style: italic;
    margin-top: 1rem;
}

/* ============================================
   CAREERS PAGE
   ============================================ */
.careers-perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.careers-perk-card {
    background: var(--clr-bg-alt);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--clr-border);
    text-align: center;
}

.careers-perk-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0,169,224,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--clr-secondary);
}

.careers-perk-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.careers-perk-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Homepage Hiring Banner */
.hiring-banner {
    background: var(--clr-primary);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.hiring-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(0,0,0,0.04) 2px, transparent 2px);
    background-size: 24px 24px;
}

.hiring-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.hiring-banner-text h2 {
    color: var(--clr-text-dark);
    margin-bottom: 0.5rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.hiring-banner-text p {
    color: rgba(30,41,59,0.75);
    font-size: 1.05rem;
    margin: 0;
    max-width: 550px;
}

.hiring-banner .btn-outline {
    border-color: var(--clr-text-dark);
    color: var(--clr-text-dark);
    white-space: nowrap;
    flex-shrink: 0;
}

.hiring-banner .btn-outline:hover {
    background: var(--clr-text-dark);
    color: var(--clr-primary);
}

@media (max-width: 768px) {
    .hiring-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .hiring-banner-text p {
        margin: 0 auto;
    }
}

/* ============================================
   CTA BANNER (Reusable)
   ============================================ */
.cta-banner {
    background: var(--clr-secondary);
    padding: 4rem 0; text-align: center;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.08) 2px, transparent 2px);
    background-size: 24px 24px;
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 2rem; position: relative; }
.cta-banner .btn { position: relative; }

/* Ensure CTA banner and page-hero button groups are always flex rows with gap */
.cta-banner .container > div:has(.btn),
.cta-banner .container > div.cta-btn-group,
.page-hero .container > div:has(.btn) {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-intro { font-size: 1.15rem; max-width: 800px; margin-left: auto; margin-right: auto; }

.included-list {
    list-style: none; padding: 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.included-list li {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem; background: var(--clr-bg-alt);
    border-radius: var(--radius-sm);
}
.included-list li svg { width: 20px; height: 20px; color: var(--clr-tertiary); flex-shrink: 0; }

/* Category headings inside checklist grid span both columns */
.included-list > h3 {
    grid-column: 1 / -1;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    padding-bottom: 0.5rem;
    border-bottom: 1.5px solid var(--clr-border);
}

.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

/* ============================================
   ABOUT PAGE
   ============================================ */

/* Trust & Safety / What Drives Us cards — override the generic benefit-item grid */
.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.about-feature-card {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    background: #ffffff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 1.75rem;
}
.about-feature-card .check-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    align-self: flex-start;
    margin-bottom: 0.25rem;
}
.about-feature-card h3 {
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.3;
}
.about-feature-card p {
    font-size: 0.925rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 640px) {
    .about-feature-grid { grid-template-columns: 1fr; }
}


.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; text-align: center; margin-top: 2rem; }
.stat-item .stat-number { font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading); color: var(--clr-secondary); display: block; }
.stat-item .stat-label { font-family: var(--font-heading); font-weight: 500; color: var(--clr-text-muted); }

/* ============================================
   PROCESS PAGE TIMELINE
   ============================================ */
.process-timeline { max-width: 700px; margin: 3rem auto; position: relative; }
.process-timeline::before {
    content: ''; position: absolute; left: 28px; top: 0; bottom: 0;
    width: 2px; background: rgba(0,0,0,0.08);
}

.process-step { display: flex; gap: 2rem; margin-bottom: 2.5rem; position: relative; }

.process-step-number {
    width: 56px; height: 56px;
    background: var(--clr-tertiary); color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem;
    flex-shrink: 0; position: relative; z-index: 2;
}

.process-step-content { padding-top: 0.5rem; }
.process-step-content h3 { margin-bottom: 0.5rem; }

/* ============================================
   RESPONSIVE: Inner Pages
   ============================================ */
@media (max-width: 992px) {
    .contact-layout, .two-col, .blog-featured { grid-template-columns: 1fr; }
    .included-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .page-hero { padding: 7rem 0 2.5rem; }
    .page-hero .container::before {
        max-width: calc(100% - 1rem);
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    .thank-you-steps { flex-direction: column; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   HOMEPAGE: NEW SECTIONS (Added April 2026)
   ============================================ */

/* Section Eyebrow Label */
.section-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-secondary);
    margin-bottom: 0.75rem;
}

/* ── Stats Row ── */
.stats-section { background: var(--clr-bg-base); }

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-block {
    padding: 2rem 1rem;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--clr-border);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--clr-text-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number span {
    color: var(--clr-primary);
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

/* ── Awards Strip ── */
.awards-strip {
    background: var(--clr-bg-base);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    padding: 2rem 0;
}

.awards-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.award-badge {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

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

.award-stars svg {
    width: 22px;
    height: 22px;
    color: var(--clr-primary);
}

.award-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    max-width: 260px;
}

.award-text strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text-dark);
}

.award-text span {
    font-size: 0.8125rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.award-divider {
    width: 1px;
    height: 60px;
    background: var(--clr-border);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .trust-container {
        grid-template-columns: repeat(2, max-content);
        gap: 0.75rem 1.25rem;
    }
    .trust-item {
        font-size: 0.78rem;
    }
    .awards-row {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .award-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .award-divider {
        width: 60px;
        height: 1px;
    }
    .award-text {
        max-width: 100%;
    }
}

/* ── Painting Differentiator ── */
.painting-section {
    background: var(--clr-text-dark);
}

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

.painting-content .section-eyebrow {
    color: var(--clr-primary);
}

.painting-content h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.painting-content > p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.painting-list {
    list-style: none;
    margin: 0 0 2.5rem;
}

.painting-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.5;
}

.painting-list li::before {
    content: '';
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    background: var(--clr-primary);
    border-radius: 50%;
    margin-top: 0.375rem;
}

.painting-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
}

.painting-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Property Manager Callout ── */
.property-mgr-section {
    background: #FFF8E1;
    border-top: 4px solid var(--clr-primary);
}

.property-mgr-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.property-mgr-content h2 {
    margin-bottom: 1rem;
}

.property-mgr-content > p {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.property-mgr-list {
    list-style: none;
    margin: 0 0 2rem;
}

.property-mgr-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--clr-text-dark);
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.property-mgr-list li:last-child {
    border-bottom: none;
}

.property-mgr-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--clr-tertiary);
    margin-top: 0.125rem;
}

.property-mgr-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
}

.property-mgr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Service Area City Strip ── */
.area-section h2 {
    margin-bottom: 0.75rem;
}

.area-section .area-subtitle {
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
}

.city-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.city-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1.125rem;
    background: #fff;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-pill);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--clr-text-dark);
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.city-pill:hover {
    border-color: var(--clr-primary);
    background: #FFFDE7;
    color: var(--clr-text-dark);
}

.city-pill svg {
    width: 13px;
    height: 13px;
    color: var(--clr-secondary);
    flex-shrink: 0;
}

.area-note {
    font-size: 0.9375rem;
    color: var(--clr-text-muted);
    margin-top: 1rem;
}

.area-note a {
    color: var(--clr-secondary);
    font-weight: 500;
}

/* ── Homepage Mini FAQ ── */
.homepage-faq-section .section-header {
    margin-bottom: 0;
}

.homepage-faq-list {
    max-width: 760px;
    margin: 3rem auto 0;
}

.homepage-faq-list .faq-item {
    background: #fff;
}

.homepage-faq-footer {
    text-align: center;
    margin-top: 2.5rem;
}

/* ── Final CTA Banner ── */
.final-cta-section {
    background: var(--clr-text-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.final-cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.125rem;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    position: relative;
}

.final-cta-section .btn-outline {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.final-cta-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.cta-btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* Benefits grid mobile (6 items) */
@media (max-width: 992px) {
    .painting-split,
    .property-mgr-inner { grid-template-columns: 1fr; }
    .painting-image,
    .property-mgr-img { height: 300px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .service-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .stat-block { padding: 1.5rem 1rem; }
    .stat-number { font-size: 2.25rem; }
    .painting-image { display: none; }
    .service-cards-grid { grid-template-columns: 1fr 1fr; }
}

/* =====================================================
   SPARKLE DECORATIONS (Homepage only)
   ===================================================== */
.sparkle-field {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    fill: var(--clr-primary);
    opacity: 0;
    transition: opacity 1.4s ease;
}

.sparkle.visible {
    opacity: 0.16;
    animation: sparkle-float 7s ease-in-out infinite;
}

@keyframes sparkle-float {
    0%,  100% { transform: rotate(0deg)   scale(1); }
    40%        { transform: rotate(22deg)  scale(1.14); }
    70%        { transform: rotate(-8deg)  scale(0.93); }
}

/* Left-side sparkles: position + stagger */
.sparkle:nth-child(1) { left: 1.8vw; top: 26vh; width: 12px; height: 12px; transition-delay: 0.00s; animation-delay: 0.0s;  }
.sparkle:nth-child(2) { left: 3.4vw; top: 50vh; width:  8px; height:  8px; transition-delay: 0.25s; animation-delay: 2.2s;  }
.sparkle:nth-child(3) { left: 1.2vw; top: 72vh; width: 15px; height: 15px; transition-delay: 0.10s; animation-delay: 4.1s;  }
.sparkle:nth-child(4) { left: 3.8vw; top: 88vh; width:  9px; height:  9px; transition-delay: 0.40s; animation-delay: 1.3s;  }

/* Right-side sparkles: position + stagger */
.sparkle:nth-child(5) { right: 1.8vw; top: 20vh; width: 10px; height: 10px; transition-delay: 0.15s; animation-delay: 3.0s; }
.sparkle:nth-child(6) { right: 2.8vw; top: 44vh; width: 14px; height: 14px; transition-delay: 0.35s; animation-delay: 0.7s; }
.sparkle:nth-child(7) { right: 1.5vw; top: 67vh; width:  8px; height:  8px; transition-delay: 0.05s; animation-delay: 5.5s; }
.sparkle:nth-child(8) { right: 3.5vw; top: 84vh; width: 11px; height: 11px; transition-delay: 0.30s; animation-delay: 2.8s; }
