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

:root {
    --primary-blue: #003d7a;
    --secondary-red: #e63946;
    --accent-blue: #1f5fa9;
    --light-blue: #e8f4f8;
    --dark-text: #333333;
    --light-text: #666666;
    --white: #ffffff;
    --gray-light: #f5f5f5;
}

html {
    scroll-behavior: smooth;
}

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

.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: var(--secondary-red);
}

.icon-fill {
    fill: currentColor;
    stroke: none;
}

.icon-sm {
    width: 18px;
    height: 18px;
}

.icon-md {
    width: 28px;
    height: 28px;
}

.icon-lg {
    width: 48px;
    height: 48px;
}

.icon-xl {
    width: 64px;
    height: 64px;
}

.icon-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 999px;
    padding: 0.35rem;
}

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

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.45rem 0;
}

.icon-list .icon {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

h2, h3, h4 {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-img {
    height: clamp(30px, 5vh, 80px);
    width: clamp(100px, 25vw, 250px);
    object-fit: contain;
}
}

/* Logo Group - Text + WhatsApp Icon */
.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* WhatsApp Logo Button */
.whatsapp-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.whatsapp-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-logo:hover::before {
    transform: scale(1);
}

.whatsapp-logo:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* WhatsApp Icon */
.whatsapp-icon {
    width: 24px;
    height: 24px;
    stroke: none;
    fill: var(--white);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.whatsapp-logo:hover .whatsapp-icon {
    transform: scale(1.15);
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: var(--secondary-red);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 4px solid var(--secondary-red);
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--secondary-red) 0%, #d62828 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    display: inline-block;
    text-decoration: none;
    margin: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
    background: linear-gradient(135deg, #d62828 0%, var(--secondary-red) 100%);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-button.basecamp-btn {
    background: linear-gradient(135deg, #1f5fa9 0%, var(--primary-blue) 100%);
    box-shadow: 0 4px 15px rgba(31, 95, 169, 0.3);
}

.cta-button.basecamp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(31, 95, 169, 0.4);
}

/* Floating Call Button - Sticky */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--secondary-red) 0%, #d62828 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    z-index: 999;
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
    transition: all 0.3s ease;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 40px rgba(230, 57, 70, 0.8);
        transform: scale(1.05);
    }
}

.floating-call-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.7);
    animation: none;
}

.floating-call-btn .phone-icon {
    width: 28px;
    height: 28px;
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.floating-call-btn:hover .phone-icon {
    animation: shake 0.3s ease-in-out infinite;
}

.floating-call-btn .call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    font-size: 0.85rem;
}

.floating-call-btn .call-text strong {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Header Call Button */
.header-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.call-button-header {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.call-button-header:hover {
    background: var(--white);
    color: var(--secondary-red);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.cta-button.call-primary {
    background: var(--white);
    color: var(--secondary-red);
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-button.call-primary:hover {
    background: var(--secondary-red);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
}

.cta-button.cta-secondary {
    background: transparent;
    border: 3px solid var(--white);
    color: var(--white);
}

.cta-button.cta-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Stats Counter Section */
.stats-counter-section {
    background: linear-gradient(135deg, #003d7a 0%, #1f5fa9 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.stat-icon .icon {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

.stat-plus {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-left: 0.2rem;
    vertical-align: super;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* Animation pour le compteur */
@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-item.animated .stat-number {
    animation: countUp 0.6s ease-out;
}

.stat-item.animated .stat-icon {
    animation: float 3s ease-in-out infinite, pulse 0.8s ease-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.2) translateY(-10px);
    }
}

/* Clients Testimonial Section */
.clients-testimonial-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonial-header h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.testimonial-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-red) 0%, var(--accent-blue) 100%);
    border-radius: 2px;
}

.testimonial-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-top: 1.5rem;
}

.review-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-red) 0%, var(--accent-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.platform-card:hover::before {
    transform: scaleX(1);
}

.platform-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 61, 122, 0.1);
}

