.business-name {
    color: #fff !important;
}
/* Contact styling for service pages */
.cleaning-page .contact-section,
.landscaping-page .contact-section,
.cleaning-offices-page .contact-section {
    background: linear-gradient(135deg, #222 0%, #333 100%);
    color: #fff;
}
.cleaning-page .contact-section h2,
.landscaping-page .contact-section h2,
.cleaning-offices-page .contact-section h2 {
    color: #fff;
}
.cleaning-page .contact-label,
.landscaping-page .contact-label,
.cleaning-offices-page .contact-label {
    color: #1e88e5;
}
.cleaning-page .contact-info,
.landscaping-page .contact-info,
.cleaning-offices-page .contact-info {
    background: rgba(30, 136, 229, 0.08);
    border-left: 5px solid #1e88e5;
    color: #fff;
}
.cleaning-page .phone-number,
.landscaping-page .phone-number,
.cleaning-offices-page .phone-number {
    background: #1e88e5;
    color: #fff !important;
    font-weight: bold;
}
.cleaning-page .contact-form input,
.landscaping-page .contact-form input,
.cleaning-offices-page .contact-form input,
.cleaning-page .contact-form textarea,
.landscaping-page .contact-form textarea,
.cleaning-offices-page .contact-form textarea {
    border: 2px solid #1e88e5;
    color: #1e88e5;
    background: #182848;
}
.cleaning-page .contact-form input::placeholder,
.landscaping-page .contact-form input::placeholder,
.cleaning-offices-page .contact-form input::placeholder,
.cleaning-page .contact-form textarea::placeholder,
.landscaping-page .contact-form textarea::placeholder,
.cleaning-offices-page .contact-form textarea::placeholder {
    color: #1e88e5;
    opacity: 0.7;
}
.cleaning-page .contact-form input:focus,
.landscaping-page .contact-form input:focus,
.cleaning-offices-page .contact-form input:focus,
.cleaning-page .contact-form textarea:focus,
.landscaping-page .contact-form textarea:focus,
.cleaning-offices-page .contact-form textarea:focus {
    outline: none;
    background-color: #223366;
    border-color: #1e88e5;
    color: #fff;
}
.cleaning-page .submit-btn,
.landscaping-page .submit-btn,
.cleaning-offices-page .submit-btn {
    background: #1e88e5;
    color: #fff;
    border: 2px solid #1e88e5;
}
.cleaning-page .submit-btn:hover,
.landscaping-page .submit-btn:hover,
.cleaning-offices-page .submit-btn:hover {
    background: #1565c0;
    color: #fff;
    box-shadow: 0 4px 8px rgba(30, 136, 229, 0.3);
}
/* Blue accent overrides for service pages */
.cleaning-page .header,
.landscaping-page .header,
.cleaning-offices-page .header {
    color: #fff;
}
.cleaning-page .logo-section .tagline,
.landscaping-page .logo-section .tagline,
.cleaning-offices-page .logo-section .tagline {
    color: #1e88e5;
}
.cleaning-page .nav a,
.landscaping-page .nav a,
.cleaning-offices-page .nav a {
    color: #1e88e5;
}
.cleaning-page .nav a:hover,
.landscaping-page .nav a:hover,
.cleaning-offices-page .nav a:hover {
    border-bottom-color: #1e88e5;
}
.cleaning-page .hero,
.landscaping-page .hero,
.cleaning-offices-page .hero {
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
    color: #fff;
}
.cleaning-page .cta-button,
.landscaping-page .cta-button,
.cleaning-offices-page .cta-button {
    background-color: #1e88e5;
    color: #fff;
    border: 2px solid #1e88e5;
}
.cleaning-page .cta-button:hover,
.landscaping-page .cta-button:hover,
.cleaning-offices-page .cta-button:hover {
    background-color: #1565c0;
    color: #fff;
    border-color: #1565c0;
}
.cleaning-page .carousel-btn,
.landscaping-page .carousel-btn,
.cleaning-offices-page .carousel-btn {
    color: #1e88e5;
}
/* Carousel button style: simple arrow, no background */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #222;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 2em;
    padding: 0 10px;
    cursor: pointer;
    z-index: 2;
    user-select: none;
}

