:root {
    --primary-color: #0066cc;
    --secondary-color: #00aa55;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --section-light: #f8faff;
    --section-grey: #f5f7fa;
    --title-accent: var(--primary-color);
    --separator-color: rgba(0, 170, 85, 0.1);
    --dark: #333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

@media (min-width: 1024px) {
    .header-container {
        padding: 0 0 0 15px;
    }
}

/* Header Styles */
.header {
    position: relative;
    background: #fff;
    z-index: 1000;
    border-bottom: 3px solid transparent;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        var(--primary-color) 100%
    );
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Logo Styles */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: 22px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 102, 204, 0.3) 20%, 
        rgba(0, 170, 85, 0.3) 50%, 
        rgba(0, 102, 204, 0.3) 80%, 
        transparent 100%
    );
}

.logo-main {
    color: var(--primary-color);
    font-size: 1.8em;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-dot {
    color: var(--secondary-color);
}

.logo-tagline {
    color: var(--text-color);
    font-size: 0.85em;
    font-weight: 500;
    margin-top: 2px;
    opacity: 0.9;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-247 {
    color: var(--secondary-color);
    font-weight: 700;
    background: rgba(0, 170, 85, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

/* Tablet & Mobile Styles */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        flex-direction: column;
        padding: 80px 40px 40px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        display: flex;
    }

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

    .nav-menu a {
        font-size: 1.2em;
        padding: 15px 0;
    }

    .nav-menu .mobile-phone {
        margin-top: 30px;
        padding: 20px;
        background: var(--primary-color);
        color: white;
        border-radius: 8px;
        display: flex !important;
        align-items: center;
        gap: 10px;
        font-size: 1.1em;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .nav-menu .mobile-phone:hover {
        background: var(--secondary-color);
        transform: translateY(-2px);
    }

    .nav-menu .mobile-phone i {
        font-size: 1em;
    }

    .header-cta {
        margin-right: 50px;
    }

    .header-cta .phone-btn {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .logo-main {
        font-size: 1.4em;
    }
    
    .logo-tagline {
        font-size: 0.75em;
    }

    .header-cta .phone-btn span {
        display: none;
    }

    .header-cta .phone-btn {
        padding: 0.6rem;
        aspect-ratio: 1;
    }

    .header-cta .phone-btn i {
        margin: 0;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu .mobile-phone {
    display: none;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-menu a.active::after {
    width: 100%;
    background: var(--primary-color);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-cta .phone-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
    letter-spacing: 0.5px;
}

.header-cta .phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
    background: var(--secondary-color);
}

.header-cta .phone-btn i {
    font-size: 1.1rem;
}

/* Scroll effect */
.header.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
    z-index: 2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
    padding: 0 20px;
}

.hero-badge {
    margin-bottom: 30px;
}

.badge-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.google-logo {
    width: 70px;
    height: auto;
    object-fit: contain;
    margin-bottom: 5px;
}

.badge-content {
    text-align: center;
}

.stars {
    color: #FFC107;
    font-size: 12px;
    margin-bottom: 1px;
    display: flex;
    justify-content: center;
    gap: 2px;
}

.rating {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 1px;
}

.reviews {
    font-size: 11px;
    opacity: 0.9;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content h1 {
    font-size: clamp(2.5em, 5vw, 4.2em);
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
}

@keyframes highlight-pulse {
    0% {
        opacity: 1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    }
    50% {
        opacity: 0.8;
        text-shadow: 2px 2px 15px rgba(0, 170, 85, 0.6);
    }
    100% {
        opacity: 1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    }
}

.hero-content h1 .highlight {
    color: var(--secondary-color);
    font-size: 0.9em;
    display: inline-block;
    margin-top: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    animation: highlight-pulse 2s infinite;
    padding: 0 5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-content h2 {
    font-size: clamp(1.5em, 3vw, 2.4em);
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    font-weight: 600;
    letter-spacing: -0.3px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2em, 7vw, 3em);
        padding: 0 10px;
    }

    .hero-content h2 {
        font-size: clamp(1.2em, 5vw, 1.8em);
        padding: 0 15px;
        line-height: 1.4;
    }
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature i {
    font-size: 18px;
    color: var(--secondary-color);
}

.feature span {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.hero-cta {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

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

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

/* Media Queries for Hero Section */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        min-height: 100vh;
    }
    .hero-content {
        padding: 0 15px;
    }

    .hero-background img {
        object-position: 60% center;
    }

    .google-badge {
        padding: 12px 20px;
    }

    .google-logo {
        width: 60px;
    }

    .stars {
        font-size: 11px;
    }

    .rating {
        font-size: 13px;
    }

    .reviews {
        font-size: 10px;
    }

    .badge-layout {
        flex-direction: column;
        gap: 12px;
    }

    .badge-content {
        text-align: left;
    }

    .stars {
        justify-content: flex-start;
    }

    .hero-features {
        gap: 15px;
        margin: 30px 0;
    }

    .feature {
        padding: 10px 15px;
        font-size: 13px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

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

@media (max-width: 480px) {
    .google-badge {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .badge-content {
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

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

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .service-card::before {
        transform: scaleX(1);
        transition: none;
    }

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--section-light);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.5em;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.footer h4 {
    color: #0066CC;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 20px;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.service-image {
    margin: 20px -30px -40px;
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, var(--white), transparent);
    z-index: 1;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .service-card {
        padding: 30px 20px;
    }

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

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .service-card:hover .service-icon {
        transform: none;
        background: var(--section-light);
        color: var(--primary-color);
    }

    .service-card h3 {
        font-size: 1.3em;
    }

    .service-image {
        margin: 20px -20px -30px;
        height: 160px;
    }

    .service-card:hover .service-image img {
        transform: none;
    }
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: var(--light-gray);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-us-card {
    padding: 30px;
    text-align: center;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-5px);
}

.why-us-card i {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, 
        #4285f4, /* Google Blue */
        #db4437, /* Google Red */
        #f4b400, /* Google Yellow */
        #0f9d58  /* Google Green */
    );
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.testimonial-content {
    flex: 1;
    text-align: center;
}

.testimonial-content p {
    color: var(--dark);
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-content .stars {
    color: #fbbc05;
    font-size: 1.2em;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    gap: 2px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    margin-bottom: 5px;
}

.author-name {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1em;
}

.author-location {
    color: var(--dark);
    font-size: 0.9em;
    opacity: 0.85;
    margin-bottom: 5px;
}

.testimonial-author .stars {
    color: #fbbc05;
    font-size: 1.2em;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    gap: 2px;
}

@media (max-width: 768px) {
    .testimonial {
        padding: 20px;
    }

    .testimonial-content p {
        font-size: 1em;
    }

    .author-image {
        width: 60px;
        height: 60px;
    }

    .author-name {
        font-size: 1em;
    }

    .author-location {
        font-size: 0.85em;
    }
}

/* Testimonials Google Badge */
.testimonials-google-badge {
    text-align: center;
    margin-bottom: 40px;
}

.google-badge-circle {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.google-badge-circle .badge-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.google-badge-circle .google-logo {
    width: 70px;
    height: auto;
    margin-bottom: 5px;
    filter: brightness(1.2);
}

.google-badge-circle .stars {
    color: #fbbc05;
    font-size: 1.2em;
    letter-spacing: 2px;
}

.google-badge-circle .stars i {
    margin: 0 1px;
}

.google-badge-circle .rating {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.google-badge-circle .reviews {
    font-size: 0.9em;
    color: var(--dark);
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .google-badge-circle {
        padding: 25px;
    }

    .google-badge-circle .google-logo {
        width: 55px;
    }

    .google-badge-circle .rating {
        font-size: 1.5em;
    }

    .google-badge-circle .stars {
        font-size: 1.1em;
    }

    .google-badge-circle .reviews {
        font-size: 0.85em;
    }
}

/* Coverage Area */
.coverage-area {
    padding: 80px 0;
    background: var(--light-gray);
}

.cities-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    list-style: none;
    text-align: center;
}

.cities-list li {
    padding: 10px;
    background: var(--white);
    border-radius: 5px;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--section-light) 0%, var(--white) 100%);
    padding: 80px 0;
}

.contact-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.contact-card-large {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.15);
    transition: all 0.3s ease;
    max-width: 500px;
    width: 100%;
}

.contact-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.2);
}

.card-content {
    text-align: center;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    animation: pulse 2s infinite;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.icon-circle:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.icon-circle i {
    font-size: 2.5em;
    color: var(--white);
}

.contact-card-large h3 {
    color: var(--text-color);
    font-size: 1.6em;
    margin-bottom: 20px;
    font-weight: 600;
}

.phone-number {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 2.2em;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--secondary-color);
}

.availability {
    color: var(--text-color);
    font-size: 1.1em;
    margin-bottom: 25px;
    opacity: 0.8;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-badge:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 170, 85, 0.3);
}

.emergency-badge i {
    font-size: 1.2em;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(0, 102, 204, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0);
    }
}

@media (max-width: 768px) {
    .contact-card-large {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
    }

    .icon-circle i {
        font-size: 2em;
    }

    .contact-card-large h3 {
        font-size: 1.4em;
    }

    .phone-number {
        font-size: 1.8em;
    }

    .emergency-badge {
        padding: 10px 20px;
        font-size: 1em;
    }
}

/* Footer */
.footer {
    padding: 60px 0 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-color);
    border-top: 1px solid rgba(0, 102, 204, 0.1);
}

.footer .logo-text {
    margin-bottom: 20px;
    align-items: center;
    text-align: center;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer .logo-text::after {
    bottom: 18px;
}

.footer .logo-main {
    font-size: 1.6em;
}

.footer .logo-tagline {
    font-size: 0.8em;
}

.footer-info p {
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 15px;
    font-size: 0.95em;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info img {
    margin-bottom: 20px;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
    font-size: 0.95em;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    opacity: 1;
    padding-left: 5px;
}

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

.footer-links a:hover {
    color: var(--primary-color);
}

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

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 10px; }
.mobile-menu-btn span:nth-child(3) { top: 20px; }

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 80px 20px 20px;
        flex-direction: column;
        transition: 0.3s ease-in-out;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    .nav-menu.active {
        right: 0;
        transform: translateX(0);
    }

    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    body.menu-open.active::after {
        opacity: 1;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px 15px 0;
        font-size: 1.1em;
        color: var(--text-color);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateX(20px);
        text-align: right;
    }

    .nav-menu.active a {
        opacity: 1;
        transform: translateX(0);
        transition: all 0.4s ease;
    }

    .nav-menu a:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu a:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu a:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu a:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu a:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu a:nth-child(6) { transition-delay: 0.35s; }

    .nav-menu a:hover {
        color: var(--primary-color);
    }

    .nav-menu a:hover::after {
        width: 100%;
    }

    .nav-menu a.active {
        color: var(--primary-color);
        font-weight: 700;
    }

    .nav-menu a.active::after {
        width: 100%;
        background: var(--primary-color);
    }

    .header-container {
        position: relative;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 75%;
        padding: 70px 20px 20px;
    }
}

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

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
        margin-top: 30px;
    }

    .hero-cta {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .header {
        padding: 10px 0;
    }

    .header-container {
        height: 60px;
    }

    .logo img {
        width: 150px;
        height: auto;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav-menu a {
        display: block;
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-content h1 {
        font-size: 1.8em;
    }

    .hero-content h2 {
        font-size: 1.3em;
    }

    .section-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }

    .services-grid,
    .about-values,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 20px;
    }

    .service-image {
        height: 180px;
    }

    .testimonial {
        padding: 20px;
    }

    .contact-form form {
        gap: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 15px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .faq-question h3 {
        font-size: 1em;
    }

    .seo-text {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .btn-large {
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 1.5em;
    }

    .about-image img {
        height: 200px;
        object-fit: cover;
    }

    .contact-card {
        padding: 15px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 102, 204, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1em;
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

/* SEO Content */
.seo-content {
    padding: 60px 0;
    background: var(--white);
}

.seo-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.seo-text h2 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

.seo-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-phone {
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-phone i {
    font-size: 24px;
    animation: pulse 2s infinite;
}

.floating-phone:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: var(--secondary-color);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-phone {
        width: 55px;
        height: 55px;
    }

    .floating-phone i {
        font-size: 22px;
    }
}

/* Enhanced Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"] {
    transform: translateX(-20px);
}

[data-aos="fade-left"] {
    transform: translateX(20px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Assurances Section */
.assurances {
    padding: 80px 0 30px;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 150px;
    margin: auto;
    overflow: hidden;
    background: var(--white);
}

.slide-track {
    display: flex;
    width: calc(250px * 10);
    animation: scroll 30s linear infinite;
    align-items: center;
    height: 100%;
}

.slide {
    width: 250px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.slide img {
    width: auto;
    max-width: 180px;
    height: auto;
    max-height: 130px;
    object-fit: contain;
}

.slide:hover img {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 5));
    }
}

/* Pause animation on hover */
.slider:hover .slide-track {
    animation-play-state: paused;
}

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

    .slider {
        height: 120px;
    }

    .slide {
        width: 200px;
        padding: 10px 20px;
        height: 120px;
    }

    .slide img {
        max-width: 140px;
        max-height: 100px;
    }

    .slide-track {
        width: calc(200px * 10);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 5));
        }
    }
}

