/* Blue North Services - Main Stylesheet */

:root {
    /* Modern Professional Palette */
    --primary-color: #0056b3;
    /* Deep trusted blue */
    --primary-hover: #004494;
    --accent-color: #0abde3;
    /* Vibrant cyan for highlights */
    --text-color: #2d3436;
    /* Softer black */
    --text-light: #636e72;
    /* Muted text */
    --heading-color: #1e272e;
    /* Dark blue-grey for headings */

    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f5f6fa;
    /* Very light cool grey */
    --bg-dark: #2c3e50;
    /* Dark slate */

    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* UI Elements */
    --radius: 12px;
    /* Softer rounded corners */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --light-gray: #f0f0f0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.grid {
    display: grid;
    gap: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.4);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.btn-outline-white {
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
}

.btn-outline-white:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Softer, deeper shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-bar {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--white);
    font-weight: 600;
}

.top-bar a:hover {
    color: var(--accent-color);
}

/* Mobile Top Bar Tweak */
@media (max-width: 768px) {
    .top-bar .container {
        justify-content: center;
    }

    .top-bar span:first-child {
        display: none;
    }

    .top-bar a {
        font-size: 1rem;
        font-weight: 700;
    }
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    /* Wider padding for professional look */
    max-width: 1400px;
    /* Allow more width */
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    /* Bolder for readability */
    color: #333;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

/* Nav Hover Effect */
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    /* Hidden on desktop */
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--heading-color);
    z-index: 1100;
    position: relative;
}

/* Nav Button Professional Style */
.nav-links .btn {
    background: linear-gradient(135deg, #0056b3 0%, #004494 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
    background: linear-gradient(135deg, #004494 0%, #003366 100%);
}

/* Mobile Menu - Slide from Left */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        /* Show on mobile */
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        /* Hidden off-screen left */
        width: 280px;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 40px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        gap: 0;
    }

    .nav-links.active {
        left: 0;
        /* Slide in */
    }

    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--light-gray);
        text-transform: none;
        /* Less aggressive on mobile */
    }

    .nav-links a.btn {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    /* Overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

/* Hero Section - Card Marquee Style */
.hero-overlay {
    position: relative;
    padding: 35px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Blurred Background */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: 1;
}

/* Dark Overlay */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.4);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px;
}

/* Hero Card - Left Side (approx 60%) */
.hero-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: left;
    flex: 0 0 58%;
    /* 60%ish with gap */
    max-width: none;
}

.top-tagline {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-card h1 {
    color: #003366;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-blue {
    color: #0c61ca;
}

.hero-description {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* Benefits List - Dark Text */
.hero-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--heading-color);
}

.hero-benefits li i {
    color: #fff;
    background-color: #0c61ca;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 14px 28px;
    font-size: 1rem;
}

.hero-actions .btn-primary {
    background-color: #E74C3C;
    color: #fff;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.hero-actions .btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

/* Pulse Icon Button */
.btn-icon-round {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #0c61ca;
    /* Cyan */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    border: none;
    animation: pulse-cyan 2s infinite;
    cursor: pointer;
}

.btn-icon-round:hover {
    background-color: #00b894;
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse-cyan {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 206, 201, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 206, 201, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 206, 201, 0);
    }
}

/* Review Marquee (Right Side - approx 40%) */
.hero-reviews-wrapper {
    flex: 0 0 38%;
    /* 40%ish with gap */
    height: 500px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.marquee-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scrollUp 25s linear infinite;
}

.marquee-column:hover {
    animation-play-state: paused;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-initial {
    width: 40px;
    height: 40px;
    background-color: #0c61ca;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.reviewer-info strong {
    display: block;
    font-size: 0.95rem;
    color: #003366;
    line-height: 1.2;
}

.stars-small {
    color: #F4B400;
    font-size: 0.75rem;
}

.quote-icon {
    margin-left: auto;
    color: #e5e7eb;
    font-size: 1.2rem;
}

.review-card p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
    font-style: italic;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Google Rating */
.google-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.google-logo {
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: -1px;
}

.g-blue {
    color: #4285F4;
}

.g-red {
    color: #DB4437;
}

.g-yellow {
    color: #F4B400;
}

.g-green {
    color: #0F9D58;
}

.google-rating .stars {
    color: #F4B400;
    font-size: 1.1rem;
    margin-right: 15px;
    display: flex;
    gap: 2px;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--heading-color);
    line-height: 1.3;
}