.carousel-btn.left {
    left: 10px;
}

.carousel-btn.right {
    right: 10px;
}

/* Ensure all carousel images are the same size */
.carousel img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #e0e0e0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Account for sticky header when scrolling to anchors */
section[id],
header[id] {
    scroll-margin-top: 120px;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 5vw, 20px);
}

/* Header */
.header {
    background: linear-gradient(135deg, #222 0%, #333 100%);
    color: #FFD700;
    padding: clamp(15px, 4vw, 20px) 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(15px, 4vw, 30px);
}

.logo-section h1 {
    font-size: clamp(1.5em, 5vw, 2em);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.logo-section .tagline {
    font-size: clamp(0.75em, 2vw, 0.9em);
    color: #1e88e5;
    opacity: 0.9;
}

/* Navigation */
.nav ul {
    list-style: none;
    display: flex;
    gap: clamp(12px, 4vw, 30px);
    flex-wrap: wrap;
    justify-content: center;
}

.nav a {
    color: #1e88e5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding: 8px clamp(8px, 2vw, 15px);
    font-size: clamp(0.85em, 2vw, 1em);
    display: flex;
    align-items: center;
    min-height: 44px;
}

.nav a:hover {
    color: #fff;
    border-bottom-color: #1e88e5;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
    color: #fff;
    padding: clamp(60px, 15vw, 100px) clamp(15px, 5vw, 20px);
    text-align: center;
}

.hero h2 {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: clamp(15px, 4vw, 20px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: clamp(1em, 2.5vw, 1.2em);
    margin-bottom: clamp(20px, 5vw, 30px);
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1e88e5;
    color: #fff;
    padding: clamp(12px, 3vw, 15px) clamp(30px, 6vw, 40px);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #1e88e5;
    font-size: clamp(0.9em, 2vw, 1em);
    touch-action: manipulation;
    min-height: 44px;
}

.cta-button:hover,
.cta-button:focus {
    background-color: #1565c0;
    color: #fff;
    border-color: #1565c0;
}

/* Services Section */
.services {
    padding: clamp(50px, 12vw, 80px) clamp(15px, 5vw, 20px);
    background-color: #f9f9f9;
}

.services .container h2 {
    text-align: center;
    font-size: clamp(1.5em, 5vw, 2em);
    margin-bottom: clamp(30px, 8vw, 50px);
    color: #222;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 5vw, 30px);
    margin-bottom: clamp(30px, 8vw, 50px);
}

.service-card {
    background: white;
    padding: clamp(20px, 5vw, 30px);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(30, 136, 229, 0.3);
}

.service-icon {
    font-size: clamp(2.5em, 8vw, 3em);
    margin-bottom: clamp(10px, 3vw, 15px);
}

.service-card h3 {
    color: #1e88e5;
    font-size: clamp(1.2em, 4vw, 1.5em);
    margin-bottom: clamp(10px, 3vw, 15px);
    text-transform: uppercase;
}

.service-card p {
    color: #555;
    margin-bottom: clamp(15px, 4vw, 20px);
    font-size: clamp(0.9em, 2vw, 0.95em);
}

.service-details ul {
    list-style: none;
    text-align: left;
    color: #555;
}

.service-details li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}


/* Default: blue checkmark */
.service-details li:before {
    content: "✓ ";
    color: #1e88e5;
    font-weight: bold;
    margin-right: 10px;
}

/* Blue checkmark for cleaning pages */
.cleaning-page .service-details li:before {
    color: #1e88e5;
}

.service-details li:last-child {
    border-bottom: none;
}

/* Cleaning Section */
.cleaning-section {
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%);
}

.cleaning-section .services .container h2 {
    color: white;
}

.cleaning-section .service-card {
    background: white;
    box-shadow: 0 4px 6px rgba(30, 136, 229, 0.2);
}

.cleaning-section .service-card h3 {
    color: #1e88e5;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #222 0%, #333 100%);
    color: #FFD700;
    padding: clamp(50px, 12vw, 80px) clamp(15px, 5vw, 20px);
}

.contact-section h2 {
    text-align: center;
    font-size: clamp(1.5em, 5vw, 2em);
    margin-bottom: clamp(30px, 8vw, 50px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 8vw, 50px);
    align-items: start;
}

.contact-info {
    background: rgba(255, 215, 0, 0.1);
    padding: clamp(20px, 5vw, 30px);
    border-radius: 8px;
    border-left: 5px solid #FFD700;
}

.contact-info h3 {
    font-size: clamp(1.4em, 4vw, 1.8em);
    margin-bottom: clamp(15px, 4vw, 20px);
    text-transform: uppercase;
}

.contact-label {
    color: #FFD700;
    font-weight: bold;
    margin-top: clamp(10px, 3vw, 15px);
}

.phone-number {
    font-size: clamp(1.2em, 3vw, 1.5em);
    font-weight: bold;
    margin: clamp(12px, 3vw, 15px) 0;
    padding: clamp(15px, 4vw, 20px);
    background-color: #FFD700;
    color: #222 !important;
    border-radius: 5px;
    text-align: center;
    letter-spacing: 2px;
    text-decoration: none !important;
}

.phone-number * {
    color: #222 !important;
    text-decoration: none !important;
}

/* Contact Form */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 3vw, 15px);
}

