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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header et Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
    margin-left: -10px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease;
}

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

.logo-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}



.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.55rem 0.9rem;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    position: relative;
    white-space: nowrap;
    background: transparent;
    border: none;
    box-shadow: none;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border: none;
    box-shadow: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0066FF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: none;
    display: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    display: none;
}

.nav-item.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.dropdown-menu a {
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 2rem;
    border-radius: 0;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.nav-contact {
    margin-left: auto;
    flex-shrink: 0;
}

.phone-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.55rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    white-space: nowrap;
}

.phone-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 9999;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger .bar,
.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Responsive Design - Breakpoint plus tôt */
@media (max-width: 1100px) {
    .nav-container {
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-link {
        padding: 0.45rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .phone-btn {
        padding: 0.45rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 950px) {
    .nav-container {
        gap: 0.8rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.35rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .phone-btn {
        padding: 0.35rem 0.8rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 850px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        transition: all 0.4s ease;
        z-index: 999;
        gap: 1rem;
        height: auto;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        opacity: 0;
        visibility: hidden;
        display: flex;
    }
    
    .nav-menu.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        transition-delay: 0.1s;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-item:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.15);
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 1rem;
        border-radius: 20px;
        padding: 1rem;
    }
    
    .dropdown-menu a {
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 1rem;
        padding: 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        margin-bottom: 0.5rem;
        border-radius: 15px;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        transform: translateX(10px);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    .dropdown-menu li:last-child a {
        margin-bottom: 0;
    }
    
    .nav-contact {
        margin-left: 0;
        margin-top: 1.5rem;
        width: 100%;
        padding-top: 1rem;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        transition-delay: 0.6s;
    }
    
    .nav-menu.active .nav-contact {
        opacity: 1;
        transform: translateY(0);
    }
    
    .phone-btn {
        width: 100%;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        font-size: 1.1rem;
        padding: 1.2rem 2rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 25px;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .phone-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.6);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 480px) {
    .nav-container {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .logo-line {
        font-size: 0.8rem;
    }
    
    .nav-link {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .phone-btn {
        padding: 0.3rem 0.7rem;
        font-size: 0.7rem;
    }
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-plumber-working.jpg') center center/cover;
    opacity: 0.9;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: white;
}

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

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

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

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-buttons .btn-primary {
    background: #0066FF;
    color: white;
    border: 2px solid #0066FF;
}

.hero-buttons .btn-primary:hover {
    background: #0052CC;
    border-color: #0052CC;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.4);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.hero-image {
    position: relative;
    z-index: 3;
}

.hero-image-container {
    position: relative;
}

.hero-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.hero-main-image:hover .hero-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.overlay-content i {
    font-size: 2rem;
    color: #0066FF;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    color: #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0066FF;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0066FF, #0052CC);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section - Fixed positioning */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-top: 0;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066FF, #0052CC);
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066FF, #0052CC);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

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

.service-card:hover::after {
    width: 300px;
    height: 300px;
}

.service-card:hover {
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    transform: translateY(-8px) scale(1.02);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 36px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon::before {
    transform: translateX(100%);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.service-list li {
    padding: 0.75rem 0;
    color: #666;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066FF;
    font-weight: bold;
    font-size: 1.1rem;
    background: rgba(0, 102, 255, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.service-list li:hover {
    color: #0066FF;
    transform: translateX(0.5rem);
}

.service-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-actions .btn {
    transition: all 0.3s ease;
}

.service-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066FF, #0052CC);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-lead {
    font-size: 1.2rem;
    color: #0066FF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.about-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.feature i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.feature h4 {
    color: #333;
    margin-bottom: 0.25rem;
}

.feature p {
    color: #666;
    margin: 0;
}

/* About Image Styles */
.about-image-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-main-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.2);
    border: 3px solid rgba(0, 102, 255, 0.1);
}

.about-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-main-image:hover .about-img {
    transform: scale(1.05);
}

.about-secondary-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-small-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.15);
    border: 2px solid rgba(0, 102, 255, 0.1);
}

.about-small-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-small-image:hover .about-small-img {
    transform: scale(1.1);
}

/* Realizations Section */
.realizations {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.realizations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066FF, #0052CC);
}

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

.realization-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.realization-image {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0066FF, #0052CC);
}

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

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

.realization-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.8), rgba(0, 82, 204, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 60px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.realization-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #333;
}

.realization-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066FF, #0052CC);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-info {
    display: grid;
    gap: 2rem;
}

.booking-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066FF, #0052CC);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.booking-card:hover {
    border-color: rgba(0, 102, 255, 0.2);
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.booking-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 24px;
}

.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.booking-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.booking-benefits {
    list-style: none;
}

.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.booking-benefits li i {
    color: #0066FF;
    font-size: 14px;
}

.time-slots {
    display: grid;
    gap: 1rem;
}

.time-slot {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-radius: 8px;
    border-left: 4px solid #0066FF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-slot:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.time-slot i {
    color: #0066FF;
    font-size: 18px;
    width: 20px;
}

.time-slot span {
    color: #333;
    font-weight: 500;
}

.calendly-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s ease;
}

.calendly-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066FF, #0052CC);
    z-index: 1;
}

