/* Island Fresh Cleaning - Global Stylesheet */

/* ==================== CSS RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-blue: #0077BE;
    --primary-blue-dark: #005a8f;
    --secondary-green: #7CB342;
    --secondary-green-dark: #5a9e2f;
    --accent-white: #FFFFFF;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-gray: #6c757d;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    --border-color: #dee2e6;
    --border-radius: 8px;

    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Arial', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;

    /* Container spacing */
    --container-padding: 1.5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--accent-white);
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-blue-dark);
}

/* ==================== LAYOUT UTILITIES ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--spacing-xl) 0;
    margin: 0;
}

.section:first-of-type {
    padding-top: var(--spacing-xl);
}

.section:last-of-type {
    padding-bottom: var(--spacing-xl);
}

.section-alt {
    background-color: var(--bg-light);
}

.section-white {
    background-color: var(--accent-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-top    { padding-top: var(--spacing-xl); padding-bottom: 0; }
.section-bottom { padding-top: 0; padding-bottom: var(--spacing-xl); }
.section-compact { padding: var(--spacing-md) 0; }
.section-large  { padding: var(--spacing-xxl) 0; }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background-color: var(--primary-blue);
    color: var(--accent-white);
    padding: var(--spacing-xs) 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.25rem 0;
}

.top-bar-item i {
    font-size: 1rem;
}

.top-bar a {
    color: var(--accent-white);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.top-bar a:hover {
    opacity: 0.8;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Main Header */
header,
.main-header {
    background-color: var(--accent-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled,
.main-header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    gap: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    max-width: 100%;
    flex-shrink: 0;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo-image {
    display: block;
    max-height: 72px;
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: max-height 0.3s ease;
}

.logo-text {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-text .brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.logo-text .tagline {
    font-size: 0.9rem;
    color: var(--secondary-green);
    font-style: italic;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 28px;
    height: 22px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation */
nav ul,
.main-nav {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li,
.main-nav > li {
    position: relative;
}

nav a,
.main-nav > li > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    position: relative;
    transition: all var(--transition-fast);
    text-decoration: none;
    border-radius: 4px;
}

nav a:hover,
nav a.active,
.main-nav > li > a:hover,
.main-nav > li > a.active {
    color: var(--primary-blue);
    background: rgba(0, 119, 190, 0.05);
}

nav a::after {
    display: none;
}

.main-nav > li > a i.fa-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.main-nav > li.dropdown:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Standard Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--accent-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    padding: var(--spacing-sm) 0;
    border-radius: 8px;
    margin-top: 0.5rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem var(--spacing-sm);
    color: var(--text-dark);
    transition: background-color var(--transition-fast);
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-blue);
    padding-left: 1.5rem;
}

.dropdown-menu a::after {
    display: none;
}

/* ============================================
   MEGA MENU
   ============================================ */

.mega-menu {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    min-width: 700px;
    max-width: 900px;
    z-index: 1000;
}

.mega-menu:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.mega-dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr 300px;
    gap: 2rem;
    padding: 2rem;
}

.mega-column {
    display: block !important;
}

.mega-column h4 {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-column h4 i {
    font-size: 1.1rem;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block !important;
}

.mega-column ul li {
    margin-bottom: 0.5rem;
    display: block !important;
    width: 100%;
}

.mega-column ul li a {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: 100%;
}

.mega-column ul li a i {
    color: var(--secondary-green);
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
    text-align: center;
}

.mega-column ul li a span {
    flex: 1;
    white-space: nowrap;
}

.mega-column ul li a:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
    padding-left: 1rem;
}

.mega-column ul li a:hover i {
    color: var(--primary-blue);
}

/* Mega Menu CTA Column */
.mega-cta {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e3f2fd 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--primary-blue);
    display: block !important;
}

.mega-cta h4 {
    border-bottom-color: var(--primary-blue);
}

.mega-cta p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.mega-cta .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-cta .btn:last-child {
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE HEADER
   ============================================ */

@media (max-width: 1200px) {
    .mega-dropdown-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .mega-cta {
        grid-column: 1 / -1;
    }

    .mega-dropdown {
        min-width: 600px;
    }
}

@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav ul,
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 1.5rem 2rem;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
        gap: 0;
    }

    nav ul.active,
    .main-nav.active {
        right: 0;
    }

    nav ul li,
    .main-nav > li {
        width: 100%;
    }

    nav a,
    .main-nav > li > a {
        width: 100%;
        justify-content: space-between;
        padding: 1rem;
        border-bottom: 1px solid var(--bg-light);
        border-radius: 0;
    }

    .mega-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        min-width: auto;
        max-width: none;
        margin-top: 0;
        display: none;
    }

    .mega-menu.active .mega-dropdown {
        display: block;
    }

    .mega-dropdown-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
        background: var(--bg-light);
        border-radius: 4px;
    }

    .mega-column h4 {
        font-size: 0.95rem;
    }

    .mega-column ul li a {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
    }

    .mega-cta {
        padding: 1rem;
    }

    .nav-cta {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 2px solid var(--bg-light);
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--bg-light);
        margin-top: 0;
        padding: 0.5rem 0;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .top-bar-hours {
        display: none;
    }
}