/* Variables des couleurs de sections */
:root {
    --section-light: #f8faff;
    --section-grey: #f5f7fa;
    --title-accent: var(--primary-color);
    --separator-color: rgba(0, 170, 85, 0.1);
}

/* Style commun des sections */
section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

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

section.bg-grey {
    background-color: var(--section-grey);
}

/* Séparateurs de sections */
.section-separator {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.section-separator.top {
    top: -1px;
}

.section-separator.bottom {
    bottom: -1px;
    transform: rotate(0);
}

.section-separator svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
    fill: var(--white);
}

/* Styles des titres de section */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    width: 100%;
}

.section-title {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: var(--title-accent);
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2em;
    color: var(--text-color);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
    opacity: 0.85;
    text-align: center;
}

/* Animation des éléments au scroll */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2em;
        width: 100%;
        text-align: center;
        margin: 0 auto 20px;
        padding: 0 15px;
    }

    .section-subtitle {
        font-size: 1.1em;
        padding: 0 20px;
        text-align: center;
    }

    .section-separator {
        height: 60px;
    }

    .section-separator svg {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .testimonials .section-title,
    .coverage-area .section-title {
        text-align: center !important;
        width: 100% !important;
        display: block;
    }
}

/* Zone d'intervention */
.zone-intervention {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.zone-content {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.zone-map {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.zone-map .fa-map-marker-alt {
    font-size: 3em;
    color: #dc3545;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(220, 53, 69, 0.3));
}

.zone-map h3 {
    font-size: 2em;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.and-text {
    color: #dc3545;
    font-weight: 300;
}

.region-badge {
    background: #dc3545;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.6em;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.intervention-text {
    color: var(--dark);
    font-size: 1.1em;
    margin: 0 auto 30px;
    line-height: 1.6;
    max-width: 500px;
}

.zone-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero .feature i {
    font-size: 1.5em;
    color: var(--secondary-color);
}

.highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.hero .feature span {
    color: var(--white);
    font-size: 0.9em;
    font-weight: 500;
    text-align: center;
}

.zone-intervention .feature span {
    color: #333333;
    font-size: 0.75em;
    font-weight: 500;
    text-align: center;
    display: block;
    line-height: 1.2;
    padding: 0 5px;
}

@media (max-width: 768px) {
    .zone-map {
        padding: 30px 20px;
    }

    .zone-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .zone-map h3 {
        flex-direction: column;
        gap: 10px;
    }
}