.rating-text strong {
    font-size: 1.2rem;
    color: #003366;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-container {
        justify-content: center;
        flex-direction: column;
        gap: 30px;
    }

    .hero-card {
        text-align: center;
        padding: 30px 20px;
        order: 1;
        width: 100%;
        flex: auto;
    }

    .hero-card h1 {
        font-size: 1.8rem;
    }

    .top-tagline {
        font-size: 0.8rem;
    }

    /* Show Marquee on Mobile */
    .hero-reviews-wrapper {
        display: block;
        order: 2;
        width: 100%;
        flex: auto;
        height: 400px;
        /* Slightly shorter on mobile */
    }

    .hero-benefits {
        display: inline-block;
        text-align: left;
        margin-top: 15px;
        width: 100%;
    }

    .hero-benefits li {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        margin-left: 0;
        padding-left: 0;
        margin-bottom: 8px;
        font-size: 11px;
        /* Requested 11px */
        line-height: 1.4;
    }

    .hero-benefits li i {
        font-size: 11px;
        /* Requested 11px */
        margin-top: 3px;
        margin-right: 8px;
        width: 16px;
        /* Fixed width for alignment */
        height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .hero-benefits li span {
        font-size: 11px;
        /* Ensure text matches */
    }

    .hero-actions {
        justify-content: center;
        gap: 15px;
    }

    .google-rating {
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex-wrap: nowrap;
        /* Force single line */
        padding-top: 15px;
    }

    .stars {
        justify-content: center;
        margin-right: 0 !important;
        font-size: 0.9rem;
        /* Smaller stars on mobile */
    }

    .rating-text {
        text-align: left;
        font-size: 0.8rem;
        line-height: 1.2;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 45px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 30px;
    border-radius: 50px;
    display: inline-flex;
    backdrop-filter: blur(5px);
}

.hero-trust-indicators span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Intro Section */
.intro-section {
    background-color: var(--bg-white);
    padding-top: 100px;
}

.intro-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.section-lead {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Services Section */
.services-section {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.eyebrow-text {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
}

.section-heading {
    font-size: 2.5rem;
    color: var(--heading-color);
}

.divider {
    height: 4px;
    width: 70px;
    background: var(--primary-color);
    margin: 25px auto 0;
    border-radius: 2px;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Better for small screens */
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-image-wrapper {

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-icon {
    font-size: 4rem;
    transition: transform 0.5s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.icon-cleaning i {
    color: #0c61ca;
}

.icon-repair i {
    color: #ff7675;
}

.icon-landscaping i {
    color: #00b894;
}

.card-body {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-body p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-list {
    margin: 20px 0;
    padding-left: 0;
    flex: 1;
}

.service-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--text-color);
    font-size: 0.95rem;
}

.service-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.link-arrow {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.link-arrow:hover {
    gap: 10px;
    color: var(--primary-hover);
}

/* Features Section (Why Choose Us) - Dark Theme */
.features-section.bg-dark {
    background-color: var(--bg-dark);
    color: var(--bg-white);
}

.split-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

@media (max-width: 992px) {
    .split-grid {
        grid-template-columns: 1fr;
    }
}

.features-text h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-row {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.feature-icon {
    font-size: 2.5rem;
    min-width: 60px;
    color: var(--accent-color);
}

.features-text h4 {
    color: var(--bg-white);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.small-text {
    color: rgba(255, 255, 255, 0.7);
}

/* Coverage Area */
.coverage-section {
    background-color: var(--light-gray);
    text-align: center;
}

.coverage-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.coverage-badge {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    color: var(--primary-color);
}

/* Testimonials - Redesign */
.testimonials-section {
    background-color: var(--bg-light);
    text-align: center;
}

.testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: left;
    border: none;
    position: relative;
    margin-top: 20px;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.stars {
    color: #fdcb6e;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.client-name {
    font-weight: 700;
    color: var(--heading-color);
    border-top: 1px solid #e5e7eb;
    padding-top: 15px;
}

/* Service Area Bar */
.service-area-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 0;
    text-align: center;
    font-size: 0.95rem;
}

/* CTA Banner Redesign */
.cta-banner.primary-bg {
    background-color: var(--bg-dark);
    /* Or keep primary, user chose primary-bg class but context implies call to action */
    background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
    color: var(--white);
    padding: 80px 0;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.btn-outline-white {
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
}

.btn-outline-white:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-white);
}

.accordion {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: 1px solid var(--light-gray);
    box-shadow: none;
    margin-bottom: 10px;
}

.accordion-header {
    background: var(--bg-light);
    padding: 25px;
    font-weight: 700;
    color: var(--heading-color);
}

.accordion-header.active {
    background: var(--bg-white);
    color: var(--primary-color);
    border-bottom: 1px solid var(--light-gray);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.accordion-header.active::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-content p {
    padding-bottom: 20px;
    color: #4b5563;
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    opacity: 0.6;
    align-items: center;
}

.brand-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9ca3af;
}

/* Process Steps */
.process-section {
    background-color: var(--bg-white);
}

.process-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    position: relative;
}

/* Connecting Line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--light-gray);
    z-index: 0;
    display: block;
}

@media(max-width: 768px) {
    .process-grid::before {
        display: none;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        /* Add gap between steps on mobile */
    }
}

.process-step {
    position: relative;
    z-index: 1;
    background: var(--bg-white);
    margin: 0 10px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 0 0 10px var(--bg-white);
    /* Fake border for spacing */
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #1e272e;
    color: #b2bec3;
    padding: 80px 0 30px;
}

.footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--bg-white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    display: block;
    padding: 8px 0;
    transition: transform 0.3s, color 0.3s;
}

.footer-links li a:hover {
    transform: translateX(5px);
    color: var(--accent-color);
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-section {
        clip-path: none;
        padding-bottom: 80px;
        margin-bottom: 0;
    }

    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* Page Header (Internal Pages) */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--bg-white);
}

.page-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    transition: transform 0.3s;
}