@media (max-width: 968px) {
    nav ul.active::before,
    .main-nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 320px;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

@media (max-width: 640px) {
    .header-content {
        padding: 0.75rem 0;
    }

    .logo-image {
        max-height: 60px;
    }

    .logo-text .brand-name {
        font-size: 1.25rem;
    }

    .logo-text .tagline {
        font-size: 0.75rem;
    }

    .top-bar-content {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .top-bar-item span {
        display: none;
    }

    nav ul,
    .main-nav {
        width: 100%;
        max-width: 100vw;
    }
}

/* ============================================
   HEADER SCROLL EFFECT
   ============================================ */

header.scrolled .logo-image,
.main-header.scrolled .logo-image {
    max-height: 60px;
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */

nav a:focus-visible,
.main-nav a:focus-visible,
.mobile-menu-toggle:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    header,
    .main-header,
    .mega-dropdown,
    nav ul,
    .main-nav,
    .hamburger-icon span {
        transition: none;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--accent-white);
    padding: var(--spacing-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    color: var(--accent-white);
}

.hero .subtitle,
.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    opacity: 0.95;
    font-weight: 500;
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.8;
}

.hero .btn {
    margin: 0 var(--spacing-xs) var(--spacing-xs);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-buttons .btn {
    margin: 0;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.95rem;
    opacity: 0.95;
}

.hero-feature i {
    color: var(--secondary-green);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1.5;
}

.btn-primary {
    background-color: var(--secondary-green);
    color: var(--accent-white);
    border-color: var(--secondary-green);
}

.btn-primary:hover {
    background-color: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.4);
    color: var(--accent-white);
}

/*
 * .btn-secondary base: white text, white border (works on coloured backgrounds).
 * Inside .mega-cta it becomes green-filled (see override below).
 * Inside .cta-buttons it becomes white-filled with blue text (see override below).
 */
.btn-secondary {
    background-color: transparent;
    color: var(--accent-white);
    border-color: var(--accent-white);
}

.btn-secondary:hover {
    background-color: var(--accent-white);
    color: var(--primary-blue);
}

/* Mega-menu context: green filled button */
.mega-cta .btn-secondary {
    background-color: var(--secondary-green);
    color: white;
    border-color: var(--secondary-green);
}

.mega-cta .btn-secondary:hover {
    background-color: var(--secondary-green-dark);
    border-color: var(--secondary-green-dark);
    color: white;
}

/* CTA section context: white filled with blue text */
.cta-buttons .btn-secondary {
    background-color: white;
    color: var(--primary-blue);
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background-color: transparent;
    color: white;
}

/*
 * .btn-outline base: transparent bg, blue border/text.
 * Inside .mega-cta it becomes white bg (see override below).
 */
.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--accent-white);
}

/* Mega-menu context: white background outline button */
.mega-cta .btn-outline {
    background-color: white;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.mega-cta .btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
}

