/* Custom CSS for A-Plus Window Cleaning */

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #159895;
    --accent-color: #57c4e5;
    --dark-color: #002b36;
    --light-color: #ffffff;
    --gray-color: #f8f9fa;
    --text-color: #333333;
    --border-color: #dee2e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Styles */
.header-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo {
    height: 60px;
    width: auto;
}

.header-contact {
    text-align: right;
    margin-left: auto;
    margin-right: 20px;
}

.tagline {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.2;
}

.phone-numbers {
    font-size: 16px;
}

.phone-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 95, 122, 0.8), rgba(21, 152, 149, 0.8)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: var(--light-color);
    position: relative;
}

.hero-overlay {
    width: 100%;
    padding: 80px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services-section {
    background: var(--gray-color);
}

.section-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.section-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.services-list,
.protections-list,
.areas-list {
    list-style: none;
    padding: 0;
}

.services-list li,
.protections-list li,
.areas-list li {
    padding: 8px 0;
    border-left: 3px solid var(--accent-color);
    padding-left: 15px;
    margin-bottom: 5px;
    background: var(--light-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.services-list li:hover,
.protections-list li:hover,
.areas-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.protections-section {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Service Area Section */
.service-area-section {
    background: var(--light-color);
}

.areas-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.areas-list li {
    font-size: 1rem;
    color: var(--text-color);
}

.certifications {
    margin-top: 30px;
}

.cert-link {
    display: inline-block;
    margin: 0 15px;
    transition: transform 0.3s ease;
}

.cert-link:hover {
    transform: scale(1.05);
}

.cert-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

/* Footer */
.footer-section {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 50px 0 30px;
}

.footer-section h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.payment-methods {
    margin-top: 15px;
}

.payment-icon {
    height: 30px;
    width: auto;
    margin-right: 10px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

.hours p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-contact {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-section {
        min-height: 50vh;
    }

    .hero-overlay {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .cert-logo {
        height: 60px;
        margin-bottom: 15px;
    }

    .payment-icon {
        height: 25px;
    }
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-section,
.service-area-section {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}





/* Additional styles for Cleaning Services page */

.page-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f4f8 100%);
    border-bottom: 3px solid var(--primary-color);
}

.page-header h1 {
    font-weight: 700;
    position: relative;
}

.page-header h1:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto;
    border-radius: 2px;
}

.content-section {
    background: var(--bg-white);
}

.content-text .lead {
    line-height: 1.8;
    color: var(--text-dark);
}

.services-detail-section {
    background: var(--bg-light);
}

.service-description {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-highlights {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.service-highlights h4 {
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.service-list li {
    padding: 8px 0;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.service-list li:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.service-list .fas {
    font-size: 1.1rem;
}

.difference-section {
    background: linear-gradient(135deg, var(--bg-white) 0%, #f8fafc 100%);
}

.difference-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.difference-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.call-to-action {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.contact-buttons .btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-section {
    background: var(--bg-light);
}

.gallery-item {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 15px 0;
}

.gallery-caption h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-caption p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Enhanced responsive design for new page */
@media (max-width: 992px) {
    .service-highlights {
        position: static;
        margin-top: 30px;
    }

    .difference-content {
        padding: 30px 20px;
    }

    .call-to-action {
        padding: 25px 15px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .service-description,
    .service-highlights {
        padding: 20px;
    }

    .contact-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .difference-content {
        padding: 20px 15px;
    }

    .difference-content .lead {
        font-size: 1.1rem;
    }

    .gallery-item {
        padding: 15px;
    }

    .gallery-item img {
        height: 180px;
    }
}





/* Contact Us Page Styles */

.contact-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7L1200,96L1200,0L1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z" fill="rgba(255,255,255,0.1)"/></svg>') bottom center/cover no-repeat;
}

.contact-main {
    background: var(--bg-light);
}

.contact-info-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.contact-info-card h3 {
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.contact-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-detail h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-detail p {
    margin: 0;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.hours-table {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.hours-table .d-flex {
    transition: background-color 0.3s ease;
}

.hours-table .d-flex:hover {
    background-color: rgba(30, 136, 229, 0.1);
    padding-left: 10px;
    border-radius: 5px;
}

.payment-methods-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.payment-methods-grid .payment-icon {
    height: 35px;
    width: auto;
    background: white;
    padding: 8px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.payment-methods-grid .payment-icon:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.contact-form-card h3 {
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--bg-white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.25);
    background-color: var(--bg-white);
}

.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
    border-color: #dc3545;
}

.contact-form .invalid-feedback {
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

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

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
}

.contact-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.focused {
    transform: scale(1.02);
    transition: transform 0.2s ease;
}

.cta-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f4f8 100%);
    border-top: 3px solid var(--primary-color);
}

.cta-section h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.cta-buttons .btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Alert styles for form messages */
.alert {
    border-radius: 15px;
    border: none;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .contact-info-card,
    .contact-form-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 60px 0;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }

    .contact-header h2 {
        font-size: 1.5rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 25px;
        border-radius: 15px;
    }

    .contact-detail {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .payment-methods-grid {
        justify-content: center;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-header h2 {
        font-size: 1.3rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }

    .contact-form .form-control,
    .contact-form .form-select {
        padding: 10px 12px;
    }

    .payment-methods-grid .payment-icon {
        height: 30px;
        padding: 5px;
    }
}

/* Animation for form submission */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* Custom form focus styles */
.form-floating {
    position: relative;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}







/* Blog Page Styles */

.blog-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7L1200,96L1200,0L1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z" fill="rgba(255,255,255,0.1)"/></svg>') bottom center/cover no-repeat;
}

.blog-header h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.blog-header h2 {
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.blog-articles {
    background: var(--bg-light);
}

.blog-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-meta .author {
    font-weight: 600;
    color: var(--primary-color);
}

.blog-meta .date {
    color: var(--text-light);
}

.blog-title {
    margin-bottom: 20px;
    flex-shrink: 0;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}

.blog-excerpt p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.blog-excerpt p:first-child {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.blog-excerpt strong {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-cta {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f4f8 100%);
    border-top: 3px solid var(--primary-color);
}

.blog-cta h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.blog-cta .lead {
    color: var(--text-dark);
}

.blog-cta .cta-buttons .btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.blog-cta .cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Blog responsive design */
@media (max-width: 992px) {
    .blog-card {
        margin-bottom: 40px;
    }

    .blog-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .blog-header {
        padding: 60px 0;
    }

    .blog-header h1 {
        font-size: 2.5rem;
    }

    .blog-header h2 {
        font-size: 1.5rem;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title a {
        font-size: 1.2rem;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .blog-cta .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-header h2 {
        font-size: 1.3rem;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 15px;
    }

    .blog-title a {
        font-size: 1.1rem;
    }

    .blog-excerpt p {
        font-size: 0.95rem;
    }
}

/* Article content styling */
.blog-excerpt p strong {
    display: block;
    margin-bottom: 5px;
}

.blog-excerpt p:last-child {
    margin-bottom: 0;
}

/* Hover effects for better UX */
.blog-meta .author:hover {
    color: var(--secondary-color);
}

/* Loading animation placeholder */
.blog-card.loading {
    pointer-events: none;
    opacity: 0.7;
}

.blog-card.loading .blog-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}










/* Window Cleaning Page Styles */

.window-cleaning-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.window-cleaning-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7L1200,96L1200,0L1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z" fill="rgba(255,255,255,0.1)"/></svg>') bottom center/cover no-repeat;
}

.hero-buttons .btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.benefits-section {
    background: var(--bg-white);
}

.benefit-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.benefit-card:hover {
    background: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

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

.services-overview {
    background: var(--bg-light);
}

.service-overview-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.service-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.service-image {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px;
    text-align: center;
}

.service-icon {
    font-size: 4rem;
    color: white;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.process-section {
    background: var(--bg-white);
}

.process-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
    transition: transform 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.process-step h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

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

.window-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.window-cta .cta-buttons .btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.window-cta .cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .window-cleaning-hero {
        padding: 60px 0;
    }
    
    .window-cleaning-hero h1 {
        font-size: 2.5rem;
    }
    
    .benefit-card,
    .service-content {
        padding: 20px;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .hero-buttons .btn,
    .window-cta .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
}