.platform-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.platform-card.facebook .platform-icon {
    background: linear-gradient(135deg, #1877f2 0%, #0c5ec7 100%);
    color: white;
}

.platform-card.google .platform-icon {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.platform-card.yelp .platform-icon {
    background: linear-gradient(135deg, #ff1a1a 0%, #d32323 100%);
    color: white;
}

.platform-icon svg {
    width: 45px;
    height: 45px;
    transition: transform 0.4s ease;
}

.platform-card:hover .platform-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.platform-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
}

.platform-card.facebook .platform-name {
    color: #1877f2;
}

.platform-card.google .platform-name {
    background: linear-gradient(90deg, #4285F4 0%, #34A853 50%, #FBBC05 75%, #EA4335 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-card.yelp .platform-name {
    color: #ff1a1a;
}

.platform-stars {
    display: flex;
    gap: 0.3rem;
    font-size: 1.8rem;
}

.platform-stars .star {
    color: #ffc107;
    text-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
    animation: starPulse 2s ease-in-out infinite;
}

.platform-stars .star:nth-child(1) { animation-delay: 0s; }
.platform-stars .star:nth-child(2) { animation-delay: 0.1s; }
.platform-stars .star:nth-child(3) { animation-delay: 0.2s; }
.platform-stars .star:nth-child(4) { animation-delay: 0.3s; }
.platform-stars .star:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

.platform-card:hover .platform-stars .star {
    animation: starBounce 0.6s ease;
}

@keyframes starBounce {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.newsletter-benefits li {
    color: var(--white);
    font-size: 1.1rem;
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.subscribe-form {
    width: 100%;
}

.form-input-group {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
}

.form-input-group input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 10px 0 0 10px;
    font-size: 1rem;
    outline: none;
    background: var(--white);
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.form-input-group input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-input-group input::placeholder {
    color: var(--light-text);
}

.subscribe-btn {
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--secondary-red) 0%, #c62d3a 100%);
    color: var(--white);
    border: none;
    border-radius: 0 10px 10px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, #c62d3a 0%, var(--secondary-red) 100%);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
}

.subscribe-btn svg {
    transition: transform 0.3s ease;
}

.subscribe-btn:hover svg {
    transform: translateX(5px);
}

.newsletter-privacy {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

.hero-trust-badge {
    font-size: 1rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.cta-button.basecamp-btn:hover {
    box-shadow: 0 6px 20px rgba(31, 95, 169, 0.4);
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1f5fa9 100%);
}

.cta-button span {
    margin-right: 0.5rem;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background-color: var(--gray-light);
}

.services-overview h2,
.image-showcase h2,
.features h2,
.cta-section h2,
.why-us h2,
.deep-cleaning-details h2,
.services-checklist h2,
.why-deep-clean h2,
.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 1rem;
}

.services-overview h2::after,
.image-showcase h2::after,
.features h2::after,
.deep-cleaning-details h2::after,
.services-checklist h2::after,
.why-deep-clean h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-red));
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-red);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.service-icon .icon {
    width: 48px;
    height: 48px;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    text-align: justify;
    text-justify: inter-word;
}

.service-link {
    color: var(--secondary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    transform: translateX(5px);
    color: var(--primary-blue);
}

/* Image Showcase */
.image-showcase {
    padding: 5rem 0;
}

.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.maintenance-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.maintenance-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
}

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

.maintenance-item h3 {
    color: var(--primary-blue);
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    min-height: 70px;
    display: flex;
    align-items: center;
}

.maintenance-item p {
    padding: 0.5rem 1.5rem 1.5rem;
    color: var(--light-text);
    line-height: 1.6;
    flex-grow: 1;
    text-align: justify;
    text-justify: inter-word;
}

/* Deep Cleaning Gallery Section */
.deep-cleaning-gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
}

.deep-cleaning-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

.deep-cleaning-gallery .maintenance-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.deep-cleaning-gallery .maintenance-item {
    background: var(--white);
    border: 1px solid rgba(0, 61, 122, 0.1);
}

.deep-cleaning-gallery .service-description {
    padding: 0 1.5rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Features List */
.features {
    padding: 5rem 0;
    background-color: var(--gray-light);
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-list li {
    font-size: 1.1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-red);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--dark-text);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section h2::after {
    background: linear-gradient(90deg, var(--secondary-red), #ff6b6b);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background-color: var(--gray-light);
}

.contact-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-red));
    border-radius: 2px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    margin-bottom: 2rem;
}

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

.contact-form label .optional {
    font-weight: 400;
    color: var(--light-text);
    font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 8px rgba(0, 61, 122, 0.2);
}

.contact-form textarea {
    resize: vertical;
    font-family: inherit;
}

.contact-form input[type="file"] {
    padding: 0.5rem;
    cursor: pointer;
}

