:root {
    --primary-color: #0056b3;
    --secondary-color: #00396e;
    --accent-color: #00b4d8;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --transition-speed: 0.3s;
    --hover-scale: 1.05;
    --animation-timing: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

header {
    position: sticky !important;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: transform 0.3s ease;
}

header.hide {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}
.logo img{
    width: 65px;
    height: 65px;
    filter: drop-shadow(0 2px 4px rgba(0, 180, 216, 0.3));
    margin-left: -30px !important;
}

.logo i {
    font-size: 1.6rem;
    color: var(--accent-color);
    filter: drop-shadow(0 2px 4px rgba(0, 180, 216, 0.3));
    animation: float 3s ease-in-out infinite;
}

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

nav a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.4rem 0.8rem;
    font-size: 0.95rem;
    border-radius: 20px;
}

nav a i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
    background: rgba(0, 86, 179, 0.08);
    transform: translateY(-2px);
}

nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

nav a:hover i {
    transform: scale(1.2);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.emergency-contact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
}

.emergency-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
}

.emergency-contact i {
    font-size: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info .label {
    font-size: 0.7rem;
    opacity: 0.95;
}

.contact-info .phone {
    font-size: 0.9rem;
    font-weight: 600;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 3px;
}

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

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.blink {
    animation: blink 2s infinite;
}

@media (max-width: 1024px) {
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    nav a {
        padding: 1rem;
        border-radius: 8px;
    }

    nav a:hover {
        background: rgba(0, 86, 179, 0.1);
    }

    .mobile-menu {
        display: flex;
    }

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

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

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

    .emergency-contact {
        display: none;
    }
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.8s ease-in-out;
    display: flex;
    align-items: center;
    animation: slideOut 0.8s ease-in-out forwards;
    backdrop-filter: blur(5px);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 57, 110, 0.8), rgba(0, 86, 179, 0.8));
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    animation: slideIn 0.8s ease-in-out forwards;
}

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
}

.hero-slide {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    backdrop-filter: blur(8px);
}

.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 0;
    width: 100%;
    max-width: none;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.hero-text-content {
    position: relative;
    width: 100%;
    text-align: center;    
    background: none !important;
    backdrop-filter: none !important;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    width: fit-content;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out;
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
}

.hero-slide.active .hero-badge {
    transform: translateY(0);
    opacity: 1;
}

.hero-badge i {
    font-size: 1.2rem;
    color: #FFD700;
    font-size: 1rem;
}