.floating-cta:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    opacity: 0.8;
}

.trust-badge-item {
    font-weight: 600;
    color: #555;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 50px;
}

/* =========================================
   Professional Intro Section Styling
   ========================================= */
.intro-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.section-heading {
    font-size: 2.4rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-subtext {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 40px;
}

.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    font-weight: 600;
    color: #2d3436;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    padding: 12px 25px;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.trust-item i {
    color: #0c61ca;
    /* Primary Blue */
    font-size: 1.2rem;
}

.trust-item:hover {
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: #0c61ca;
}

/* =========================================
   Professional Services Section Styling
   ========================================= */
.services-section {
    background-color: #f4f6f8;
    /* Light gray professional background */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 25px 15px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-card {
    background: #fff;
    padding: 45px 40px;
    border-radius: 24px;
    /* More rounded, modern */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    /* Softer, deeper shadow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0c61ca, #00d2d3);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

.card-image-wrapper {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    /* Center the icon */
}

.service-icon {
    width: auto;
    height: auto;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    /* Larger professional size */
    background: none !important;
    /* Remove background */
    box-shadow: none;
    margin-bottom: 0;
}

/* Specific Service Gradients - Applied to Icon Text */
.icon-cleaning i {
    background: linear-gradient(135deg, #1a71dd 0%, #354a71 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-repair i {
    background: linear-gradient(135deg, #d63031 0%, #ff7675 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-interlock i {
    background: linear-gradient(135deg, #00b894 0%, #55efc4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3436;
}

.service-card p {
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    width: 100%;
}

.service-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f2f6;
    color: #636e72;
    font-size: 1rem;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
}

.service-card ul li:last-child {
    border-bottom: none;
}

.service-card ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 12px;
    color: #0c61ca;
    /* Primary Blue */
    font-size: 0.9em;
}

.service-card .btn-secondary {
    margin-top: auto;
    /* Push to bottom */
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: 50px;
    font-weight: 700;
    background: #0c61ca;
    /* Solid Primary Blue */
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(12, 97, 202, 0.3);
}

.service-card .btn-secondary:hover {
    background: #0a4fbd;
    /* Darker blue on hover */
    box-shadow: 0 8px 25px rgba(12, 97, 202, 0.5);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 1.8rem;
    }

    .hero-trust-indicators {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Why Choose Us - Minimal & Data Driven
   ========================================= */
.why-us-section {
    background-color: #fff;
    padding: 80px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    background-color: #f6f6f6;
}

.why-feature-card:hover {
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.5rem;
    color: #0c61ca;
    margin-bottom: 20px;
    height: 60px;
    width: 60px;
    background: rgba(12, 97, 202, 0.05);
    /* Very subtle badge */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.why-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 15px;
}

.why-feature-card p {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-feature-card p strong {
    color: #2d3436;
    display: block;
    margin-bottom: 5px;
}

/* =========================================
   Marquee / Sliding Text Section
   ========================================= */
.sliding-text-section {
    background-color: #00479a;
    /* Dark professional background */
    padding: 15px 0;
    overflow: hidden;
    color: #fff;
}

.sliding-text-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 0;
    /* Continuous flow */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.sliding-text-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    gap: 60px;
    /* Spacing between items */
    min-width: 100%;
    width: max-content;
    animation: scroll 40s linear infinite;
}

/* Pause animation on hover */
.sliding-text-wrapper:hover .sliding-text-content {
    animation-play-state: paused;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
        /* Move by 50% since we have 2 sets */
    }
}

.marquee-text-item {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-right: 0;
    line-height: 1;
}

.marquee-icon {
    font-size: 1.2rem;
    filter: grayscale(100%) brightness(200%);
    /* Make icons white/bright */
}

/* =========================================
   Work Process Section
   ========================================= */
.process-section {
    background: linear-gradient(180deg, #fff 0%, #f3f3f3 100%);
    /* Subtle green/fresh fade to match ref */
    padding: 100px 0;
}

.process-subtitle {
    color: #00479a;
    /* Fresh Green */
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-bottom: 2px solid #00479a;
    display: inline-block;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    transition: transform 0.3s ease;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 15px 30px rgba(46, 204, 113, 0.1);
}

.process-icon-wrapper {
    margin-bottom: 25px;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 2px solid #bcead5;
    /* Soft Green Border */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00479a;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.1);
}

.process-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 15px;
}

.process-card p {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   Service Areas (Map) Section
   ========================================= */
.coverage-section {
    background-color: #f9f9f9;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.coverage-content {
    /* Left side content */
}

.coverage-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.coverage-item {
    background: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    color: #2c3e50;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.coverage-item:hover {
    transform: translateX(5px);
    border-color: #3498db;
    color: #3498db;
}

.coverage-item i {
    color: #e74c3c;
    /* Red map marker */
}

.coverage-map {
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
}

.link-primary {
    color: #3498db;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.link-primary:hover {
    border-bottom-color: #3498db;
}

@media (max-width: 991px) {
    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .coverage-map {
        height: 300px;
        order: -1;
        /* Show map first on mobile? or keep last. Let's keep last for context */
    }
}

/* =========================================
   New Footer Styles
   ========================================= */
footer {
    background-color: #001f3f;
    /* Deep Navy Blue */
    color: #fff;
    padding: 0;
    margin-top: 0;
    font-family: 'Open Sans', sans-serif;
}

/* Footer CTA Section */
.footer-cta {
    background-color: #003366;
    /* Slightly lighter blue for contrast */
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.footer-cta p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
}

.footer-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-footer-cta {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-footer-primary {
    background-color: #fff;
    color: #001f3f;
}

.btn-footer-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-footer-secondary {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-footer-secondary:hover {
    background-color: #fff;
    color: #001f3f;
    transform: translateY(-2px);
}

/* Main Footer Content */
.footer-main {
    padding: 80px 0 40px;
    background-color: #001f3f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Brand Column */
.footer-brand p {
    color: #aab7c4;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #f6f6f6;
    transform: translateY(-3px);
}

/* Links Columns */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aab7c4;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #f6f6f6;
    padding-left: 5px;
}

.footer-links a::before {
    content: "›";
    font-weight: bold;
    color: #ffffff;
}

/* Contact Column */
.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #aab7c4;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-icon {
    color: #ffffff;
    font-size: 1.1rem;
    margin-top: 3px;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 40px;
    text-align: center;
    color: #667c91;
    font-size: 0.85rem;
}

.footer-bottom strong {
    color: #f6f6f6;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta-buttons {
        flex-direction: column;
    }
}

/* =========================================
   Cleaning Page Specific Styles (Global)
   ========================================= */

/* Cleaning Services Grid */
.cleaning-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.cleaning-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #001f3f;
}

.cleaning-intro-image img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Cleaning Reviews Marquee (Horizontal) */
.reviews-ticker-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    overflow: hidden;
}

