/* ===========================
   Washington Home Shield CSS
   =========================== */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Pacific Northwest Brand Colors */
    --primary-color: #0A2540;           /* Dark Navy Blue - Professional foundation */
    --primary-dark: #051726;            /* Darker navy for depth */
    --primary-light: #1a3f5f;           /* Lighter navy for variations */
    --secondary-color: #2C6B4F;         /* Forest Green - Main brand color */
    --secondary-dark: #234d3b;          /* Darker forest green */
    --secondary-light: #4ade80;         /* Light Green - Vibrant accent */
    --accent-gold: #d4af37;             /* Gold accent (kept for special elements) */
    
    /* Neutral Colors */
    --text-dark: #0f0f0f;               /* Nearly black for primary text */
    --text-color: #1a1a1a;              /* Dark text */
    --text-light: #717182;              /* Medium gray for secondary text */
    --text-muted: #9ca3af;              /* Lighter gray for muted text */
    --bg-light: #f8f9fa;                /* Light background */
    --bg-lighter: #ececf0;              /* Muted background */
    --bg-white: #ffffff;                /* Pure white */
    --border-color: rgba(0, 0, 0, 0.1); /* Subtle borders */
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-border-strong: rgba(255, 255, 255, 0.3);
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Additional spacing variables for new navigation */
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    
    /* Color system for new navigation */
    --color-primary-600: #0A2540;
    --color-neutral-0: #ffffff;
    --color-neutral-900: #0f0f0f;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    
    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    overflow-x: hidden; /* Prevent horizontal overflow in containers */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-dark);
}

/* Text Gradient Utility */
.text-gradient {
    background: linear-gradient(to right, #2C6B4F, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.glass-card-strong {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border-strong);
    border-radius: var(--radius-lg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(to right, #2C6B4F, #4ade80);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(44, 107, 79, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(to right, #234d3b, #2C6B4F);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 107, 79, 0.4);
    color: var(--bg-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: linear-gradient(to right, #2C6B4F, #4ade80);
    color: var(--bg-white);
    border-color: transparent;
}

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

.btn-full {
    width: 100%;
}

.btn-link {
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--secondary-dark);
    transform: translateX(5px);
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

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

/* Desktop navigation menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

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

.nav-menu > li > a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-menu > li > a:hover {
    color: var(--secondary-color);
}

/* Dropdown styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

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

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--secondary-color);
}

/* Navigation actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta,
.nav-schedule {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.nav-cta:hover {
    background: var(--primary-color);
    color: white;
}

.nav-schedule {
    background: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.nav-schedule:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

/* Mobile toggle - hidden by default on desktop */
.nav-toggle {
    display: none;
}
    margin-left: auto;
    width: 12px;
    height: 12px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    transition: transform 180ms ease;
}

.nav__item--has-children.is-open .nav__link--caret::after {
    transform: rotate(-225deg);
}

.nav__dropdown {
    display: none;
    flex-direction: column;
    margin-top: var(--space-2);
    padding: var(--space-2);
    border-radius: 16px;
    background: rgba(26, 116, 242, 0.06);
    gap: var(--space-2);
}

.nav__item--has-children.is-open .nav__dropdown {
    display: flex;
}

.nav__cta {
    margin-top: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn--outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn--outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn--primary {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.btn--primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.btn__icon {
    font-size: 1.1em;
}

@media (min-width: 992px) {
    .nav {
        max-width: 1120px;
        margin: 0 auto;
        gap: var(--space-8);
    }

    .nav__toggle {
        display: none;
    }

    .nav__menu {
        position: static;
        transform: none;
        flex-direction: row;
        align-items: center;
        padding: 0;
        gap: var(--space-6);
        box-shadow: none;
        width: 100%;
        background: transparent;
    }

    .nav__item--has-children {
        position: relative;
    }

    .nav__dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        display: none;
        padding: var(--space-3);
        border-radius: 14px;
        box-shadow: 0 16px 36px rgba(14, 54, 94, 0.18);
        background: #ffffff;
        margin-top: 0.5rem;
    }

    .nav__item--has-children:hover .nav__dropdown,
    .nav__item--has-children:focus-within .nav__dropdown {
        display: flex;
    }

    .nav__cta {
        margin: 0;
        margin-left: auto;
        flex-direction: row;
        gap: var(--space-3);
    }

    .nav__link--caret::after {
        display: none;
    }
}

/* Legacy navigation styles (keep for compatibility) */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100000;
    overflow: visible;
    isolation: isolate;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none; /* Hidden by default on desktop */
    position: absolute; /* Remove from grid flow */
}

.nav-logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-color);
}

.nav-logo a {
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin: 0;
    overflow: visible;
    z-index: 100001;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-left: auto;
}

.nav-cta {
    white-space: nowrap;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-color);
    color: white;
}

.nav-schedule {
    white-space: nowrap;
    background: var(--secondary-color);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
}

.nav-schedule:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-menu li {
    position: relative;
    overflow: visible;
    z-index: 1;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Dropdown arrow indicator */
.nav-dropdown > a::after {
    content: ' ▾';
    font-size: 0.8em;
    margin-left: 0.25rem;
}

.nav-dropdown > a {
    cursor: pointer;
}

.nav-dropdown {
    position: relative;
    z-index: 1000000;
}

.dropdown-menu {
    display: none;
    position: fixed !important;
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-md);
    min-width: 220px;
    padding: var(--spacing-sm) 0;
    list-style: none;
    z-index: 2147483647 !important;
    margin: 0;
    border: 2px solid #e0e0e0;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    display: block !important;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem var(--spacing-sm);
    color: var(--text-dark);
    white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Desktop: remove dropdown arrow indicator completely */
@media (min-width: 992px) {
    .nav-dropdown > a::after {
        content: none !important;
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(10, 37, 64, 0.85) 50%, rgba(44, 107, 79, 0.7) 100%);
    color: var(--bg-white);
    padding: var(--spacing-xxl) 0;
    overflow: visible;
    position: relative;
    z-index: 1;
}

/* Ensure all main content sections stay behind header and dropdown */
section {
    position: relative;
    z-index: 1;
}

/* Desktop Navigation Improvements */
@media (min-width: 992px) {
    .nav {
        padding: 1rem 2rem;
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        align-items: center;
    }
    
    .logo-text {
        justify-self: start;
        position: static !important;
        transform: none !important;
        order: 1;
        font-size: 1.75rem;
    }
    
    .nav-menu {
        gap: 2rem;
        justify-self: center;
        display: flex;
        flex-direction: row;
        background: transparent;
        box-shadow: none;
        padding: 0;
        width: auto;
        max-width: none;
        position: static;
        transform: none;
    }
    
    .nav-actions {
        gap: 1rem;
        justify-self: end;
    }
    
    .nav-toggle {
        display: none !important;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 107, 79, 0.2) 0%, transparent 100%);
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 650px;
    text-align: left;
    position: relative;
    z-index: 101;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    margin-bottom: var(--spacing-lg);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bg-white);
}