.calendly-container:hover {
    border-color: rgba(0, 102, 255, 0.2);
}

.calendly-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.calendly-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.calendly-header p {
    color: #666;
}

.calendly-inline-widget {
    border: none;
    border-radius: 0 0 16px 16px;
    min-height: 700px;
}

.calendly-wrapper {
    position: relative;
    min-height: 700px;
}

.calendly-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.calendly-fallback.hidden {
    display: none;
}

.fallback-content {
    text-align: center;
    padding: 2rem;
    max-width: 400px;
}

.fallback-content i {
    font-size: 3rem;
    color: #0066FF;
    margin-bottom: 1rem;
}

.fallback-content h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.fallback-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.fallback-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

/* Amélioration de l'affichage Calendly */
.calendly-inline-widget iframe {
    border-radius: 0 0 16px 16px !important;
}

/* Responsive Calendly */
@media (max-width: 768px) {
    .calendly-container {
        margin: 0 -20px;
        border-radius: 0;
    }
    
    .calendly-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .calendly-inline-widget {
        min-width: 100% !important;
        height: 600px !important;
    }
    
    .calendly-wrapper {
        min-height: 600px;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066FF, #0052CC);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.contact-details h4 {
    color: #333;
    margin-bottom: 0.25rem;
}

.contact-details a,
.contact-details p {
    color: #666;
    text-decoration: none;
}

.contact-details a:hover {
    color: #0066FF;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066FF, #0052CC);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066FF;
}

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

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #0066FF;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0066FF;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-contact {
        display: none;
    }

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

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

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

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

    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

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

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

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

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

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

.service-card,
.realization-card,
.contact-form {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading animation for form submission */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0066FF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 
/* Packs Pricing Section */
.pricing {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.price-card {
    background: white;
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066FF, #0052CC);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.3);
}

.price-card.featured {
    border: 2px solid #0066FF;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.2);
}

.price-card.featured::before {
    transform: scaleX(1);
}

.price-card.featured:hover {
    transform: translateY(-12px);
}

.price-badge {
    display: inline-block;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #0066FF;
    margin-bottom: 0.5rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 102, 255, 0.1);
}

.price-includes {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
    padding: 0 1rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.price-features li {
    padding: 0.75rem 0;
    margin: 0;
    position: relative;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: #0066FF;
    font-weight: bold;
    font-size: 1.2rem;
}

.price-features li:hover {
    color: #0066FF;
    transform: translateX(0.5rem);
}

.price-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
}

.price-actions .btn {
    flex: 1;
    min-width: 140px;
    transition: all 0.3s ease;
}

.price-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

/* Responsive adjustments for pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .price-card {
        padding: 2rem;
    }
    
    .price-actions {
        flex-direction: column;
    }
    
    .price-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .price-card {
        padding: 1.5rem;
    }
    
    .price-badge {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

/* Responsive Enhancements - Clean Version */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .price-actions {
        flex-direction: column;
    }
    
    .price-actions .btn {
        width: 100%;
        text-align: center;
    }
}
/* Clean responsive styles */
@media (max-width: 768px) {
    .services-grid { 
        grid-template-columns: 1fr; 
    }
    .pricing-grid { 
        grid-template-columns: 1fr; 
    }
    .price-actions { 
        flex-direction: column; 
    }
    
    .service-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .service-actions .btn {
        width: 100%;
        max-width: 280px;
        height: 50px;
    }
}