.contact-form input,
.contact-form textarea {
    padding: clamp(10px, 2vw, 12px);
    border: 2px solid #FFD700;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    border-radius: 5px;
    font-family: inherit;
    font-size: clamp(0.9em, 2vw, 1em);
    min-height: 44px;
    width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #FFD700;
    opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.submit-btn {
    padding: clamp(12px, 3vw, 15px);
    background-color: #1e88e5;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: clamp(0.9em, 2vw, 1em);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 44px;
    touch-action: manipulation;
}

.submit-btn:hover,
.submit-btn:focus {
    background-color: #1565c0;
    color: #fff;
    box-shadow: 0 4px 8px rgba(30, 136, 229, 0.3);
}

/* Footer */
.footer {
    background-color: #111;
    color: #1e88e5;
    text-align: center;
    padding: clamp(15px, 4vw, 20px);
    font-size: clamp(0.8em, 1.5vw, 0.9em);
}
.cleaning-page .footer,
.landscaping-page .footer,
.cleaning-offices-page .footer {
    color: #1e88e5;
}

/* Responsive Design - Tablet and Down */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }

    .logo-section {
        width: 100%;
        text-align: center;
    }

    .nav {
        width: 100%;
    }

    .nav ul {
        width: 100%;
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: clamp(20px, 5vw, 30px);
    }

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

/* Responsive Design - Desktop */
@media (min-width: 769px) {
    .cleaning-section .service-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 100%;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .nav ul {
        width: 100%;
        justify-content: center;
        gap: clamp(8px, 3vw, 12px);
    }

    .nav a {
        padding: 8px clamp(6px, 1.5vw, 10px);
        font-size: clamp(0.75em, 1.5vw, 0.9em);
    }

    .hero {
        padding: clamp(40px, 10vw, 60px) clamp(15px, 5vw, 20px);
    }

    .services {
        padding: clamp(40px, 10vw, 60px) clamp(15px, 5vw, 20px);
    }

    .contact-section {
        padding: clamp(40px, 10vw, 60px) clamp(15px, 5vw, 20px);
    }

    .service-card {
        padding: clamp(15px, 4vw, 20px);
    }

    .contact-info {
        padding: clamp(15px, 4vw, 20px);
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .nav ul {
        gap: 6px;
    }

    .nav a {
        padding: 6px 8px;
        font-size: 0.75em;
    }

    .logo-section h1 {
        font-size: 1.3em;
    }

    .logo-section .tagline {
        font-size: 0.7em;
    }
}