.badge-icon {
    font-size: 1rem;
    color: var(--accent-gold);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--bg-white);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    color: var(--secondary-color);
    display: block;
    margin-top: 0.25rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    color: var(--bg-white);
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 102; /* Highest - ensure buttons are clickable */
}

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

.btn-primary.btn-large {
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.4);
}

.btn-primary.btn-large:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.5);
}

.btn-secondary.btn-large {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary.btn-large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1rem;
}

.feature-item .icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.hero-image {
    position: relative;
    z-index: 1; /* Reduced to be lower than hero-container */
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-title-accent {
        display: inline;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-img {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: var(--spacing-xl) 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* Services Section */
.services {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
}

.section-label {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.section-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(44, 107, 79, 0.15);
    border-color: var(--secondary-light);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.service-card p {
    margin-bottom: var(--spacing-md);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-light);
}

.why-choose-us .section-title {
    color: var(--primary-color);
    font-size: 2.75rem;
    font-weight: 700;
}

.why-choose-us .section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xxl);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.process-step {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(44, 107, 79, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2C6B4F 0%, #4ade80 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(44, 95, 45, 0.3);
}

.step-icon {
    font-size: 3rem;
    margin: var(--spacing-md) 0;
    filter: grayscale(0.2);
}

.process-step h3 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Legacy benefit styles - keep for backward compatibility */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.benefit-item h3 {
    margin-bottom: var(--spacing-sm);
}

/* Service Areas Section */
.service-areas {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.area-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
}

.area-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(10, 37, 64, 0.85) 50%, rgba(44, 107, 79, 0.7) 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 107, 79, 0.2) 0%, transparent 100%);
    opacity: 0.5;
    pointer-events: none;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.cta-left {
    padding-right: var(--spacing-lg);
}

.cta-left h2 {
    color: var(--bg-white);
    font-size: 3rem;
    margin-bottom: var(--spacing-xs);
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.375rem;
    color: var(--bg-white);
    margin-bottom: var(--spacing-xxl);
    opacity: 0.95;
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    color: var(--bg-white);
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.95rem;
}

.btn-cta {
    margin-top: var(--spacing-lg);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    font-weight: 700;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--secondary-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-right {
    display: flex;
    justify-content: center;
}

.quote-form-card {
    background: var(--bg-white);
    padding: var(--spacing-xxl);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 550px;
}

.quote-form-card h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.quote-form .form-group {
    margin-bottom: var(--spacing-md);
}

.quote-form label {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.quote-form textarea {
    resize: vertical;
}

.btn-success {
    background: #28a745;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

/* Responsive CTA Section */
@media (max-width: 968px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .cta-left {
        padding-right: 0;
        text-align: center;
    }
    
    .cta-left h2 {
        font-size: 2.25rem;
    }
    
    .contact-info-item {
        justify-content: center;
        text-align: left;
    }
    
    .btn-cta {
        display: block;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

.cta-subtext {
    margin-top: var(--spacing-md);
    font-size: 1.125rem;
}

.cta-subtext a {
    color: var(--secondary-color);
    font-weight: 700;
}

.cta-subtext a:hover {
    color: var(--bg-white);
}


/* Service Detail Pages */
.service-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.service-hero h1 {
    color: var(--bg-white);
    margin-bottom: var(--spacing-sm);
}

.service-hero-subtitle {
    font-size: 1.125rem;
    color: var(--bg-white);
    opacity: 0.95;
}

.service-details {
    padding: var(--spacing-xxl) 0;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
}

/* New Service Page Layout Styles */
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    max-width: 100%;
}

.service-main {
    width: 100%;
}

.service-intro {
    margin-bottom: var(--spacing-xl);
}

.service-intro h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
}

.service-intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0;
}

.benefits-list li {
    padding: var(--spacing-xs) 0;
    padding-left: 0;
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
}

.benefits-list li strong {
    color: var(--primary-color);
}

.service-details {
    margin-top: var(--spacing-xl);
}

.service-details h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-size: 1.75rem;
}

.process-steps {
    display: grid;
    gap: var(--spacing-lg);
}

.step {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary-color);
}

.step-number {
    background: var(--secondary-color);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
}

.step-content p {
    color: var(--text-color);
    line-height: 1.6;
}

.service-types {
    margin-top: var(--spacing-xl);
}

.service-types h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-size: 1.75rem;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.type-card {
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.type-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.type-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.type-card h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.type-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.why-choose {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.why-choose h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-size: 1.75rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.benefit {
    text-align: center;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.benefit h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: 1.1rem;
}

.benefit p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Service Page Pricing Styles */
.service-pricing {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.service-pricing h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
    text-align: center;
}

.service-pricing .pricing-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.service-type {
    font-weight: 500;
    color: var(--text-color);
}

.price-range {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.pricing-note {
    margin-top: var(--spacing-md);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Responsive adjustments for service pages */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .types-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .service-intro h2 {
        font-size: 1.75rem;
    }
    
    .service-details h3,
    .service-types h3,
    .why-choose h3 {
        font-size: 1.5rem;
    }
}

.service-description h2 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.service-description h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-xs);
    position: relative;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.pricing-list {
    list-style: none;
    padding-left: 0;
}

.pricing-list li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--border-color);
}

.note {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.feature {
    background-color: var(--bg-light);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 500;
}

/* Service Page Showcase Section */
.service-showcase {
    margin: var(--spacing-xl) 0;
    display: grid;
    gap: var(--spacing-xl);
}

.showcase-item {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.showcase-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.showcase-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.showcase-content {
    padding: var(--spacing-lg);
}

.showcase-content h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.showcase-content p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Responsive adjustments for showcase */
@media (max-width: 768px) {
    .showcase-image {
        height: 250px;
    }
    
    .showcase-content h4 {
        font-size: 1.25rem;
    }
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.quote-form-card,
.service-info-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.service-info-card h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--border-color);
}

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

.service-info-card.alert {
    background-color: #fff3cd;
    border-color: var(--warning);
}

/* Forms */
.quote-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.form-group label {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 90, 142, 0.1);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin-top: var(--spacing-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* Contact Page */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--bg-white);
    margin-bottom: var(--spacing-sm);
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--bg-white);
}