.nav-bar { 
    position: relative; 
}

.logo { 
    z-index: 60; 
}

@media (max-width: 420px) {
  .container { width: 92%; }
  .hero-title { font-size: 26px; }
}

/* Service Actions */
.service-actions {
    margin-top: auto;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding-top: 2rem;
}

.service-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    width: 160px;
    height: 50px;
    flex-shrink: 0;
    box-sizing: border-box;
    margin: 0;
}

.service-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-actions .btn:hover::before {
    transform: translateX(100%);
}

.service-actions .btn-primary {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    border: 2px solid #0066FF;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    line-height: 1;
    vertical-align: middle;
}

.service-actions .btn-primary:hover {
    background: linear-gradient(135deg, #0052CC, #004099);
    border-color: #0052CC;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.service-actions .btn-outline {
    background: transparent;
    color: #0066FF;
    border: 2px solid #0066FF;
    position: relative;
    line-height: 1;
    vertical-align: middle;
}

.service-actions .btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0066FF;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
    z-index: -1;
}

.service-actions .btn-outline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.service-actions .btn-outline:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

/* Price Actions - Improved Design */
.price-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
}

/* Contact Form Styles */
.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066FF;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}



.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.form-actions .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 220px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: white;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.form-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.4);
    background: linear-gradient(135deg, #0052CC 0%, #004099 100%);
}

.form-actions .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

.form-actions .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.btn-loading {
    display: none;
}

.form-success,
.form-error {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.form-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-success i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-error i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-actions .btn {
        width: 100%;
        min-width: auto;
    }
}



.price-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    justify-content: center;
}

.price-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.price-actions .btn:hover::before {
    transform: translateX(100%);
}

.price-actions .btn-primary {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    border: 2px solid #0066FF;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.price-actions .btn-primary:hover {
    background: linear-gradient(135deg, #0052CC, #004099);
    border-color: #0052CC;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.price-actions .btn-outline {
    background: transparent;
    color: #0066FF;
    border: 2px solid #0066FF;
    position: relative;
}

.price-actions .btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0066FF;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
    z-index: -1;
}

.price-actions .btn-outline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.price-actions .btn-outline:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

/* Assurance Section */
.assurance {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

.assurance-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

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

.assurance-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.assurance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.15);
}

.assurance-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066FF, #0052CC);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 1.5rem;
}

.assurance-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.assurance-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.assurance-benefits {
    list-style: none;
}

.assurance-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #555;
}

.assurance-benefits i {
    color: #0066FF;
    font-size: 14px;
}

.assurance-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.assurance-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #0066FF;
}