.reviews-ticker-wrapper {
    display: flex;
    width: 100%;
}

.reviews-ticker-content {
    display: flex;
    gap: 30px;
    animation: scroll-left 40s linear infinite;
    width: max-content;
}

.review-ticker-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.review-ticker-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: #00479a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.review-stars {
    color: #f1c40f;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Moved keyframes to global scope */

/* FAQ Accordion */
/* Modern FAQ Card Styles */
.faq-section {
    background-color: #f8fbfd;
    /* Light Corporate Blue Bg */
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Spacing between cards */
}

.faq-item {
    background: #fff;
    /* White Card */
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    /* For border-radius */
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 20px rgba(0, 31, 63, 0.08);
    /* Corporate Shadow */
    transform: translateY(-2px);
    border-color: #cbd6e2;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: 24px 30px;
    /* More breathing room */
    font-size: 1.15rem;
    font-weight: 700;
    color: #001f3f;
    /* Deep Navy */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: #00479a;
    /* Bright Blue */
    background-color: #fcfcfc;
}

.faq-question.active {
    color: #00479a;
    background-color: #f0f8ff;
    /* Active State Bg */
    border-bottom: 1px solid #eef2f7;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #00479a;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 71, 154, 0.1);
}

.faq-question.active::after {
    transform: rotate(45deg);
    background: #00479a;
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    /* Matches header padding */
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

@media (max-width: 991px) {
    .cleaning-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cleaning-intro-content {
        text-align: center;
        order: 2;
    }

    .cleaning-intro-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .section-heading {
        font-size: 2rem;
    }
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-item i {
    color: #2ecc71;
    font-size: 1.2rem;
}

.benefit-item span {
    font-weight: 600;
    color: #333;
}

/* Image Frame Utility */
.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Page Header Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 50px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}


/* =========================================
   Corporate Level Card Upgrades
   ========================================= */

/* Section Headings */
.section-heading {
    color: #001f3f;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.section-subtext {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Why Choose Us Cards */
.why-us-section {
    background-color: #fff;
}

.why-feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.why-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.1);
    border-color: transparent;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: #f0f8ff;
    color: #00479a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.why-feature-card:hover .why-icon {
    background: #00479a;
    color: #fff;
    transform: scale(1.1);
}