/* Custom file upload styling */
.custom-file-upload {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-upload-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.file-upload-btn:hover {
    background-color: var(--accent-blue);
}

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

.contact-form input[type="file"]::file-selector-button {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

/* Force English text for file input button */
.contact-form input[type="file"]::file-selector-button {
    content: "Choose File";
}

.contact-form input[type="file"]:lang(en)::file-selector-button {
    content: "Choose File";
}

.contact-form input[type="file"]::file-selector-button:hover {
    background-color: var(--accent-blue);
}

.form-hint {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-top: 0.5rem;
}

.policy-notice {
    background-color: var(--light-blue);
    border-left: 4px solid var(--primary-blue);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.5;
}

.policy-notice p {
    margin: 0;
}

.contact-form button {
    width: 100%;
    margin-top: 0.5rem;
}

/* Why Us Section */
.why-us {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
}

.why-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 1.5rem;
}

.why-us h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-red));
    border-radius: 2px;
}

.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reason-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--secondary-red);
    transition: all 0.3s ease;
    text-align: center;
}

.reason-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 61, 122, 0.15);
    border-top-color: var(--primary-blue);
}

.reason-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-icon .icon {
    width: 40px;
    height: 40px;
}

.reason-item h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Content Section */
.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-red);
    background: linear-gradient(90deg, var(--light-blue) 0%, var(--white) 100%);
    border-radius: 8px;
    padding: 1rem 0.5rem;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.08);
}

.content-section p {
    font-size: 1.15rem;
    color: var(--dark-text);
    line-height: 1.8;
    background: var(--light-blue);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 4px rgba(31, 95, 169, 0.05);
}

/* Deep Cleaning Details */
.deep-cleaning-details {
    padding: 5rem 0;
    background-color: var(--gray-light);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--secondary-red);
    transition: all 0.3s ease;
}

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

.detail-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.detail-card p {
    color: var(--light-text);
}

/* Services Checklist */
.services-checklist {
    padding: 5rem 0;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.2rem;
    background: linear-gradient(90deg, var(--light-blue) 0%, var(--white) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(31, 95, 169, 0.10);
    padding: 1.5rem 2rem;
    border-left: 6px solid var(--secondary-red);
    border-right: 6px solid var(--accent-blue);
}

.checklist-column h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--secondary-red);
}

.checklist-column ul {
    list-style: none;
}

.checklist-column li {
    padding: 0.8rem 0.5rem;
    color: var(--dark-text);
    font-size: 1.12rem;
    font-weight: 600;
    background: rgba(31,95,169,0.07);
    border-radius: 6px;
    border-bottom: none;
    box-shadow: 0 1px 4px rgba(230,57,70,0.05);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: background 0.2s;
}
.checklist li:hover {
    background: var(--accent-blue);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(31,95,169,0.15);
}
.checklist li::before {
    content: '\2714';
    color: var(--secondary-red);
    font-size: 1.3rem;
    margin-right: 0.7rem;
    font-weight: bold;
}

.checklist-column li::before {
    content: none;
}

/* Why Deep Clean */
.why-deep-clean {
    padding: 5rem 0;
    background-color: var(--gray-light);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.benefit:hover {
    border-color: var(--secondary-red);
    transform: translateY(-5px);
}

.benefit h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

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

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 1rem;
}

.service-areas h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-red));
    border-radius: 2px;
}

.counties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.county-card {
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(30, 95, 169, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.county-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary-blue);
}

.county-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.county-main {
    color: var(--secondary-red);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.county-subtitle {
    color: var(--light-text);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

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

.city-list li {
    color: var(--dark-text);
    padding: 0.5rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.city-list li::before {
    content: none;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--white);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 1rem;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-red));
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-red);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.testimonial-card .quote {
    color: var(--dark-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card .quote::before {
    content: '"';
    font-size: 2rem;
    color: var(--secondary-red);
    margin-right: 0.5rem;
}

.testimonial-card .author {
    color: var(--light-text);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

/* Credentials Section */
.credentials {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
}

.credentials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 1.5rem;
}

.credentials h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-red), var(--primary-blue));
    border-radius: 2px;
}

.credentials-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.credential-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-blue);
    transition: all 0.3s ease;
    text-align: center;
}

.credential-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.15);
    border-color: var(--secondary-red);
}

.credential-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-icon .icon {
    width: 44px;
    height: 44px;
}

.credential-card h4 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.credential-card p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Programs Section */
.programs {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--gray-light) 0%, rgba(232,244,248,0.6) 100%);
}