.contact-section {
    padding: var(--spacing-xxl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: var(--spacing-xs);
}

.contact-text .small {
    font-size: 0.9rem;
    color: var(--text-light);
}

.why-contact {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: var(--spacing-xs) 0;
}

.contact-form-wrapper {
    display: flex;
}

.contact-form-card {
    flex: 1;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
    margin-bottom: var(--spacing-sm);
}

.contact-form-card > p {
    margin-bottom: var(--spacing-lg);
}

.service-areas-map {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-light);
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.area-column h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.area-column ul {
    list-style: none;
    padding: 0;
}

.area-column li {
    padding: var(--spacing-xs) 0;
    color: var(--text-light);
}

.area-note {
    text-align: center;
    margin-top: var(--spacing-xl);
    font-size: 1.125rem;
}

/* About Page */
.about-content {
    padding: var(--spacing-xxl) 0;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xxl);
}

.lead {
    font-size: 1.125rem;
    color: var(--text-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.about-section {
    padding: var(--spacing-lg);
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

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

.why-choose-section {
    margin-bottom: var(--spacing-xxl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition);
}

.feature-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.commitment-section,
.service-area-section,
.stats-section {
    margin-bottom: var(--spacing-xxl);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.commitment-item {
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
}

.commitment-item h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.stat-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.98) 0%, rgba(10, 37, 64, 0.95) 100%);
    color: var(--bg-white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(74, 222, 128, 0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-col h3,
.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: var(--spacing-sm);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: var(--spacing-xs);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--secondary-light);
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(74, 222, 128, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Desktop: Ensure dropdown works on hover */
@media (min-width: 769px) {
    .nav-dropdown {
        position: relative;
        z-index: 999999999 !important;
    }
    
    .dropdown-menu {
        display: none !important;
        position: fixed !important; /* Fixed to viewport, not absolute */
        background-color: #ffffff !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
        border-radius: var(--radius-md);
        min-width: 220px;
        padding: var(--spacing-sm) 0;
        list-style: none;
        z-index: 2147483647 !important; /* Maximum z-index */
        margin: 0;
        border: 2px solid #e0e0e0;
        /* Remove top/left - will be set by JS */
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-md) 0;
        align-items: stretch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        background-color: var(--bg-light);
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    :root {
        --spacing-xxl: 2.5rem;
        --spacing-xl: 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .services-grid,
    .benefits-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Overlay Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 37, 64, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-md);
    overflow-y: auto;
}

.modal-container.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-container.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-dark);
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: rotate(90deg);
}

.modal-body {
    padding: var(--spacing-xl);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.modal-section {
    margin-bottom: var(--spacing-xl);
}

.modal-section h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.modal-benefits,
.modal-process {
    display: grid;
    gap: var(--spacing-sm);
}

.modal-benefit-item,
.modal-process-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.modal-benefit-item:hover,
.modal-process-item:hover {
    background-color: var(--bg-lighter);
    transform: translateX(5px);
}

.modal-benefit-icon,
.modal-process-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

/* Gallery Styles */
.gallery-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-light) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Prevent gallery overflow */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    background-color: var(--bg-white);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-images {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gallery-before,
.gallery-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-after {
    clip-path: inset(0 50% 0 0);
}

.gallery-item:hover .gallery-after {
    clip-path: inset(0 0 0 0);
}

.gallery-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-gold) 0%, var(--bg-white) 100%);
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.gallery-label {
    position: absolute;
    top: var(--spacing-sm);
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-label.before {
    left: var(--spacing-sm);
}

.gallery-label.after {
    right: var(--spacing-sm);
}

.gallery-info {
    padding: var(--spacing-md);
    text-align: center;
}

.gallery-info h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

/* Testimonials Carousel */
.testimonials-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl);
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    min-width: 100%;
    padding: var(--spacing-lg);
}