.assurance-step i {
    width: 30px;
    height: 30px;
    background: #0066FF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

/* Section assurance simplifiée - partenaires supprimés */

/* Footer Logo Styles */
.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.footer-logo .logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive adjustments for assurance section */
@media (max-width: 768px) {
    .assurance-info {
        grid-template-columns: 1fr;
    }
    
    .assurance-card {
        padding: 1.5rem;
    }
}

/* Responsive Design Improvements */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        margin-right: 2.5rem;
    }
    
    .nav-menu {
        gap: 0.75rem;
    }
    
    .nav-link {
        padding: 0.45rem 0.65rem;
        font-size: 0.8rem;
    }
    
    .phone-btn {
        padding: 0.45rem 0.85rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        gap: 0;
    }
    
    .logo {
        margin-right: 2rem;
    }
    
    .nav-menu {
        gap: 0.6rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .phone-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .logo {
        margin-right: 1.5rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .phone-btn {
        padding: 0.35rem 0.65rem;
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        gap: 0;
        padding: 0 15px;
    }
    
    .logo {
        margin-right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 999;
        gap: 1rem;
        justify-content: flex-start;
        flex-grow: 0;
        height: auto;
        max-height: 80vh;
        overflow-y: auto;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        transition-delay: 0.1s;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-item:nth-child(4) { transition-delay: 0.4s; }
    .nav-item:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.15);
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 1rem;
        border-radius: 20px;
        padding: 1rem;
    }
    
    .dropdown-menu a {
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 1rem;
        padding: 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        margin-bottom: 0.5rem;
        border-radius: 15px;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        transform: translateX(10px);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    .dropdown-menu li:last-child a {
        margin-bottom: 0;
    }
    
    .nav-contact {
        margin-left: 0;
        margin-top: 1.5rem;
        width: 100%;
        padding-top: 1rem;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        transition-delay: 0.6s;
    }
    
    .nav-menu.active .nav-contact {
        opacity: 1;
        transform: translateY(0);
    }
    
    .phone-btn {
        width: 100%;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        font-size: 1.1rem;
        padding: 1.2rem 2rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 25px;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .phone-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.6);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .logo-line {
        font-size: 0.8rem;
    }
    
    .nav-link {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .phone-btn {
        padding: 0.3rem 0.7rem;
        font-size: 0.7rem;
    }
}

/* Styles pour la page "En savoir plus" */
.en-savoir-plus-section {
    padding: 4rem 0;
    background: #f8f9fa;
    min-height: 100vh;
}

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

.en-savoir-plus-section .section-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.en-savoir-plus-section .section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.back-button-container {
    margin-bottom: 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0066FF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    background: rgba(0, 102, 255, 0.1);
    border: 2px solid rgba(0, 102, 255, 0.2);
}

.back-button:hover {
    color: #0052CC;
    background: rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateX(-5px);
}

.pack-detail-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #0066FF;
    transition: all 0.3s ease;
}

.pack-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pack-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef;
}

.pack-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.pack-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066FF;
    background: linear-gradient(135deg, #e7f3ff 0%, #d1e9ff 100%);
    padding: 1rem 2rem;
    border-radius: 30px;
    border: 2px solid rgba(0, 102, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.1);
}

.pack-description {
    margin-bottom: 2rem;
}

.pack-description p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.pack-services {
    margin-bottom: 2rem;
}

.pack-services h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pack-services h3::before {
    content: "🔧";
    font-size: 1.2rem;
}

.pack-services ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.pack-services li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #28a745;
    transition: all 0.3s ease;
}

.pack-services li:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.pack-services li i {
    color: #28a745;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pack-recommendations {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 2px solid #e9ecef;
}

.pack-recommendations h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pack-recommendations h3::before {
    content: "💡";
    font-size: 1.1rem;
}

.pack-recommendations p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

.pack-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pack-actions .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 180px;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pack-actions .btn-primary {
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.pack-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.4);
    background: linear-gradient(135deg, #0052CC 0%, #004099 100%);
}

.pack-actions .btn-outline {
    background: transparent;
    color: #0066FF;
    border: 2px solid #0066FF;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1);
}

.pack-actions .btn-outline:hover {
    background: #0066FF;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.important-info {
    background: linear-gradient(135deg, #e7f3ff 0%, #d1e9ff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 102, 255, 0.2);
    margin-top: 3rem;
    text-align: center;
}

.important-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0066FF;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.important-info p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive pour la page "En savoir plus" */
@media (max-width: 768px) {
    .en-savoir-plus-section {
        padding: 2rem 0;
    }
    
    .en-savoir-plus-section .section-header h1 {
        font-size: 2rem;
    }
    
    .pack-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .pack-price {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
    }
    
    .pack-services ul {
        grid-template-columns: 1fr;
    }
    
    .pack-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .pack-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .important-info {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .pack-detail-card {
        padding: 1.5rem;
    }
    
    .pack-header h2 {
        font-size: 1.5rem;
    }
    
    .pack-price {
        font-size: 1.3rem;
        padding: 0.6rem 1.2rem;
    }
    
    .pack-services li {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}