.programs h2 {
    text-align: center;
    font-size: 2.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.program-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: start;
}

.program-card {
    background: linear-gradient(180deg, var(--white) 0%, #fbfcff 100%);
    padding: 2.25rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(3, 37, 76, 0.06);
    border-left: 6px solid rgba(0,0,0,0.03);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    text-align: left;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(3,37,76,0.12);
    border-left-color: var(--secondary-red);
}

.program-card.highlight {
    border-left-color: var(--primary-blue);
    background: linear-gradient(180deg, #f7fbff 0%, var(--white) 100%);
}

.program-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.program-card h3 {
    color: var(--primary-blue);
    margin-top: 0.4rem;
    margin-bottom: 0.6rem;
}

.program-list {
    margin: 0.75rem 0 1.25rem 1.15rem;
    color: var(--dark-text);
}

.program-list li {
    margin-bottom: 0.5rem;
}

.program-card .cta-button {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.6rem 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.faq-item h3 {
    color: var(--secondary-red);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--dark-text);
    font-size: 1.05rem;
    line-height: 1.7;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-category {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-category-title {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--secondary-red);
    font-weight: 700;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary-red);
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-red) 0%, #d62828 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0 0 0;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 1000px;
    padding: 0 0 1.5rem 0;
}

.faq-answer p {
    color: var(--dark-text);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    text-align: justify;
    text-justify: inter-word;
}

.faq-answer ul {
    margin: 0.75rem 0 0.75rem 1.5rem;
    color: var(--dark-text);
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-answer strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.faq-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 61, 122, 0.2);
}

.faq-cta h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.faq-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta .cta-button {
    margin: 0;
}

.faq-cta .cta-outline {
    background: transparent;
    border: 3px solid var(--white);
    color: var(--white);
}

.faq-cta .cta-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Your Satisfaction Is Our Everyday Guarantee Section */
.satisfaction-guarantee-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.satisfaction-guarantee-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.satisfaction-guarantee-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 61, 122, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.guarantee-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.guarantee-image:hover {
    transform: scale(1.02);
}

.guarantee-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.guarantee-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--secondary-red) 0%, #d62828 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
    animation: badge-bounce 3s ease-in-out infinite;
}

@keyframes badge-bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.badge-icon {
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon .icon {
    width: 36px;
    height: 36px;
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.2;
}

.badge-text strong {
    font-size: 1.5rem;
    font-weight: 900;
}

.badge-text span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guarantee-text {
    padding: 2rem 0;
    text-align: center;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-red) 0%, #d62828 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.guarantee-text h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 800;
    text-align: center;
}

.guarantee-description {
    color: var(--dark-text);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
    text-justify: inter-word;
}

.guarantee-description .lead-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.guarantee-description p {
    margin-bottom: 1.5rem;
}

.guarantee-promise-box {
    background: linear-gradient(135deg, rgba(0, 61, 122, 0.05) 0%, rgba(31, 95, 169, 0.05) 100%);
    border-left: 5px solid var(--secondary-red);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.guarantee-promise-box h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.guarantee-list li {
    padding: 0.75rem 0;
    line-height: 1.6;
}

.guarantee-list li::before {
    content: none;
}

.final-statement {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-red);
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.08) 0%, rgba(214, 40, 40, 0.08) 100%);
    border-radius: 10px;
    text-align: center;
}