.why-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Modern Service Cards */
.services-section {
    background-color: #f8fbfd !important;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 50px 40px;
    /* Increased padding */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f4f8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 31, 63, 0.08);
    border-color: transparent;
}

.card-image-wrapper {
    margin-bottom: 25px;
    width: 100%;
}

.service-icon.icon-cleaning {
    width: auto;
    height: auto;
    background: transparent;
    /* Removed background */
    box-shadow: none;
    /* Removed shadow */
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #00479a;
    /* Corporate Blue */
    font-size: 3rem;
    /* Larger icon */
    margin-bottom: 20px;
    padding: 0;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #001f3f;
    margin-bottom: 25px;
    /* Increased spacing */
    letter-spacing: -0.5px;
}

.service-card p {
    color: #5d6d7e;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    margin-top: auto;
    /* Push to bottom if content varies */
}

/* Cleaning Reviews Marquee (Horizontal Fix) */
.reviews-ticker-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    overflow: hidden;
    white-space: nowrap;
    /* Prevent wrapping */
    position: relative;
}

.reviews-ticker-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.reviews-ticker-content {
    display: flex;
    gap: 40px;
    /* Space between cards */
    animation: scroll-left 40s linear infinite;
    width: max-content;
    /* Ensure container fits all cards */
    padding-left: 0;
}

.review-ticker-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    min-width: 400px;
    /* Fixed width */
    max-width: 400px;
    flex-shrink: 0;
    /* Prevent shrinking */
    border: 1px solid #eef2f7;
    white-space: normal;
    /* Allow text to wrap inside card */
    display: flex;
    flex-direction: column;
}

.review-ticker-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    background: #00479a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
}

/* Global Cleaning Grid Heading Fix */
.cleaning-intro-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #001f3f;
}

/* Global Keyframes for Marquee */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Adjust based on content width */
    }
}

/* Process Section Tweaks */
.process-grid {
    gap: 30px;
}

.process-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid transparent;
}

.process-card:hover {
    border-top-color: #00479a;
    transform: translateY(-5px);
}

.process-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f4f6f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-card:hover .process-icon-wrapper {
    background: #e6f0fa;
}

.process-icon {
    color: #00479a;
    font-size: 1.8rem;
}

/* Contact Page Styles */
.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: #e6f0fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.hours-box {
    display: inline-block;
    background: #fff;
    padding: 30px 50px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    width: 100%;
    max-width: 500px;
}

@media (max-width: 576px) {
    .contact-card {
        padding: 30px 20px;
    }

    .hours-box {
        padding: 20px;
    }

    .hours-box li {
        min-width: unset !important;
        flex-direction: column;
        gap: 5px;
        text-align: center;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

    .hours-box li:last-child {
        border-bottom: none;
    }
}