.hero-badge span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.hero-content h1 {
    width: 100%;
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 0 auto 1.2rem;
    padding: 0 1rem;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.3s;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero-slide.active .hero-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    width: 100%;
    font-size: 1.6rem;
    margin: 0 auto 1.2rem;
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.5s;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.hero-slide.active .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.hero-description {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.7s;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero-slide.active .hero-description {
    opacity: 1;
    transform: translateY(0);
}

.hero-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.9s;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.hero-slide.active .hero-cta {
    opacity: 1;
    transform: translateY(0);
}

.cta-button {
    min-width: 200px;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
    transform: translateY(0);
    color: white;
    text-decoration: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button i {
    font-size: 1.2rem;
}

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

.cta-button.secondary:hover {
    background: var(--accent-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.2);
}

.cta-button.secondary:hover {
    background: var(--accent-color);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.hero-features {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 2rem;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 1.1s;
    margin-top: 2rem;
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 1rem;
}

.hero-slide.active .hero-features {
    opacity: 1;
    transform: translateY(0);
}

.feature {
    flex: 1;
    max-width: 300px;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    padding: 0.8rem;
    max-width: 200px;
    min-width: 150px;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.feature i {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.feature span {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-features {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .feature {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-features {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .feature {
        min-width: calc(33.333% - 2rem);
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 80px 1rem;
    }

    .hero-text-content {
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button {
        width: 100%;
        min-width: auto;
        padding: 0.8rem 1.5rem;
    }

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

    .hero-features {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

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

    .feature {
        padding: 0.6rem;
        min-width: 120px;
    }

    .header-content {
        padding: 0.5rem 0;
    }

    nav {
        top: 65px;
    }

    nav a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-nav:hover::before {
    opacity: 1;
}

.hero-nav i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-nav:hover i {
    transform: scale(1.2);
}

.hero-nav:hover {
    background: var(--primary-color);
}

.hero-nav.prev {
    left: 20px;
}

.hero-nav.next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.hero-dot:hover::before,
.hero-dot.active::before {
    transform: scale(1);
}

.hero-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.services {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e9ecef 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIxIiBmaWxsPSIjMDA1NmIzIiBmaWxsLW9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==');
    opacity: 0.5;
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

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

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0.5rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s var(--animation-timing);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 86, 179, 0.2);
}

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

.service-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 1.2rem;
    line-height: 1.5;
    opacity: 0.9;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--accent-color);
    font-size: 1rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 1.5px solid var(--primary-color);
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-btn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

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

.service-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .services {
        padding: 3rem 0;
    }

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

    .section-subtitle {
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.5rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .service-icon i {
        font-size: 1.2rem;
    }
}

.process {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.process .container {
    position: relative;
    z-index: 2;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s var(--animation-timing);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s var(--animation-timing) forwards;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.step-icon {
    position: relative;
    min-width: 60px;
}

.step-icon i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
}

.process-step:hover .step-icon i {
    transform: scale(1.05);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.step-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-color);
    font-size: 0.85rem;
}

.step-features li i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .process {
        padding: 3rem 0;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .step-features {
        grid-template-columns: 1fr;
    }

    .step-features li {
        justify-content: center;
    }

    .step-icon {
        min-width: auto;
    }

    .step-icon i {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

.experience {
    padding: 5rem 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.why-us {
    padding: 5rem 0;
    background: var(--light-bg);
}

.why-us .section-title {
    text-align: left;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.why-us .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

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

.benefit-card {
    text-align: left;
    padding: 2rem;
    transition: all var(--transition-speed) var(--animation-timing);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
    transition: transform var(--transition-speed) var(--animation-timing);
    vertical-align: middle;
    width: 1.7rem; /* Largeur fixe pour assurer l'alignement */
    display: inline-block;
    text-align: center;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 0;
}

.benefit-card p {
    color: var(--text-color);
    opacity: 0.9;
    margin-left: 2.2rem; /* Alignement avec le début du texte du titre (après l'icône) */
    position: relative;
}

.benefit-card:hover i {
    transform: scale(1.2);
}

.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 2rem auto;
    position: relative;
    height: 300px;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px) scale(0.9);
    transition: all 0.6s var(--animation-timing);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text p {
    font-style: italic;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    line-height: 1;
}

.testimonial-text::before {
    top: -20px;
    left: -15px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.author-info span {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.nav-dot:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #001f3f 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-info h3 i {
    color: var(--accent-color);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icons a {
    color: var(--white);
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    transform: translateY(-5px);
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

.footer-contact h4, .footer-links h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-contact h4::after, .footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links ul li a::before {
    content: '→';
    color: var(--accent-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-contact, .footer-links {
        text-align: center;
    }
    
    .footer-contact h4::after, .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-links ul li a {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: all var(--transition-speed) var(--animation-timing);
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: block;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
        transition: transform var(--transition-speed) var(--animation-timing);
    }

    .nav-toggle:hover {
        transform: scale(1.1);
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 35px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 2px 2px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-button .tooltip {
    position: absolute;
    right: 80px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateX(20px);
}

.whatsapp-button:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button .tooltip {
        display: none;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

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

.animate-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--animation-timing);
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Form Animations */
.form-shake {
    animation: shake 0.5s var(--animation-timing);
}

.form-success {
    animation: success-pulse 0.5s var(--animation-timing);
}

html {
    scroll-behavior: smooth;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.9);
    }
}

.contact-hero {
    height: 70vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 57, 110, 0.8), rgba(0, 86, 179, 0.8)), url('../img/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-info-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

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

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s var(--animation-timing);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-link i {
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: translateX(5px);
}

.contact-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.form-content {
    flex: 1;
}

.contact-form {
    margin-top: 2rem;
}

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

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    pointer-events: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(0, 86, 179, 0.1);
    border-radius: 10px;
    background: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

.form-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-image img {
    max-width: 100%;
    height: auto;
}




.map-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.contact-form.submitting .submit-btn {
    pointer-events: none;
    opacity: 0.7;
}

.contact-form.submitting .submit-btn::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-right-color: transparent;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
    position: absolute;
    right: 1.5rem;
}

.contact-form.submitted {
    opacity: 0.5;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 992px) {
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
    }

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

    .contact-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    }

    .input-group i {
        font-size: 1rem;
        left: 0.8rem;
    }

    .submit-btn {
        padding: 1rem;
    }
}

.contact-hero {
    height: 70vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 57, 110, 0.9) 0%,
        rgba(0, 86, 179, 0.85) 100%
    );
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23ffffff" d="M0,50 C150,100 350,0 500,50 C650,100 850,0 1000,50 C1150,100 1350,0 1440,50 L1440,100 L0,100 Z"></path></svg>') no-repeat;
    background-size: cover;
    z-index: 2;
}

.hero-shape {
    position: absolute;
    top: 50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    opacity: 0.1;
    transform: translateY(-50%);
    animation: pulse 4s ease-in-out infinite;
}

.animated-badge {
    animation: slideDown 0.8s ease-out forwards;
}

.animated-title {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.3s forwards;
}

.animated-subtitle {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.5s forwards;
}

.animated-description {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.7s forwards;
}

.contact-features {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.9s forwards;
}

.contact-info-section {
    position: relative;
    padding: 6rem 0;
    margin-top: -50px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    z-index: 3;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    color: white;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.header-badge i {
    font-size: 1.2rem;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--animation-timing);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s var(--animation-timing) forwards;
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.4s;
}

.card-icon {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
}

.icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 2s ease-out infinite;
}

.card-icon i {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto;
    z-index: 1;
}

.card-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.card-features li i {
    color: var(--accent-color);
    font-size: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.link-arrow {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.link-arrow i {
    color: white;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.contact-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-link:hover .link-arrow {
    background: white;
}

.contact-link:hover .link-arrow i {
    color: var(--primary-color);
    transform: translateX(3px);
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    margin-left: -2.3rem !important;
    top: 25px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 86, 179, 0.1);
    z-index: 0;
}

.progress-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid rgba(0, 86, 179, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.progress-step span {
    font-size: 0.9rem;
    color: var(--text-color);
}

@keyframes ringPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.form-control {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 3rem;
    border: 2px solid rgba(0, 86, 179, 0.1);
    border-radius: 15px;
    background: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.1);
    outline: none;
    transform: translateY(-2px);
}

.input-group i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--primary-color);
    opacity: 0.7;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-group:focus-within i {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.form-label {
    position: absolute;
    left: 3rem;
    top: 1.2rem;
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
    transform: translateY(-2.5rem) scale(0.9);
    opacity: 1;
    color: var(--primary-color);
}

.submit-btn {
    position: relative;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.input-group.invalid .form-control {
    border-color: #dc3545;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.1);
}

.input-group.invalid i {
    color: #dc3545;
}

.input-group.valid .form-control {
    border-color: #28a745;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.1);
}

.input-group.valid i {
    color: #28a745;
}

.validation-message {
    position: absolute;
    bottom: -20px;
    left: 1rem;
    font-size: 0.85rem;
    color: #dc3545;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.input-group.invalid .validation-message {
    opacity: 1;
    transform: translateY(0);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230056b3'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    padding-right: 3rem;
}

select.form-control:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300b4d8'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
}

.form-control::-webkit-scrollbar {
    width: 8px;
}

.form-control::-webkit-scrollbar-track {
    background: rgba(0, 86, 179, 0.05);
    border-radius: 4px;
}

.form-control::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.form-control::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

.hero-map {
    flex: 1;
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideIn 1s var(--animation-timing) forwards;
}

.google-map {
    width: 100%;
    height: 100%;
    border: none;
}

.animated-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
    transform: translateY(20px);
    opacity: 0;
    animation: formSlideUp 0.8s var(--animation-timing) forwards;
}

.input-group {
    position: relative;
    margin-bottom: 2rem;
}

.animate-input {
    width: 100%;
    padding: 0.8rem 0;
    font-size: 1rem;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    transition: all 0.3s;
}

.animate-label {
    position: absolute;
    left: 0;
    top: 0.8rem;
    font-size: 1rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s var(--animation-timing);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s var(--animation-timing);
}

.animate-input:focus ~ .input-line,
.animate-input:valid ~ .input-line {
    width: 100%;
}

.animate-input:focus ~ .animate-label,
.animate-input:valid ~ .animate-label {
    top: -1.2rem;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateX(20px);
}

.form-step.active {
    display: block;
    animation: stepIn 0.5s var(--animation-timing) forwards;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-secondary {
    background: #f0f0f0;
    color: var(--text-color);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@keyframes formSlideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes stepIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 2.5rem;
}

.area-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) var(--animation-timing);
    text-align: center;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.area-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.area-icon i {
    color: var(--white);
    font-size: 28px;
}

.area-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.area-card p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

/* Montpellier Service Area Styling */
.montpellier-area {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all var(--transition-speed) var(--animation-timing);
    max-width: 800px;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
}

.montpellier-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.montpellier-area:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.montpellier-area h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 15px 0;
    font-weight: 700;
}

.area-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition-speed) var(--animation-timing);
}

.area-icon-large i {
    color: var(--white);
    font-size: 40px;
}

.montpellier-area:hover .area-icon-large {
    transform: scale(1.1);
}

.area-description {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.area-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.area-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.area-feature i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 16px;
}

.area-feature span {
    color: var(--text-color);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .montpellier-area {
        padding: 30px 20px;
    }
    
    .area-details {
        grid-template-columns: 1fr;
    }
}

/* Réalisations Section */
.realisations {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.realisation-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) var(--animation-timing);
}

.realisation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.realisation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--animation-timing);
}

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

.realisation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 86, 179, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-speed) var(--animation-timing);
}

.realisation-card:hover .realisation-overlay {
    opacity: 1;
}

.view-project {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transform: translateY(20px);
    transition: all 0.4s var(--animation-timing);
}

.realisation-card:hover .view-project {
    transform: translateY(0);
}

.view-project:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.realisation-content {
    padding: 25px;
}

.realisation-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.realisation-location {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.realisation-location i {
    margin-right: 5px;
}

.realisation-description {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.realisation-cta {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .realisations-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 576px) {
    .realisations-grid {
        grid-template-columns: 1fr;
    }
}