.guarantee-cta-group {
    display: flex;
    gap: 1rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.guarantee-call-btn {
    background: linear-gradient(135deg, var(--secondary-red) 0%, #d62828 100%);
    font-size: 1.15rem;
    padding: 1.2rem 2.5rem;
}

.cta-outline {
    background: transparent;
    border: 3px solid var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: none;
}

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

.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.trust-icon .icon {
    width: 22px;
    height: 22px;
}

.trust-text {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-tagline {
    font-style: italic;
    font-size: 0.95rem;
    opacity: 0.8;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--secondary-red);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

.footer-credit {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-credit a {
    color: var(--secondary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-credit a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive Design - Mobile Optimization */

/* Tablet and below */
@media (max-width: 1024px) {
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .guarantee-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Navigation adjustments */
    .navbar .container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .header-cta-group {
        width: 100%;
        justify-content: center;
    }
    
    .call-button-header {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    /* Hero section */
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .cta-button.call-primary {
        width: 100%;
        text-align: center;
    }
    
    /* Floating call button adjustment */
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.9rem 1.2rem;
    }
    
    .floating-call-btn .call-text {
        font-size: 0.75rem;
    }
    
    .floating-call-btn .call-text strong {
        font-size: 0.95rem;
    }
    
    /* Guarantee section */
    .satisfaction-guarantee-section {
        padding: 4rem 0;
    }
    
    .guarantee-text h2 {
        font-size: 2.2rem;
    }
    
    .guarantee-description .lead-text {
        font-size: 1.15rem;
    }
    
    .guarantee-description {
        font-size: 1rem;
    }
    
    .guarantee-promise-box {
        padding: 1.5rem;
    }
    
    .guarantee-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .guarantee-cta-group .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    /* FAQ Section Tablet */
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .faq-category {
        padding: 1.75rem;
    }
    
    .faq-cta {
        padding: 2.5rem;
    }
    
    .faq-cta h3 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
    
    /* WhatsApp Logo Responsive */
    .logo-group {
        gap: 8px;
    }
    
    .whatsapp-logo {
        width: 40px;
        height: 40px;
    }
    
    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    /* Navigation */
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        text-align: center;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    /* Hero */
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-trust-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    /* Floating call button - more compact on small screens */
    .floating-call-btn {
        bottom: 15px;
        right: 15px;
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .floating-call-btn .phone-icon {
        width: 22px;
        height: 22px;
    }
    
    .floating-call-btn .call-text {
        font-size: 0.7rem;
    }
    
    .floating-call-btn .call-text strong {
        font-size: 0.85rem;
    }
    
    /* Guarantee section */
    .satisfaction-guarantee-section {
        padding: 3rem 0;
    }
    
    .guarantee-content {
        gap: 2rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .guarantee-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .guarantee-description .lead-text {
        font-size: 1.05rem;
    }
    
    .guarantee-description {
        font-size: 0.95rem;
    }
    
    .guarantee-promise-box {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
    
    .guarantee-promise-box h3 {
        font-size: 1.2rem;
    }
    
    .guarantee-list li {
        padding: 0.6rem 0;
        padding-left: 1.75rem;
        font-size: 0.9rem;
    }
    
    .guarantee-badge {
        width: 90px;
        height: 90px;
        padding: 1rem;
        bottom: 20px;
        right: 20px;
    }
    
    .badge-icon {
        font-size: 2rem;
    }
    
    .badge-text strong {
        font-size: 1.2rem;
    }
    
    .badge-text span {
        font-size: 0.65rem;
    }
    
    .final-statement {
        font-size: 1.05rem;
        padding: 1.25rem;
    }
    
    .guarantee-call-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .trust-indicators {
        gap: 1rem;
        justify-content: center;
    }
    
    .trust-item {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .trust-icon {
        font-size: 1.25rem;
    }
    
    /* FAQ Section Mobile */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-subtitle {
        font-size: 0.95rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-category {
        padding: 1.5rem;
    }
    
    .faq-category-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }
    
    .faq-icon {
        width: 26px;
        height: 26px;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    .faq-answer p, .faq-answer li {
        font-size: 0.9rem;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-cta .cta-button {
        width: 90%;
        max-width: 300px;
        text-align: center;
    }
    
    /* WhatsApp Logo Mobile */
    .logo-group {
        gap: 6px;
    }
    
    .whatsapp-logo {
        width: 36px;
        height: 36px;
    }
    
    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }
}

/* Modal: Finance Request */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.modal[aria-hidden="false"] {
    display: flex;
}
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.modal-content {
    position: relative;
    width: 96%;
    max-width: 680px;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(3,37,76,0.25);
    z-index: 2;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    color: var(--light-text);
}
.modal-note {
    color: var(--light-text);
    margin-bottom: 1rem;
}
.checkbox-label {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

@media (max-width: 480px) {
    .modal-content { padding: 1rem; }
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

picture {
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.maintenance-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
}

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

/* WebP-specific optimizations */
@supports (image-rendering: crisp-edges) {
    img[loading="lazy"] {
        background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%, transparent 75%, #f0f0f0 75%, #f0f0f0);
        background-size: 20px 20px;
        background-position: 0 0, 10px 10px;
    }
}

/* Responsive images for different device sizes */
@media (min-width: 768px) {
    .maintenance-item img {
        height: 280px;
    }
}

@media (min-width: 1024px) {
    .maintenance-item img {
        height: 300px;
    }
}

/* Read More Button Styles */
.service-description {
    text-align: justify;
}

.service-description .short-text {
    margin-bottom: 1rem;
}

.service-description .full-text {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--dark-text);
    text-align: justify;
    text-justify: inter-word;
}

.read-more-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    display: inline-block;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 61, 122, 0.3);
}

.read-more-btn.expanded {
    background: linear-gradient(135deg, var(--secondary-red) 0%, #c62d3a 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid,
    .maintenance-grid,
    .details-grid,
    .benefit-grid,
    .reasons {
        grid-template-columns: repeat(2, 1fr);
    }

    .deep-cleaning-gallery h2 {
        font-size: 2rem;
    }

    .deep-cleaning-gallery .maintenance-grid {
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 15px;
    }

    /* Stats Counter Responsive - Tablet */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .stat-item {
        padding: 1.8rem;
    }

    .stat-icon {
        font-size: 3.5rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    /* Testimonial Responsive - Tablet */
    .review-platforms {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .platform-card {
        padding: 2.5rem 1.5rem;
    }

    .testimonial-header h2 {
        font-size: 2.5rem;
    }

    /* Newsletter Responsive - Tablet */
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .newsletter-text h2 {
        font-size: 2.2rem;
    }

    .newsletter-benefits {
        display: inline-block;
        text-align: left;
    }

    .newsletter-form {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Navbar - Sticky on mobile */
    .navbar {
        padding: 1rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    }

    .navbar .container {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        gap: 0;
    }

    /* Logo on the left */
    .logo {
        order: 1;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    /* Hamburger menu on the right */
    .hamburger {
        display: flex;
        order: 3;
        margin-left: auto;
        flex-shrink: 0;
    }

    /* Hide header CTA group on mobile */
    .header-cta-group {
        display: none;
    }

    /* Mobile menu - vertical sidebar sliding from right */
    .nav-links {
        position: fixed;
        top: 60px;
        right: -280px;
        width: 280px;
        height: calc(100vh - 60px);
        background: linear-gradient(180deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
        flex-direction: column;
        padding: 2rem 0;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        order: 2;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        text-align: left;
        font-size: 1.05rem;
        color: var(--white);
        transition: all 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.15);
        padding-left: 2rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Hero CTA buttons - smaller on mobile with bounce animation */
    .hero .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
        width: 90%;
        max-width: 280px;
        animation: bounceIn 1s ease-out;
    }

    @keyframes bounceIn {
        0% {
            opacity: 0;
            transform: scale(0.3) translateY(-50px);
        }
        50% {
            opacity: 1;
            transform: scale(1.05);
        }
        70% {
            transform: scale(0.9);
        }
        100% {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    .hero .cta-button:nth-child(1) {
        animation-delay: 0.2s;
    }

    .hero .cta-button:nth-child(2) {
        animation-delay: 0.4s;
    }

    /* Reduce animations intensity on mobile */
    .maintenance-item:hover {
        transform: translateY(-4px);
    }

    .maintenance-item:hover img {
        transform: scale(1.02);
    }

    /* Images responsive on mobile */
    .maintenance-item img {
        height: 200px;
    }

    .maintenance-item h3 {
        font-size: 1.1rem;
        padding: 1rem 1rem 0.5rem;
        min-height: auto;
    }

    .maintenance-item p {
        font-size: 0.9rem;
        padding: 0.5rem 1rem 1rem;
    }

    .page-header {
        padding: 3rem 0;
    }

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

    .page-header p {
        font-size: 1rem;
    }

    .services-overview,
    .image-showcase,
    .features,
    .why-us,
    .contact-form-section,
    .deep-cleaning-details,
    .services-checklist,
    .why-deep-clean,
    .content-section,
    .service-areas,
    .deep-cleaning-gallery {
        padding: 3rem 0;
    }

    .services-overview h2,
    .image-showcase h2,
    .features h2,
    .cta-section h2,
    .why-us h2,
    .contact-form-section h2,
    .deep-cleaning-details h2,
    .services-checklist h2,
    .why-deep-clean h2,
    .content-section h2,
    .service-areas h2,
    .deep-cleaning-gallery h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .services-grid,
    .maintenance-grid,
    .details-grid,
    .benefit-grid,
    .reasons,
    .feature-list,
    .checklist,
    .counties-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .maintenance-item,
    .detail-card {
        padding: 1.5rem;
    }

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

    .feature-list li {
        font-size: 1rem;
        padding: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: auto;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .reason-item {
        padding: 1.5rem;
    }

    .checklist-column h4 {
        font-size: 1.2rem;
    }

    /* Stats Counter Responsive - Mobile */
    .stats-counter-section {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-icon {
        font-size: 3rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-plus {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    /* Testimonial Responsive - Mobile */
    .clients-testimonial-section {
        padding: 3rem 0;
    }

    .testimonial-header {
        margin-bottom: 2.5rem;
    }

    .testimonial-header h2 {
        font-size: 2rem;
    }

    .testimonial-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Logos réseaux sociaux optimisés pour mobile */
    .review-platforms {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .platform-card {
        padding: 2rem 1.5rem;
        transform: scale(0.95);
    }

    .platform-logo {
        width: 60px;
        height: 60px;
    }

    .platform-name {
        font-size: 1.2rem;
    }

    .platform-stars {
        font-size: 1.5rem;
    }

    /* Disable hover animations on mobile for performance */
    .platform-card:hover {
        transform: scale(0.95);
    }

    /* Deep Cleaning Gallery Responsive - Mobile */
    .deep-cleaning-gallery {
        padding: 3rem 0;
    }

    .deep-cleaning-gallery h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .deep-cleaning-gallery .maintenance-item h3 {
        font-size: 1.2rem;
    }

    .deep-cleaning-gallery .maintenance-item img {
        height: 220px;
    }

    .service-description .short-text,
    .service-description .full-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .read-more-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    .review-platforms {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .platform-card {
        padding: 2rem 1.5rem;
    }

    .platform-icon {
        width: 70px;
        height: 70px;
    }

    .platform-icon svg {
        width: 40px;
        height: 40px;
    }

    .platform-name {
        font-size: 1.3rem;
    }

    .platform-stars {
        font-size: 1.5rem;
    }

    /* Newsletter Responsive - Mobile */
    .newsletter-section {
        padding: 3rem 0;
    }

    .newsletter-content {
        gap: 2rem;
    }

    .newsletter-text h2 {
        font-size: 1.8rem;
    }

    .newsletter-text p {
        font-size: 1rem;
    }

    .newsletter-benefits li {
        font-size: 1rem;
        padding: 0.6rem 0;
    }

    .newsletter-form {
        padding: 2rem 1.5rem;
    }

    .form-input-group {
        flex-direction: column;
        gap: 1rem;
    }

    .form-input-group input {
        border-radius: 10px;
        padding: 1rem 1.2rem;
    }

    .subscribe-btn {
        border-radius: 10px;
        padding: 1rem 1.5rem;
        justify-content: center;
    }

    .subscribe-btn:hover {
        transform: translateY(-2px);
    }

    .checklist-column li {
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
    }

    footer {
        padding: 1.5rem 0;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 12px;
    }

    .navbar .container {
        gap: 0.8rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-links a {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .page-header {
        padding: 2.5rem 0;
    }

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

    .page-header p {
        font-size: 0.95rem;
    }

    .services-overview h2,
    .image-showcase h2,
    .features h2,
    .cta-section h2,
    .why-us h2,
    .contact-form-section h2,
    .deep-cleaning-details h2,
    .services-checklist h2,
    .why-deep-clean h2,
    .content-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .services-overview h2::after,
    .image-showcase h2::after,
    .features h2::after,
    .deep-cleaning-details h2::after,
    .services-checklist h2::after,
    .why-deep-clean h2::after {
        width: 80px;
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

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

    .maintenance-item h3 {
        padding: 1rem 1rem 0.3rem;
        font-size: 1.1rem;
    }

    .maintenance-item p {
        padding: 0.3rem 1rem 1rem;
        font-size: 0.9rem;
    }

    .feature-list li {
        font-size: 0.95rem;
        padding: 0.8rem;
    }

    .reason-item {
        padding: 1.2rem;
    }

    .reason-item h4 {
        font-size: 1.1rem;
    }

    .reason-item p {
        font-size: 0.9rem;
    }

    .detail-card h3 {
        font-size: 1.1rem;
    }

    .detail-card p {
        font-size: 0.9rem;
    }

    .checklist-column h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .checklist-column li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .benefit h4 {
        font-size: 1.1rem;
    }

    .benefit p {
        font-size: 0.9rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form label {
        font-size: 0.95rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.6rem 0.75rem;
        font-size: 0.95rem;
    }
}