.btn-small {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==================== CARDS ==================== */
.card {
    background-color: var(--accent-white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.card-body {
    padding: 2.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-blue);
    text-align: center;
}

.card-text {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    flex: 1;
    text-align: center;
}

.card-footer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    margin-top: auto;
    text-align: center;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.card-icon i {
    font-size: 2rem;
    color: var(--accent-white);
}

.card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    text-align: center;
}

.card p {
    color: var(--text-gray);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
}

.card .btn {
    margin-top: 1.5rem;
}

/* ==================== GRID SYSTEM ==================== */
.grid {
    display: grid;
    gap: var(--spacing-lg);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.grid > * {
    height: 100%;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: var(--spacing-xl) 0;
    background-color: var(--accent-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.service-card {
    background-color: var(--accent-white);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
    flex-shrink: 0;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.service-card .btn {
    margin-top: auto;
}

/* ============================================
   AIRBNB / VACATION RENTAL CLEANING STYLES
   ============================================ */

/* Cleaning Checklist - 4 COLUMNS */
.cleaning-checklist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.checklist-column {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.checklist-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.checklist-column h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.checklist-column h3 i {
    font-size: 1.5rem;
}

.checklist-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-column ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--bg-gray);
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
}

.checklist-column ul li:last-child {
    border-bottom: none;
}

.checklist-column ul li:before {
    content: "\u2713";
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Add-on Services */
.addon-service {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.addon-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.addon-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.addon-icon i {
    font-size: 1.75rem;
    color: white;
}

.addon-service h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.addon-service p {
    color: var(--text-gray);
    line-height: 1.6;
}

.addon-price {
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 1rem;
    font-size: 1.05rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid var(--bg-gray);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.pricing-card.featured {
    border-color: var(--secondary-green);
    border-width: 3px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-green);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-green);
    margin: 1rem 0;
}

.pricing-card > p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li i {
    color: var(--secondary-green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-card .btn {
    margin-top: 1.5rem;
    width: 100%;
}

/* Host Discount Banner */
.host-discount {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.host-discount h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.host-discount h3 i {
    font-size: 2rem;
}

.host-discount p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/*
 * .benefit-number: used in two contexts.
 * - .benefit-item context: absolute positioned, blue-to-green gradient, 50px, 1.5rem font
 * - .benefit-card context (green cleaning): centred, green only, 50px, 1.5rem font
 * Base styles cover both; .benefit-item overrides position.
 */
.benefit-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.benefit-item .benefit-number {
    position: absolute;
    left: 1.5rem;
    top: 2rem;
    margin: 0;
}

.benefit-card .benefit-number {
    background: var(--secondary-green);
    margin: 0 auto 1rem;
}

.benefit-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.benefit-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/*
 * .step-number: unified definition.
 * Used in process steps (60px, 1.75rem) and booking steps (40px, 1.1rem).
 * Base = 60px; booking context overrides size.
 */
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-number.success {
    background: var(--secondary-green);
}

/* Booking step context: smaller number circle */
.booking-step .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin: 0;
    flex-shrink: 0;
    background: var(--primary-blue);
}

.booking-step .step-number.success {
    background: var(--secondary-green);
}

/*
 * .process-step-number: unified definition.
 * Used in upholstery process headers (50px, 1.3rem) and general process steps (60px, 1.5rem).
 * Base = 60px; header context overrides.
 */
.process-step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step-number.success {
    background: var(--secondary-green);
}

/* Process step header context: smaller */
.process-step-header .process-step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-right: 1rem;
    margin-bottom: 0;
}

.step h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section (page-level) */
.section.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: white;
    padding: 4rem 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* ==================== FEATURES SECTION ==================== */
.features {
    background-color: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--accent-white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    color: var(--accent-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ==================== CTA SECTION (GENERAL) ==================== */
.cta {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--secondary-green-dark) 100%);
    color: var(--accent-white);
    text-align: center;
    padding: var(--spacing-xxl) 0;
    margin: 0;
}

.cta h2 {
    color: var(--accent-white);
    margin-bottom: var(--spacing-md);
    font-size: 2.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== FORMS ==================== */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: border-color var(--transition-fast);
    font-family: var(--font-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 119, 190, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
    background-color: var(--bg-light);
    padding: var(--spacing-sm) 0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '\203a';
    color: var(--text-light);
    font-size: 1.2rem;
}

.breadcrumb-list a {
    color: var(--primary-blue);
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

/* ============================================
   TESTIMONIALS - UNIFIED STYLING
   ============================================ */

/* Static Grid */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Unified .testimonial-rating (was defined twice) */
.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    font-size: 1rem;
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
}

.testimonial-author strong {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   TESTIMONIAL SLIDER
   ============================================ */

.testimonial-slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-slider {
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
    cursor: grab;
}

.testimonial-track:active {
    cursor: grabbing;
}

/* Slider Cards */
.testimonial-slider .testimonial-card {
    min-width: calc(33.333% - 14px);
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover:not(:disabled) {
    background: #005a8c;
    transform: translateY(-50%) scale(1.08);
}

.slider-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.slider-btn-prev { left: 0; }
.slider-btn-next { right: 0; }

.slider-btn i {
    font-size: 1.2rem;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: #bbb;
}

.slider-dot.active {
    background: var(--primary-blue);
    width: 32px;
    border-radius: 6px;
}

/* ============================================
   RESPONSIVE TESTIMONIALS
   ============================================ */

@media (max-width: 1024px) {
    .testimonial-slider .testimonial-card {
        min-width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .testimonials {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonial-slider-wrapper {
        padding: 0 50px;
    }

    .testimonial-slider .testimonial-card {
        min-width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn i {
        font-size: 1rem;
    }

    .testimonials {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .testimonial-slider-wrapper {
        padding: 0 40px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .slider-btn-prev { left: -5px; }
    .slider-btn-next { right: -5px; }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-rating {
        font-size: 1rem;
    }

    .testimonial-card p {
        font-size: 0.95rem;
    }

    .testimonial-author strong {
        font-size: 1rem;
    }

    .testimonial-author span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .testimonial-slider-wrapper {
        padding: 0 35px;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
    }

    .slider-btn i {
        font-size: 0.9rem;
    }

    .slider-dots {
        gap: 8px;
        margin-top: 1.5rem;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 28px;
    }
}

/* ============================================
   PRINT STYLES (Testimonials)
   ============================================ */

@media print {
    .testimonial-slider-wrapper {
        padding: 0;
    }

    .slider-btn,
    .slider-dots {
        display: none;
    }

    .testimonial-track {
        display: block;
    }

    .testimonial-slider .testimonial-card {
        min-width: 100%;
        max-width: 100%;
        page-break-inside: avoid;
        margin-bottom: 1rem;
    }
}

/* ============================================
   ACCESSIBILITY - TESTIMONIALS
   ============================================ */

.slider-btn:focus-visible,
.slider-dot:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-track,
    .testimonial-card,
    .slider-btn {
        transition: none;
    }
}

@media (prefers-contrast: high) {
    .testimonial-card {
        border: 2px solid var(--text-dark);
    }

    .slider-btn {
        border: 2px solid white;
    }
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--text-dark) !important;
    background-color: #2c3e50 !important;
    color: white;
    padding: 0;
    margin-top: 4rem;
}

footer .container {
    background: transparent !important;
}

/* Service Locations Banner */
.footer-locations {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #005a8c 100%);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 3px solid var(--secondary-green);
}

.footer-locations h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.footer-locations h3 i {
    color: var(--secondary-green);
    font-size: 1.75rem;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.location-tag i {
    font-size: 0.9rem;
}

.location-tag:hover {
    background: var(--secondary-green);
    border-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.4);
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding: 3rem 0 2rem;
    background: transparent !important;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    max-width: 180px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    color: white !important;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-green);
    padding-bottom: 0.5rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section h4 i {
    font-size: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-section p i {
    margin-right: 5px;
}

/* Footer Section Base */
.footer-section {
    min-width: 0;
    display: block;
    background: transparent !important;
}

.footer-section-brand {
    grid-column: span 1;
    background: transparent !important;
}

.footer-section-links {
    grid-column: span 1;
    min-width: 0;
    display: block;
    background: transparent !important;
}

.footer-section-contact {
    grid-column: span 1;
    background: transparent !important;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
    background: transparent !important;
}

.footer-links li {
    margin-bottom: 0.5rem;
    display: block;
    width: 100%;
    background: transparent !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.25rem 0;
    word-wrap: break-word;
    background: transparent !important;
}

.footer-links a i {
    font-size: 0.85rem;
    width: 16px;
}

.footer-links a:hover {
    color: var(--secondary-green) !important;
    padding-left: 5px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    background: transparent !important;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-link:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
}

/* Contact Items */
.footer-address {
    font-style: normal;
    display: block;
    background: transparent !important;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    align-items: flex-start;
    background: transparent !important;
}

.footer-contact-item i {
    color: var(--secondary-green) !important;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item div {
    flex: 1;
    background: transparent !important;
}

.footer-contact-item strong {
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.footer-contact-item a:hover {
    color: var(--secondary-green) !important;
}

.after-hours {
    font-size: 0.9em;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent !important;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.trust-badge i {
    color: var(--secondary-green);
    font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    background: transparent !important;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.9rem;
    margin: 0;
}

.copyright i {
    margin-right: 5px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-legal-links a i {
    font-size: 0.85rem;
}

.footer-legal-links a:hover {
    color: var(--secondary-green) !important;
}

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.4);
}

.beta-indicator {
    color: #ffd700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-beta-badge {
    color: #ffd700;
    font-size: 0.9rem;
    margin-top: 15px;
}

.footer-beta-badge i {
    margin-right: 5px;
}

.footer-tagline {
    margin-top: 1rem;
}

.footer-tagline i {
    font-size: 0.8rem;
}

.footer-description i {
    color: var(--secondary-green);
}

/* Footer Credit */
.footer-credit {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-credit p {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.85rem;
    margin: 0;
}

.footer-credit a {
    color: var(--secondary-green) !important;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: white !important;
}

.footer-credit i {
    margin: 0 5px;
}

/* ============================================
   RESPONSIVE FOOTER
   ============================================ */

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .footer-locations h3 {
        font-size: 1.25rem;
    }

    .location-tags {
        gap: 0.75rem;
    }

    .location-tag {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .footer-section-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-logo-image {
        margin: 0 auto;
    }

    .footer-section-brand .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-locations {
        padding: 1.5rem 1rem;
    }

    .footer-locations h3 {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .location-tags {
        gap: 0.5rem;
    }

    .location-tag {
        padding: 0.35rem 0.85rem;
        font-size: 0.8rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem 0 1.5rem;
    }

    .footer-section-brand {
        grid-column: 1 / -1;
    }

    .footer-section-contact {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer-locations {
        padding: 1.25rem 0.75rem;
    }

    .footer-locations h3 {
        font-size: 1rem;
    }

    .location-tag {
        padding: 0.3rem 0.75rem;
        font-size: 0.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 0 1rem;
    }

    .footer-section {
        text-align: center;
        grid-column: 1;
    }

    .footer-section h4 {
        font-size: 1rem;
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links li {
        display: block;
        width: 100%;
    }

    .footer-links a {
        font-size: 0.85rem;
        display: flex;
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: left;
        font-size: 0.85rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .location-tags {
        gap: 0.4rem;
    }

    .location-tag {
        padding: 0.25rem 0.65rem;
        font-size: 0.7rem;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-legal-links .separator {
        display: none;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #0077BE;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 119, 190, 0.15);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: #0077BE;
    font-size: 0.9rem;
}

.faq-item p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0077BE 0%, #005a8c 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 119, 190, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.5);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.pt-1 { padding-top: var(--spacing-xs); }
.pt-2 { padding-top: var(--spacing-sm); }
.pt-3 { padding-top: var(--spacing-md); }
.pt-4 { padding-top: var(--spacing-lg); }
.pt-5 { padding-top: var(--spacing-xl); }

.pb-1 { padding-bottom: var(--spacing-xs); }
.pb-2 { padding-bottom: var(--spacing-sm); }
.pb-3 { padding-bottom: var(--spacing-md); }
.pb-4 { padding-bottom: var(--spacing-lg); }
.pb-5 { padding-bottom: var(--spacing-xl); }

.text-primary   { color: var(--primary-blue); }
.text-secondary { color: var(--secondary-green); }
.text-muted     { color: var(--text-light); }
.text-white     { color: var(--accent-white); }

.bg-primary   { background-color: var(--primary-blue); }
.bg-secondary { background-color: var(--secondary-green); }
.bg-light     { background-color: var(--bg-light); }
.bg-white     { background-color: var(--accent-white); }

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .top-bar,
    header,
    .mobile-menu-toggle,
    .cta,
    footer,
    .btn {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .section {
        page-break-inside: avoid;
        padding: 1rem 0;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}

/* ============================================
   BEFORE & AFTER GALLERY STYLES
   ============================================ */

.gallery-stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Before/After Comparison */
.before-after-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

.before-image,
.after-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.before-label,
.after-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.before-label { background: rgba(220, 53, 69, 0.9); }
.after-label  { background: rgba(40, 167, 69, 0.9); }

/* Placeholder Images */
.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    gap: 0.5rem;
}

.placeholder-image i {
    font-size: 3rem;
    opacity: 0.5;
}

.placeholder-image span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Gallery Info */
.gallery-info {
    padding: 1.5rem;
}

.gallery-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.gallery-info p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.gallery-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-gray);
}

.gallery-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.gallery-meta i {
    color: var(--secondary-green);
}

/* ============================================
   BOOKING PAGE STYLES
   ============================================ */

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.checkbox-label:hover {
    background-color: var(--bg-light);
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.95rem;
}

/* Booking Steps */
.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.booking-step .step-content h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.booking-step .step-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    font-size: 0.9rem;
}

.pricing-table tr {
    border-bottom: 1px solid var(--bg-gray);
}

.pricing-table tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 0.75rem 0;
}

.pricing-table td:first-child {
    color: var(--text-dark);
}

.pricing-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Form Messages */
.form-message {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
    font-size: 1.1rem;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

.form-message i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.form-message small {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
    opacity: 0.9;
}

/* ============================================
   CAREERS PAGE STYLES
   ============================================ */

.requirements-list {
    color: var(--text-light);
    line-height: 2;
    list-style: none;
    padding: 0;
}

.requirements-list li {
    padding: 0.25rem 0;
}

.no-experience-banner {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--accent-white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.no-experience-banner p {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.1rem;
}

/* Job Listings */
.job-listing {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.job-listing:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem;
    border-bottom: 1px solid var(--bg-gray);
}

.job-title-section h3 {
    color: var(--primary-blue);
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.95rem;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-meta i {
    color: var(--secondary-green);
}

.job-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.job-badge.hiring { background: var(--secondary-green); color: white; }
.job-badge.soon   { background: var(--primary-blue);    color: white; }

.job-content {
    padding: 2rem;
}

.job-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.job-content ul {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.job-content ul li {
    margin-bottom: 0.5rem;
}

.job-apply {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-gray);
}

/* Application Step Numbers */
.application-step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.application-step-number.success {
    background: var(--secondary-green);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    color: white;
}

.contact-icon-circle.phone   { background: var(--primary-blue); }
.contact-icon-circle.email   { background: var(--secondary-green); }
.contact-icon-circle.booking { background: var(--primary-blue); }

.contact-main-info {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 1rem 0;
}

.contact-main-info a {
    color: var(--primary-blue);
}

.contact-main-info a:hover {
    color: var(--primary-blue-dark);
}

.contact-form-section {
    background-color: var(--bg-light);
    padding-bottom: 8rem;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-card {
    margin-bottom: 0;
}

.contact-form-card .card-body {
    padding: 2rem;
}

/* Service Area List */
.service-area-list {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    column-count: 2;
    column-gap: 1rem;
    list-style: none !important;
    padding-left: 0 !important;
}

.service-area-list li {
    break-inside: avoid;
    padding-left: 0 !important;
    list-style: none !important;
}

.service-area-list li::before,
.service-area-list li::marker {
    content: none !important;
    display: none !important;
}

/* Contact Links List */
.contact-links-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.contact-links-list li {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 0.5rem;
}

.contact-links-list li:last-child {
    margin-bottom: 0;
}

.contact-links-list li::before,
.contact-links-list li::marker {
    content: none !important;
    display: none !important;
}

.contact-links-list a {
    display: inline-block;
    padding: 0.25rem 0;
}

/* Hours Table */
.hours-table {
    width: 100%;
    color: var(--text-light);
}

.hours-table tr {
    border-bottom: 1px solid var(--bg-gray);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 0.5rem 0;
}

.hours-table td:last-child {
    text-align: right;
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

.service-features {
    text-align: left;
    margin: 1rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 0.25rem 0;
    list-style: none;
}

.service-price {
    font-weight: 600;
    color: var(--primary-blue);
    margin: 1rem 0;
    font-size: 1.1rem;
}

/*
 * .comparison-list: unified (was defined in both services and deep cleaning).
 */
.comparison-list {
    color: var(--text-light);
    line-height: 1.8;
    list-style: none;
    padding-left: 0;
}

.comparison-list li {
    padding: 0.25rem 0;
    list-style: none;
}

/* ============================================
   OFFICE CLEANING PAGE STYLES
   ============================================ */

.pricing-highlight {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

.included-list {
    list-style: none;
    padding: 0;
}

.included-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-gray);
    display: flex;
    align-items: center;
}

.included-list li:last-child {
    border-bottom: none;
}

.included-list li i {
    color: var(--secondary-green);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.checklist {
    list-style: none;
    padding: 0;
    color: var(--text-light);
}

.checklist li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
}

.checklist li i {
    color: var(--secondary-green);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.industry-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: block;
}

/* ============================================
   SHORT-TERM RENTAL PAGE STYLES
   ============================================ */

.quick-turnaround-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.quick-turnaround-box h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.quick-turnaround-box h4 i {
    margin-right: 0.5rem;
}

.quick-turnaround-box p {
    margin: 0;
    color: var(--text-light);
}

.pricing-list {
    list-style: none;
    padding: 0;
}

.pricing-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.volume-discount-box {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
}

.volume-discount-box p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* ============================================
   UPHOLSTERY CLEANING PAGE STYLES
   ============================================ */

.fabric-safety-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.fabric-safety-box h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.fabric-safety-box h4 i {
    margin-right: 0.5rem;
}

.fabric-safety-box p {
    margin: 0;
    color: var(--text-light);
}

.process-step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.process-step-header h4 {
    margin: 0;
    color: var(--primary-blue);
}

.fabric-type-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: block;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1024px) {
    .cleaning-checklist {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-xxl: 4rem;
        --container-padding: 1.25rem;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .logo-image {
        max-height: 60px;
        max-width: 190px;
    }

    nav {
        display: none;
        width: 100%;
        order: 3;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: var(--spacing-sm) 0;
    }

    nav a {
        display: block;
        padding: var(--spacing-sm);
        border-bottom: 1px solid var(--bg-gray);
    }

    nav a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: var(--spacing-sm);
        margin-top: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: var(--spacing-xl) 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.25rem;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2rem;
        --spacing-xl: 2.5rem;
        --spacing-xxl: 3rem;
        --container-padding: 1rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .hero {
        padding: var(--spacing-lg) 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .hero .btn {
        margin: var(--spacing-xs) 0;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-3,
    .grid-4,
    .services-grid,
    .features-grid,
    .testimonials,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .cleaning-checklist {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-grid  { grid-template-columns: 1fr; }
    .process-steps  { grid-template-columns: 1fr; }

    .cta {
        padding: var(--spacing-lg) 0;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .logo-image {
        max-height: 50px;
        max-width: 160px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .card-body {
        padding: 2rem 1.5rem;
    }

    /* Booking */
    .booking-step {
        gap: 0.75rem;
    }

    .pricing-table {
        font-size: 0.85rem;
    }

    /* Contact */
    .service-area-list {
        column-count: 1;
    }

    .contact-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .contact-main-info {
        font-size: 1.1rem;
    }

    .contact-form-section {
        padding-bottom: 4rem;
    }

    .contact-form-card .card-body {
        padding: 1.5rem;
    }

    /* Careers */
    .job-header {
        flex-direction: column;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .job-badge {
        align-self: flex-start;
    }

    /* Services */
    .service-features {
        font-size: 0.85rem;
    }

    /* Office Cleaning */
    .included-list li { font-size: 0.9rem; }
    .checklist li     { font-size: 0.85rem; }
    .industry-icon    { font-size: 2rem; }

    /* Short-Term Rental */
    .quick-turnaround-box { padding: 1rem; }
    .pricing-list li      { font-size: 0.9rem; }

    .process-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Upholstery */
    .fabric-safety-box { padding: 1rem; }

    .process-step-header .process-step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .fabric-type-icon { font-size: 2rem; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filter-buttons { gap: 0.5rem; }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.875rem;
    }

    .stat-number { font-size: 2.5rem; }
    .stat-label  { font-size: 1rem; }
}

@media (min-width: 768px) {
    .testimonial-slider .testimonial-card {
        min-width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
    }
}

@media (min-width: 1024px) {
    .testimonial-slider .testimonial-card {
        min-width: calc(33.333% - 14px);
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-xxl: 2.5rem;
        --container-padding: 1rem;
    }

    .section {
        padding: var(--spacing-md) 0;
    }

    .hero {
        padding: var(--spacing-lg) 0;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .hero .btn {
        display: block;
        width: 100%;
        margin: var(--spacing-xs) 0;
    }

    .btn-block {
        width: 100%;
    }

    .pricing-card .price {
        font-size: 2rem;
    }

    .service-card,
    .testimonial-card,
    .pricing-card {
        padding: var(--spacing-md);
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .cta h2 {
        font-size: 1.75rem;
    }

    .benefit-item {
        padding-left: 2rem;
        padding-top: 5rem;
    }

    .benefit-item .benefit-number {
        left: 50%;
        transform: translateX(-50%);
        top: 1.5rem;
    }

    .host-discount h3 {
        font-size: 1.5rem;
        flex-direction: column;
    }

    .testimonial-slider-wrapper {
        padding: 0 40px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .card-body {
        padding: 1.5rem 1rem;
    }

    /* FAQ */
    .faq-item h3 {
        font-size: 1.1rem;
    }

    /* Contact */
    .contact-form-card .card-body {
        padding: 1rem;
    }

    .contact-form-section {
        padding-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .before-after-comparison {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   CARPET CLEANING PAGE STYLES
   ============================================ */

.equipment-info-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.equipment-info-box h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.equipment-info-box h4 i {
    margin-right: 0.5rem;
}

.equipment-info-box p {
    margin: 0;
    color: var(--text-light);
}

.minimum-charge-box {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
}

.minimum-charge-box p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .equipment-info-box {
        padding: 1rem;
    }
}

/* ============================================
   COVERAGE PAGE STYLES
   ============================================ */

.area-icon-wrapper {
    text-align: center;
    margin-bottom: 1rem;
}

.area-icon {
    font-size: 3rem;
    color: var(--primary-blue);
}

.area-title {
    text-align: center;
    color: var(--primary-blue);
}

.area-features {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 2;
}

.additional-area-icon {
    font-size: 2rem;
    color: var(--secondary-green);
    margin-bottom: 0.5rem;
}

.travel-fee-list {
    color: var(--text-light);
    line-height: 2;
}

.travel-fee-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.coverage-note-box {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.coverage-note-box p {
    color: var(--text-dark);
    margin: 0;
}

.table-responsive {
    overflow-x: auto;
}

.service-availability-table {
    width: 100%;
    border-collapse: collapse;
}

.service-availability-table thead tr {
    background: var(--bg-light);
    border-bottom: 2px solid var(--primary-blue);
}

.service-availability-table th {
    padding: 1rem;
    text-align: left;
}

.service-availability-table th:nth-child(2),
.service-availability-table th:nth-child(3) {
    text-align: center;
}

.service-availability-table tbody tr {
    border-bottom: 1px solid var(--bg-gray);
}

.service-availability-table td {
    padding: 1rem;
}

.table-check-icon {
    color: var(--secondary-green);
    font-size: 1.5rem;
}

.table-notes {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .area-icon            { font-size: 2.5rem; }
    .additional-area-icon { font-size: 1.75rem; }

    .service-availability-table {
        font-size: 0.9rem;
    }

    .service-availability-table th,
    .service-availability-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* ============================================
   DEEP CLEANING PAGE STYLES
   ============================================ */

.pro-tip-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.pro-tip-box h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.pro-tip-box h4 i {
    margin-right: 0.5rem;
}

.pro-tip-box p {
    margin: 0;
    color: var(--text-light);
}

.deep-cleaning-pricing-list {
    list-style: none;
    padding: 0;
}

.deep-cleaning-pricing-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-gray);
}

.deep-cleaning-pricing-list li:last-child {
    border-bottom: none;
}

.pricing-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-item-details {
    font-size: 0.85rem;
    color: var(--text-light);
}

.pricing-amount {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.first-time-special-box {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
}

.first-time-special-box p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.featured-comparison {
    border: 2px solid var(--secondary-green);
}

.recommendation-box {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--accent-white);
    border-radius: var(--border-radius);
}

.recommendation-box h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.recommendation-box p {
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pro-tip-box { padding: 1rem; }

    .pricing-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .pricing-amount { font-size: 1.1rem; }

    .recommendation-box { padding: 1rem; }
}

/* ============================================
   DOMESTIC/RECURRING CLEANING PAGE STYLES
   ============================================ */

.recurring-discount-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.recurring-discount-box h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.recurring-discount-box h4 i {
    margin-right: 0.5rem;
}

.recurring-discount-box p {
    margin: 0;
    color: var(--text-light);
}

.first-clean-note-box {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
}

.first-clean-note-box p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.rotating-tasks-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--accent-white);
    border-radius: var(--border-radius);
}

.rotating-tasks-note p {
    color: var(--text-dark);
    margin: 0;
}

.frequency-badge {
    font-size: 1.1rem;
    color: var(--secondary-green);
    margin-top: 0.5rem;
}

.frequency-description {
    text-align: center;
    color: var(--text-light);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .recurring-discount-box { padding: 1rem; }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ============================================
   EMERGENCY CLEANING PAGE STYLES
   ============================================ */

.emergency-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.emergency-scenario-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scenario-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.scenario-list {
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 1rem;
}

.pricing-badge {
    background: var(--secondary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.emergency-note-box {
    background: #fff3cd;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid #ffc107;
    margin-top: 2rem;
}

.emergency-note-box h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.emergency-note-box h3 i {
    margin-right: 0.5rem;
    color: #ffc107;
}

.emergency-note-box p {
    margin: 0;
    color: var(--text-dark);
}

.process-step-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

@media (max-width: 768px) {
    .emergency-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .scenario-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .emergency-scenario-card {
        padding: 1.5rem;
    }
}

/* ============================================
   END OF TENANCY CLEANING PAGE STYLES
   ============================================ */

.deposit-guarantee-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.deposit-guarantee-box h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.deposit-guarantee-box h4 i {
    margin-right: 0.5rem;
}

.deposit-guarantee-box p {
    margin: 0;
    color: var(--text-light);
}

.tenancy-pricing-list {
    list-style: none;
    padding: 0;
}

.tenancy-pricing-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-gray);
}

.tenancy-pricing-list li:last-child {
    border-bottom: none;
}

.tenancy-pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tenancy-pricing-details {
    font-size: 0.85rem;
    color: var(--text-light);
}

.tenancy-pricing-amount {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.all-inclusive-box {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
}

.all-inclusive-box p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .deposit-guarantee-box { padding: 1rem; }

    .tenancy-pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .tenancy-pricing-amount { font-size: 1.1rem; }
}

/* ============================================
   GREEN CLEANING PAGE STYLES
   ============================================ */

.green-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-green), #4caf50);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.green-product-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.green-product-icon {
    width: 60px;
    height: 60px;
    background: #e8f5e9;
    color: var(--secondary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.green-product-list {
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 1rem;
}

/* Benefit Card */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.green-club-box {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 2rem;
    border: 2px solid var(--secondary-green);
}

.green-club-box h3 {
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.green-club-box h3 i {
    margin-right: 0.5rem;
}

.green-club-box p {
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .green-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .green-product-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .benefit-card .benefit-number {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .green-club-box {
        padding: 1.5rem;
    }
}

/* ============================================
   LEGAL PAGES STYLES (Privacy Policy, Terms)
   ============================================ */

.legal-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    background: var(--accent-white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.legal-sidebar h3 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-blue);
}

.legal-toc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-toc li {
    margin-bottom: 0.5rem;
}

.legal-toc a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.legal-toc a:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
    padding-left: 1rem;
}

.legal-toc a.active {
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
}

.legal-content {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.legal-content h2 {
    color: var(--primary-blue);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-gray);
    font-size: 1.75rem;
    scroll-margin-top: 120px;
}

.legal-content h2:first-of-type {
    border-top: none;
    margin-top: 2rem;
}

.legal-content h3 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.legal-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ol li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--text-dark);
}

.legal-content a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-meta {
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-blue);
}

.legal-meta p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.legal-contact-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    border: 2px solid var(--primary-blue);
}

.legal-contact-box h3 {
    color: var(--primary-blue);
    margin-top: 0;
    margin-bottom: 1rem;
}

.legal-contact-box p {
    margin-bottom: 0.75rem;
}

@media (max-width: 968px) {
    .legal-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .legal-sidebar {
        position: static;
        order: -1;
    }

    .legal-content {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .legal-content h1 { font-size: 2rem; }
    .legal-content h2 { font-size: 1.5rem; }
    .legal-content h3 { font-size: 1.1rem; }
}

/* ============================================
   ADDITIONAL LEGAL PAGE STYLES
   ============================================ */

.legal-highlight-box {
    background: #e3f2fd;
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.legal-highlight-box h4 {
    color: var(--primary-blue);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.legal-highlight-box p {
    margin-bottom: 0.5rem;
}

.legal-highlight-box ul {
    margin: 0.5rem 0 0 1.5rem;
}

.legal-warning-box {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.legal-warning-box h4 {
    color: #ff9800;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.legal-warning-box ul {
    margin: 0.5rem 0 0 1.5rem;
}

.legal-success-box {
    background: #e8f5e9;
    border-left: 4px solid var(--secondary-green);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.legal-success-box h4 {
    color: var(--secondary-green);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

/* ============================================
   PAYMENT TERMS PAGE STYLES
   ============================================ */

.payment-method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.payment-method-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--bg-gray);
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 190, 0.1);
}

.payment-method-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.payment-method-card h4 {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

@media (max-width: 968px) {
    .payment-method-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ERROR PAGES - UNIFIED & COMPACT
   ============================================ */

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.error-page::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.error-container {
    max-width: 600px;
    width: 100%;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    z-index: 1;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(220, 38, 38, 0);
    }
}

.error-icon {
    font-size: 3rem;
    color: #dc2626;
}

.error-code {
    font-size: 5rem;
    font-weight: 900;
    color: #dc2626;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 4px 4px 0px rgba(220, 38, 38, 0.1);
    letter-spacing: -0.05em;
}

.error-title {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.error-message {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.error-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.status-box {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-left: 4px solid #dc2626;
    padding: 1.25rem;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 1.25rem;
}

.status-box h3 {
    color: #991b1b;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-box h3 i {
    color: #dc2626;
}

.status-box p {
    margin: 0;
    color: #7f1d1d;
    line-height: 1.6;
    font-size: 0.9rem;
}

.help-box {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.help-box h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.help-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.help-box li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.help-box i {
    color: var(--primary-blue);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.contact-section {
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-light);
}

.contact-section p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.contact-section strong {
    color: var(--text-dark);
}

.contact-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-green);
    transform: translateY(-2px);
}

.contact-link i {
    font-size: 1rem;
}

.error-reference {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.error-reference p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.error-code-display {
    display: inline-block;
    background: white;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #dc2626;
    margin-top: 0.5rem;
    border: 1px solid var(--bg-gray);
    font-size: 0.85rem;
}

.brand-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
}

.brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.brand-tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.dev-error-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    text-align: left;
}

.dev-error-box h4 {
    color: #856404;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.dev-error-box pre {
    background: white;
    padding: 0.75rem;
    border-radius: 4px;
    overflow-x: auto;
    font-size: 0.8rem;
    color: #721c24;
    margin: 0;
}

/* Search Box (404 page) */
.search-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.search-box h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--bg-gray);
    border-radius: 6px;
    font-size: 0.95rem;
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.search-form button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: #005a8c;
}

/* Popular Pages (404) */
.popular-pages {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.popular-pages h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.popular-pages ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.popular-pages li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.popular-pages li a:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.popular-pages li a i {
    color: var(--secondary-green);
    width: 18px;
    text-align: center;
}

.popular-pages li a:hover i {
    color: white;
}

/* ============================================
   RESPONSIVE ERROR PAGES
   ============================================ */

@media (max-width: 768px) {
    .error-page {
        padding: 1.5rem 1rem;
    }

    .error-container {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .error-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .error-icon {
        font-size: 2.5rem;
    }

    .error-code {
        font-size: 4rem;
    }

    .error-title {
        font-size: 1.5rem;
    }

    .error-message {
        font-size: 0.95rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .status-box,
    .help-box,
    .search-box,
    .popular-pages {
        padding: 1rem;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .error-page {
        padding: 1rem 0.75rem;
    }

    .error-container {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .error-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .error-icon {
        font-size: 2rem;
    }

    .error-code {
        font-size: 3.5rem;
    }

    .error-title {
        font-size: 1.25rem;
    }

    .error-message {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .error-actions .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

    .status-box h3,
    .help-box h3,
    .search-box h3,
    .popular-pages h3 {
        font-size: 0.95rem;
    }

    .status-box p,
    .help-box li,
    .popular-pages li a {
        font-size: 0.85rem;
    }

    .error-reference p,
    .error-code-display {
        font-size: 0.8rem;
    }

    .brand-name {
        font-size: 0.95rem;
    }

    .brand-tagline {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .error-container {
        padding: 1.25rem 0.75rem;
    }

    .error-code {
        font-size: 3rem;
    }

    .error-title {
        font-size: 1.1rem;
    }

    .error-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .error-icon {
        font-size: 1.75rem;
    }
}

/* ============================================
   ACCESSIBILITY - ERROR PAGES
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .error-page::before,
    .error-page::after,
    .error-icon-wrapper,
    .error-container {
        animation: none;
    }
}

@media (prefers-contrast: high) {
    .error-container {
        border: 2px solid var(--text-dark);
    }

    .status-box,
    .help-box,
    .search-box,
    .popular-pages {
        border: 1px solid var(--text-dark);
    }
}

/* ============================================
   SEARCH PAGE STYLES
   ============================================ */

.search-results-section {
    padding: 3rem 0;
}

.search-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-header h1 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.search-count {
    color: var(--text-light);
    font-size: 1rem;
}

.search-form-container {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.search-form-main {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper i.fa-search {
    position: absolute;
    left: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.search-input-main {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 3.5rem;
    border: none;
    font-size: 1rem;
    border-radius: 50px;
}

.search-input-main:focus {
    outline: none;
}

.search-clear {
    position: absolute;
    right: 1rem;
    background: var(--bg-light);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.search-clear:hover {
    background: var(--bg-gray);
    color: var(--text-dark);
}

.search-form-main .btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    white-space: nowrap;
}

.search-results {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.search-result-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-result-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.search-result-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.search-result-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.search-result-title a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-result-title a:hover {
    color: var(--secondary-green);
}

.search-result-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.search-result-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-result-link {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.search-result-link:hover {
    gap: 0.75rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.no-results-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-results-icon i {
    font-size: 3rem;
    color: var(--text-light);
}

.no-results h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.search-suggestions {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
}

.search-suggestions h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-suggestions li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-suggestions i {
    color: var(--secondary-green);
}

/* Popular Searches */
.popular-searches {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.popular-searches h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.popular-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.search-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-weight: 500;
}

.search-tag:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 190, 0.3);
}

.search-tag i {
    font-size: 1rem;
}

/* Browse Services - Search Page */
.browse-services {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.browse-services h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/*
 * .services-grid inside .browse-services uses a different column config
 * (minmax 200px) vs the global services section (minmax 280px).
 * Scoped override keeps both working without changing class names.
 */
.browse-services .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0;
}

.service-card-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card-small:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 119, 190, 0.3);
}

.service-card-small i {
    font-size: 2rem;
    color: var(--secondary-green);
    transition: color 0.3s ease;
}

.service-card-small:hover i {
    color: white;
}

.service-card-small span {
    font-weight: 600;
    text-align: center;
}

.service-card-all {
    background: var(--bg-light);
}

.service-card-all:hover {
    background: var(--secondary-green);
}

/* Search Help */
.search-help {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.search-help h3 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.search-help p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.search-help-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Search Page */
@media (max-width: 768px) {
    .search-header h1 {
        font-size: 1.5rem;
    }

    .search-form-main {
        flex-direction: column;
        border-radius: 12px;
    }

    .search-form-main .btn {
        width: 100%;
        justify-content: center;
    }

    .search-result-title {
        font-size: 1.25rem;
    }

    .browse-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-help-actions {
        flex-direction: column;
    }

    .search-help-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .search-results-section {
        padding: 2rem 0;
    }

    .search-result-item {
        padding: 1rem;
    }

    .browse-services .services-grid {
        grid-template-columns: 1fr;
    }

    .popular-search-tags {
        gap: 0.75rem;
    }

    .search-tag {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   LEAD MAGNET POPUP OVERRIDE
   ============================================ */

#lead-magnet-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 99999 !important;
}

#lead-magnet-overlay.active {
    display: flex !important;
    opacity: 1 !important;
}

#lead-magnet-popup {
    position: relative !important;
    z-index: 100000 !important;
}