.testimonial-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-lighter) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

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

.testimonial-details h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.testimonial-details p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.carousel-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.25rem;
}

.carousel-btn:hover {
    background-color: var(--primary-light);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Glassmorphism Effects */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animated Elements */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--secondary-color));
    z-index: 10000;
    transition: width 0.2s ease;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-md);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* Desktop Navigation - Three Column Layout */
@media (min-width: 992px) {
    .nav {
        display: flex;
        align-items: center;
        gap: var(--spacing-lg);
    }
    
    .nav-menu {
        display: flex;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .nav-cta {
        display: block;
    }
    
    .nav-schedule {
        display: block;
    }
    
    .nav-toggle {
        display: none;
    }
}

@media (max-width: 991px) {
    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        order: 4;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
    }
    
    .nav-toggle {
        display: flex;
    }
}

@media (min-width: 1200px) {
    .nav {
        padding: var(--spacing-sm) var(--spacing-xl);
    }
    
    .nav-menu {
        gap: var(--spacing-lg);
    }
}

/* ===========================
   WOOD FLOOR RESTORATION PAGE STYLES
   =========================== */

/* Service Hero - Wood Floor */
.wood-floor-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5f7d 100%);
    padding: calc(var(--spacing-xxl) * 1.5) 0;
}

.service-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.15);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.highlight-icon {
    font-size: 1.5rem;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

/* Service Offerings Grid */
.service-offerings {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-white);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.offering-card {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.offering-card.featured {
    border-color: var(--secondary-color);
    background: white;
    box-shadow: 0 4px 16px rgba(44, 95, 45, 0.15);
}

.offering-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offering-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.offering-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.offering-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.offering-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.offering-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    position: relative;
    padding-left: 1.5rem;
}

.offering-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Restoration Process Timeline */
.restoration-process {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.process-timeline {
    margin-top: var(--spacing-xxl);
}

.timeline-phase {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.timeline-phase.highlight-phase {
    border: 3px solid var(--secondary-color);
    background: linear-gradient(135deg, #f0f9f0 0%, #ffffff 100%);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.phase-number {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.phase-header h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin: 0;
}

.phase-badge {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.phase-steps {
    display: grid;
    gap: var(--spacing-lg);
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-md);
    align-items: start;
}

.step-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Premium Finishes Section */
.premium-finishes {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.finishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.finish-card {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.finish-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.finish-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.finish-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.finish-badge.recommended {
    background: var(--secondary-color);
    color: white;
}

.finish-badge.eco {
    background: #4CAF50;
    color: white;
}

.finish-badge.commercial {
    background: var(--primary-color);
    color: white;
}

.finish-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.finish-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.finish-benefits {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.finish-benefits li {
    padding: 0.5rem 0;
    color: var(--text-color);
    line-height: 1.5;
}

.finish-benefits strong {
    color: var(--primary-color);
}

.finish-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: var(--spacing-md) 0;
}

/* Finish Comparison Table */
.comparison-table {
    margin-top: var(--spacing-xxl);
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    overflow-x: auto;
}

.comparison-table h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    background: var(--bg-light);
    color: var(--primary-color);
    font-weight: 700;
}

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

/* Why Choose Premium Section */
.why-choose-premium {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.premium-feature {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s ease;
}

.premium-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.premium-feature .feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.premium-feature h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.premium-feature p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Trust Badges */
.trust-badges {
    padding: var(--spacing-xl) 0;
    background: white;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.badges-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.badge-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.badge-item .badge-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.badge-item h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.badge-item p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Gallery Section */
.gallery-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.gallery-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 250px;
}

.ba-image {
    position: relative;
    background: #ddd;
    overflow: hidden;
}

.ba-image.before {
    background: linear-gradient(135deg, #8B7355 0%, #6B5344 100%);
}

.ba-image.after {
    background: linear-gradient(135deg, #D4A574 0%, #C19A6B 100%);
}

.ba-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.gallery-info {
    padding: var(--spacing-md);
}

.gallery-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gallery-info p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.gallery-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* Pricing Tiers */
.pricing-tiers {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.pricing-card {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    background: white;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-tier {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.pricing-card h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.pricing-amount {
    text-align: center;
    margin: var(--spacing-lg) 0;
}

.pricing-amount .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.pricing-amount .unit {
    font-size: 1.25rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-color);
    border-bottom: 1px solid #e0e0e0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Service Areas - Wood Floor */
.service-areas-wood {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.areas-map {
    margin-top: var(--spacing-xl);
}

.area-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.area-item {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.area-item h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.area-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Lead Form Section */
.lead-form-section {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.form-header h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.form-header p {
    color: var(--text-light);
}

.lead-form {
    display: grid;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-sm);
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: var(--spacing-md);
}

.contact-alternatives {
    margin-top: var(--spacing-xl);
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid #ddd;
}

.contact-alternatives p {
    margin: 0.5rem 0;
    color: var(--text-light);
}

.contact-alternatives a {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Lead Magnets */
.lead-magnets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xxl);
}

.magnet-card {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.magnet-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.magnet-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.magnet-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.faq-item {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.final-cta > p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.cta-guarantees span {
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive Design for Wood Floor Page */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .offerings-grid,
    .finishes-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .before-after {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .ba-image {
        height: 200px;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .step-item {
        grid-template-columns: 1fr;
    }
    
    .step-icon {
        text-align: left;
    }
}

/* ===========================
   WALLPAPER INSTALLATION PAGE STYLES
   =========================== */

/* Wallpaper Hero Section */
.wallpaper-hero {
    background: linear-gradient(135deg, #2c5f7d 0%, #1e3a5f 100%);
    padding: calc(var(--spacing-xxl) * 1.8) 0;
    color: white;
    text-align: center;
}

.hero-content-wallpaper {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-wallpaper h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    color: white;
    line-height: 1.2;
}

.hero-subtitle-wallpaper {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    line-height: 1.6;
}

/* Service Process Timeline */
.service-process {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-white);
}

.process-timeline-wallpaper {
    max-width: 900px;
    margin: var(--spacing-xxl) auto 0;
}

.timeline-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    align-items: start;
}

.step-number-badge {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
    flex-shrink: 0;
}

.step-content-box {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-content-box:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.step-content-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.step-content-box p {
    color: var(--text-light);
    line-height: 1.6;
}

.timeline-connector {
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    margin: 0 auto 0 35px;
    border-radius: 2px;
}

/* Wallpaper Selection Guide */
.wallpaper-selection-guide {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.selection-section {
    margin-top: var(--spacing-xxl);
}

.subsection-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.subsection-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Wallpaper Type Table */
.wallpaper-type-table {
    overflow-x: auto;
    margin-top: var(--spacing-lg);
}

.comparison-table-wallpaper {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-table-wallpaper thead {
    background: var(--primary-color);
    color: white;
}

.comparison-table-wallpaper th,
.comparison-table-wallpaper td {
    padding: var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table-wallpaper th {
    font-weight: 700;
    font-size: 1rem;
}

.comparison-table-wallpaper td {
    color: var(--text-color);
    line-height: 1.6;
}

.comparison-table-wallpaper tbody tr:hover {
    background: var(--bg-light);
}

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

/* Style Categories */
.style-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.style-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.style-image {
    height: 200px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.texture-bg {
    background: linear-gradient(135deg, #c9b18f 0%, #a89272 100%);
}

.geometric-bg {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

.botanical-bg {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.practical-bg {
    background: linear-gradient(135deg, #5a67d8 0%, #4c51bf 100%);
}

.subtle-bg {
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
}

.style-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.style-content {
    padding: var(--spacing-lg);
}

.style-content h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.style-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.style-features {
    list-style: none;
    padding: 0;
}

.style-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    position: relative;
    padding-left: 1.5rem;
}

.style-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Why Professional Section */
.why-professional {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.professional-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.benefit-card-wallpaper {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card-wallpaper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-icon-wallpaper {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.benefit-card-wallpaper h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.benefit-card-wallpaper p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Wallpaper Gallery */
.wallpaper-gallery {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.gallery-grid-wallpaper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.gallery-item-wallpaper {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.gallery-item-wallpaper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gallery-image {
    height: 250px;
    position: relative;
}

.texture-showcase {
    background: linear-gradient(135deg, #c9b18f 0%, #a89272 100%);
}

.geometric-showcase {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

.botanical-showcase {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.vinyl-showcase {
    background: linear-gradient(135deg, #5a67d8 0%, #4c51bf 100%);
}

.gallery-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.gallery-info-wallpaper {
    padding: var(--spacing-md);
}

.gallery-info-wallpaper h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gallery-info-wallpaper p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Consultation CTA Section */
.consultation-cta {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.cta-content-wallpaper {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content-wallpaper h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.cta-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xxl);
    line-height: 1.6;
}

.cta-form-container {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.consultation-form {
    display: grid;
    gap: var(--spacing-md);
}

.form-cta-buttons {
    margin-top: var(--spacing-md);
}

.form-privacy {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: var(--spacing-md);
}

.secondary-cta {
    margin-top: var(--spacing-xxl);
}

.download-guide {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.guide-icon {
    font-size: 4rem;
}

.guide-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.guide-content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.contact-alternatives-wallpaper {
    margin-top: var(--spacing-xl);
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid #ddd;
}

.contact-alternatives-wallpaper p {
    margin: 0.5rem 0;
    color: var(--text-light);
}

.contact-alternatives-wallpaper a {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Trust Section */
.trust-section-wallpaper {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
    border-top: 1px solid #e0e0e0;
}

.trust-badges-wallpaper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.trust-item h4 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.trust-item p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Service Areas Wallpaper */
.service-areas-wallpaper {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.areas-list-wallpaper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.area-column {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.area-column h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.area-column p {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Wallpaper */
.faq-wallpaper {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.faq-grid-wallpaper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.faq-item-wallpaper {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item-wallpaper h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.faq-item-wallpaper p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design for Wallpaper Page */
@media (max-width: 768px) {
    .hero-content-wallpaper h1 {
        font-size: 2rem;
    }
    
    .timeline-step {
        grid-template-columns: 60px 1fr;
        gap: var(--spacing-md);
    }
    
    .step-number-badge {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .timeline-connector {
        margin-left: 23px;
    }
    
    .comparison-table-wallpaper {
        font-size: 0.875rem;
    }
    
    .comparison-table-wallpaper th,
    .comparison-table-wallpaper td {
        padding: var(--spacing-sm);
    }
    
    .style-categories {
        grid-template-columns: 1fr;
    }
    
    .download-guide {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
}

/* ===========================
   LINOLEUM FLOORING PAGE STYLES
   =========================== */

/* Linoleum Hero Section */
.linoleum-hero {
    background: linear-gradient(135deg, #2c7d5f 0%, #1e5f4a 100%);
    padding: calc(var(--spacing-xxl) * 2) 0;
    color: white;
    text-align: center;
}

.hero-content-linoleum {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content-linoleum h1 {
    font-size: 3.25rem;
    margin-bottom: var(--spacing-md);
    color: white;
    line-height: 1.2;
}

.hero-subtitle-linoleum {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Why Linoleum Section */
.why-linoleum {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-white);
}

.benefits-grid-linoleum {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
}

.benefit-card-linoleum {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card-linoleum:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.benefit-icon-large {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    line-height: 1;
}

.benefit-card-linoleum h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.benefit-card-linoleum p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Installation Process Linoleum */
.installation-process-linoleum {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.process-steps-linoleum {
    max-width: 1000px;
    margin: var(--spacing-xxl) auto 0;
    display: grid;
    gap: var(--spacing-lg);
}

.process-step-linoleum {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--spacing-lg);
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.process-step-linoleum:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.step-number-linoleum {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c7d5f 0%, #1e5f4a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(44, 125, 95, 0.3);
    flex-shrink: 0;
}

.step-content-linoleum h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.step-content-linoleum p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Design Options Section */
.design-options-linoleum {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.material-forms {
    margin-top: var(--spacing-xxl);
}

.subsection-title-linoleum {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.form-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.form-image {
    height: 220px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.sheet-bg {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5f3d 100%);
}

.tile-bg {
    background: linear-gradient(135deg, #6b8e7d 0%, #4a7c59 100%);
}

.form-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.form-content {
    padding: var(--spacing-lg);
    background: white;
}

.form-content h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.form-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.form-features {
    list-style: none;
    padding: 0;
}

.form-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    position: relative;
    padding-left: 1.5rem;
}

.form-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7d5f;
    font-weight: bold;
}

/* Style Showcase */
.style-showcase {
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-xxl);
    border-top: 2px solid #e0e0e0;
}

.styles-grid-linoleum {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.style-card-linoleum {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.style-card-linoleum:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.style-image-linoleum {
    height: 200px;
    position: relative;
}

.marbled-pattern {
    background: linear-gradient(135deg, #c9b18f 20%, #8b7355 40%, #a89272 60%, #c9b18f 80%);
}

.solid-bold {
    background: linear-gradient(135deg, #5a67d8 0%, #4c51bf 100%);
}

.natural-organic {
    background: linear-gradient(135deg, #a0b0a0 0%, #708070 100%);
}

.custom-inlay {
    background: linear-gradient(135deg, #d4a574 0%, #8b7355 50%, #d4a574 100%);
}

.style-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 700;
}

.style-info {
    padding: var(--spacing-md);
}

.style-info h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.style-info p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Comparison Section */
.comparison-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.comparison-table-container {
    margin-top: var(--spacing-xl);
    overflow-x: auto;
}

.comparison-table-linoleum {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comparison-table-linoleum thead {
    background: var(--primary-color);
    color: white;
}

.comparison-table-linoleum th,
.comparison-table-linoleum td {
    padding: var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table-linoleum th {
    font-weight: 700;
    font-size: 1.125rem;
}

.comparison-table-linoleum td {
    color: var(--text-color);
    line-height: 1.7;
}

.highlight-column {
    background: rgba(44, 125, 95, 0.05);
    font-weight: 600;
}

.comparison-table-linoleum tbody tr:hover {
    background: rgba(44, 125, 95, 0.03);
}

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

.comparison-note {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: white;
    border-left: 4px solid #2c7d5f;
    border-radius: var(--radius-md);
}

.comparison-note p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

/* Linoleum Gallery */
.linoleum-gallery {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.gallery-grid-linoleum {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.gallery-item-linoleum {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.gallery-item-linoleum:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gallery-image-linoleum {
    height: 250px;
    position: relative;
}

.kitchen-install {
    background: linear-gradient(135deg, #c9b18f 20%, #8b7355 50%, #a89272 80%);
}

.bathroom-install {
    background: linear-gradient(135deg, #a0b0a0 0%, #708070 100%);
}

.living-install {
    background: linear-gradient(135deg, #5a67d8 0%, #4c51bf 100%);
}

.commercial-install {
    background: linear-gradient(135deg, #6b8e7d 0%, #4a7c59 100%);
}

.gallery-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.gallery-caption {
    padding: var(--spacing-md);
    background: white;
}

.gallery-caption h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.gallery-caption p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Final CTA Linoleum */
.final-cta-linoleum {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.cta-content-linoleum {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content-linoleum h2 {
    color: var(--primary-color);
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.cta-text {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xxl);
    line-height: 1.7;
}

.consultation-form-container {
    background: white;
    padding: var(--spacing-xxl);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--spacing-xl);
}

.linoleum-form {
    display: grid;
    gap: var(--spacing-md);
}

.form-disclaimer {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: var(--spacing-md);
}

/* Trust Indicators */
.trust-indicators-linoleum {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.trust-badge-linoleum {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.badge-icon-trust {
    font-size: 2.5rem;
    color: #2c7d5f;
    margin-bottom: 0.5rem;
}

.trust-badge-linoleum h4 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.trust-badge-linoleum p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.contact-methods {
    margin-top: var(--spacing-xl);
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid #ddd;
}

.contact-methods p {
    margin: 0.5rem 0;
    color: var(--text-light);
}

.contact-methods a {
    color: #2c7d5f;
    font-weight: 600;
}

/* Care Guide Section */
.care-guide-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.care-guide-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: var(--spacing-xxl);
    border-radius: var(--radius-lg);
}

.guide-icon-large {
    font-size: 5rem;
}

.guide-text h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.guide-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

/* FAQ Linoleum */
.faq-linoleum {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-light);
}

.faq-grid-linoleum {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.faq-item-linoleum {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item-linoleum h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.faq-item-linoleum p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Service Areas Linoleum */
.service-areas-linoleum {
    padding: var(--spacing-xxl) 0;
    background: white;
}

.areas-grid-linoleum {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.area-card-linoleum {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.area-card-linoleum h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.area-card-linoleum p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Responsive Design for Linoleum Page */
@media (max-width: 768px) {
    .hero-content-linoleum h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle-linoleum {
        font-size: 1.125rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .benefits-grid-linoleum {
        grid-template-columns: 1fr;
    }
    
    .process-step-linoleum {
        grid-template-columns: 60px 1fr;
        gap: var(--spacing-md);
    }
    
    .step-number-linoleum {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .forms-grid {
        grid-template-columns: 1fr;
    }
    
    .styles-grid-linoleum {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-linoleum {
        font-size: 0.875rem;
    }
    
    .comparison-table-linoleum th,
    .comparison-table-linoleum td {
        padding: var(--spacing-sm);
    }
    
    .care-guide-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .trust-indicators-linoleum {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   FORM SUCCESS/ERROR MESSAGES
   =========================== */

.form-message {
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin: 15px 0;
    font-weight: 500;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    box-shadow: 0 2px 8px rgba(21, 87, 36, 0.1);
}

.form-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    box-shadow: 0 2px 8px rgba(114, 28, 36, 0.1);
}

.form-message.success::before {
    content: "✓ ";
    font-weight: bold;
}

.form-message.error::before {
    content: "⚠ ";
    font-weight: bold;
}

/* Field-level error styling */
.field-error {
    color: var(--danger) !important;
    font-size: 0.875rem !important;
    margin-top: 0.25rem !important;
    display: block;
}

input.error,
textarea.error,
select.error {
    border-color: var(--danger) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Form submission loading state */
button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #6c757d !important;
}

button[type="submit"]:disabled::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top: 2px solid transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===========================
   PRICING SIDEBAR STYLES
   =========================== */

.pricing-sidebar {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 16px;
    padding: var(--spacing-lg);
    position: sticky;
    top: var(--spacing-lg);
    max-height: calc(100vh - var(--spacing-xl));
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(44, 107, 79, 0.15);
}

.pricing-sidebar h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-intro {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
    text-align: center;
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid rgba(44, 107, 79, 0.2);
}

.service-pricing-section {
    margin-bottom: var(--spacing-lg);
    background: white;
    border-radius: 12px;
    padding: var(--spacing-md);
    border: 1px solid rgba(44, 107, 79, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-pricing-section:last-of-type {
    margin-bottom: 0;
}

.service-pricing-section h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(44, 107, 79, 0.2);
    padding-bottom: 0.5rem;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-row:last-child {
    border-bottom: none;
}

.service-item {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
}

.service-price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    margin-left: var(--spacing-sm);
}

.pricing-notes {
    background: rgba(44, 107, 79, 0.1);
    border: 1px solid rgba(44, 107, 79, 0.2);
    border-radius: 12px;
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.pricing-notes h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-notes li {
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-left: 0;
}

.pricing-notes li:last-child {
    margin-bottom: 0;
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: var(--spacing-lg);
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(44, 107, 79, 0.3);
}

.badge-icon {
    font-size: 1rem;
}

.badge-text {
    font-size: 0.85rem;
}

/* Schedule grid adjustments */
.schedule-grid {
    grid-template-columns: 400px 1fr;
    gap: var(--spacing-xl);
    align-items: flex-start;
}

/* Mobile responsiveness for pricing sidebar */
@media (max-width: 1024px) {
    .schedule-grid {
        grid-template-columns: 350px 1fr;
        gap: var(--spacing-lg);
    }
    
    .pricing-sidebar {
        position: static;
        max-height: none;
        margin-bottom: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .pricing-sidebar {
        order: 2;
        position: static;
        max-height: 400px;
        overflow-y: auto;
    }
    
    .contact-form-wrapper {
        order: 1;
    }
    
    .service-pricing-section {
        padding: var(--spacing-sm);
    }
    
    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .service-price {
        margin-left: 0;
        font-size: 1.1rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .badge {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

/* Remove old pricing display styles */
.pricing-display {
    display: none !important;
}

/* ===========================
   SCHEDULING PAGE STYLES
   =========================== */

.schedule-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: white;
}

.schedule-hero h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.schedule-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Scheduling Grid Layout */
.schedule-grid {
    gap: var(--spacing-xl);
    align-items: flex-start;
}

.schedule-info {
    position: sticky;
    top: var(--spacing-lg);
}

/* Process Steps */
.process-steps {
    margin: var(--spacing-lg) 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.step-number {
    background: var(--secondary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Scheduling Notes */
.scheduling-notes {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9ff 100%);
    padding: var(--spacing-md);
    border-radius: 12px;
    margin: var(--spacing-lg) 0;
    border: 1px solid rgba(44, 107, 79, 0.2);
}

.scheduling-notes h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, #fef3cd 0%, #fed7aa 100%);
    padding: var(--spacing-md);
    border-radius: 12px;
    margin-top: var(--spacing-lg);
    border: 1px solid #f59e0b;
}

.emergency-contact h3 {
    color: #b45309;
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.emergency-contact p {
    color: #92400e;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.emergency-contact a {
    color: #b45309;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.emergency-contact a:hover {
    border-bottom-color: #b45309;
}

/* Form Sections */
.form-section {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Checkbox Styling */
.checkbox-group {
    margin-top: var(--spacing-md);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    margin-right: var(--spacing-sm);
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label:hover .checkmark {
    border-color: var(--secondary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Enhanced Date/Time Inputs */
input[type="date"],
input[type="time"] {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-sm);
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-color);
}

input[type="date"]:focus,
input[type="time"]:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(44, 107, 79, 0.1);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
    padding: var(--spacing-xxl) 0;
    margin-top: var(--spacing-xxl);
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: var(--spacing-xl);
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.faq-item {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .schedule-hero h1 {
        font-size: 2rem;
    }
    
    .schedule-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .schedule-info {
        position: static;
        order: 2;
    }
    
    .contact-form-wrapper {
        order: 1;
    }
    
    .step {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-sm);
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .form-section h3 {
        font-size: 1.1rem;
    }
}

/* Loading State for Schedule Form */
.schedule-form.loading {
    opacity: 0.7;
    pointer-events: none;
}

.schedule-form.loading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* ===========================
   PRICING DISPLAY STYLES
   =========================== */

.pricing-display {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: var(--spacing-lg);
    margin-top: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(44, 107, 79, 0.1);
}

.pricing-display h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.pricing-item {
    background: white;
    border: 1px solid rgba(44, 107, 79, 0.2);
    border-radius: 8px;
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 107, 79, 0.15);
}

.pricing-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.pricing-details {
    flex: 1;
}

.pricing-details strong {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.pricing-details .price {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.pricing-details small {
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

.pricing-note {
    background: rgba(44, 107, 79, 0.1);
    border: 1px solid rgba(44, 107, 79, 0.2);
    border-radius: 8px;
    padding: var(--spacing-sm);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
}

.pricing-note strong {
    color: var(--secondary-color);
}

/* Mobile optimizations for pricing */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .pricing-item {
        padding: var(--spacing-sm);
    }
    
    .pricing-icon {
        font-size: 1.5rem;
    }
    
    .pricing-details strong {
        font-size: 0.95rem;
    }
    
    .pricing-details .price {
        font-size: 1rem;
    }
}
