/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-logo i {
    margin-right: 10px;
    color: #3498db;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #3498db;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    flex: 1;
    color: white;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero-image-container {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.hero-image {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 300px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #3498db;
    transform: translateY(-2px);
}

/* Section Titres */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
    z-index: 2;
}

/* Galerie Section */
.galerie {
    padding: 100px 0;
    background: url('../images/cheminentré.jpg') center/cover;
    position: relative;
}

.galerie::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 249, 250, 0.85);
    z-index: 1;
}

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

.galerie-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 1/1;
}

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

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.galerie-item:hover img {
    transform: scale(1.1);
}

.galerie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galerie-item:hover .galerie-overlay {
    transform: translateY(0);
}

.galerie-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Presentation Section */
.presentation {
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/vudubungalow.jpg') center/cover;
    position: relative;
    color: white;
    text-align: center;
    padding: 0 20px;
    padding-top: 80px;
}

.presentation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.presentation .container {
    position: relative;
    z-index: 2;
    margin: auto;
}

.presentation .section-title {
    color: white;
    margin-bottom: 4rem;
}

.presentation-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.presentation-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
}

.presentation-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.2rem;
    opacity: 0.9;
}

.presentation-carousel {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 3px solid #FFD700;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 2rem 1rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 3;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.3);
}

/* Galerie Full Page */
.galerie-full {
    padding: 120px 0 100px;
    background: url('../images/cheminentré.jpg') center/cover;
    position: relative;
}

.galerie-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 249, 250, 0.85);
    z-index: 1;
}

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

.galerie-full .section-title {
    color: #2c3e50;
    margin-bottom: 4rem;
}

/* Localisation Section */
.localisation {
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/Anse-figuier.jpg') center/cover no-repeat;
    position: relative;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.localisation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.localisation .section-title {
    color: white;
    margin-bottom: 4rem;
}

.localisation-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.localisation-left {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
}

.localisation-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
}

.localisation-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #FFD700;
    font-size: 1.5rem;
}

.localisation-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.localisation-text ul {
    list-style: none;
    padding: 0;
}

.localisation-text li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.localisation-text li i {
    margin-right: 1rem;
    color: #FFD700;
    font-size: 1.2rem;
}

.localisation-image {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
}

.localisation-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid #FFD700;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.localisation-map {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    position: relative;
}

.localisation-map img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid #FFD700;
}

.localisation-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #00FF00;
    border-radius: 50%;
    top: -631%;
    left: 172%;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    animation: pulse-green 2s infinite;
    z-index: 3;
}

@keyframes pulse-green {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 30px rgba(0, 255, 0, 1);
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/chambre.jpg') center/cover;
    animation: carousel-bg 16s ease-in-out infinite;
    z-index: 1;

}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 249, 250, 0.85);
    z-index: 2;
}

@keyframes carousel-bg {
    0%, 25% {
        background: url('../images/chambre.jpg') center/cover;
        opacity: 1;
    }
    25%, 50% {
        background: url('../images/jacuzzi1.jpg') center/cover;
        opacity: 1;
    }
    50%, 75% {
        background: url('../images/anse-figuier.jpg') center/cover;
        opacity: 1;
    }
    75%, 100% {
        background: url('../images/marcherriverpilote.jpg') center/cover;
        opacity: 1;
    }
}

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

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

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

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

.service-card-1:hover {
    background: url('../images/séjours.jpg') center/cover;
}

.service-card-2:hover {
    background: url('../images/jacuzzi1.jpg') center/cover;
}

.service-card-3:hover {
    background: url('../images/Anse-figuier.jpg') center/cover;
}

.service-card-4:hover {
    background: url('../images/marcherriverpilote.jpg') center/cover;
}

.service-card:hover .service-icon,
.service-card:hover h3,
.service-card:hover p {
    color: white;
    position: relative;
    z-index: 2;
}

.service-card:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Tarifs Section */
.tarifs {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.tarifs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.05;
    animation: gradient-shift 8s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        opacity: 0.05;
    }
    25% {
        background: linear-gradient(225deg, #3498db 0%, #9b59b6 100%);
        opacity: 0.08;
    }
    50% {
        background: linear-gradient(315deg, #e74c3c 0%, #f39c12 100%);
        opacity: 0.05;
    }
    75% {
        background: linear-gradient(45deg, #27ae60 0%, #16a085 100%);
        opacity: 0.08;
    }
}

.tarifs::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

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

.tarif-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    max-width: 500px;
    margin: auto;
    min-width: 500px; 
}

.tarif-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.tarif-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 25px 50px rgba(52, 152, 219, 0.3);
}

.tarif-card:hover::before {
    animation: shine 0.6s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.tarif-card:hover .tarif-price {
    transform: scale(1.1);
    color: #2980b9;
}

.tarif-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.tarif-price {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.tarif-price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.tarif-features {
    list-style: none;
    margin-bottom: 2rem;
}

.tarif-features li {
    padding: 0.5rem 0;
    color: #666;
}

.tarif-features i {
    color: #27ae60;
    margin-right: 10px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: url('../images/Anse-fuiger2.png') center/cover;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 249, 250, 0.9);
    z-index: 1;
}

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

.contact-platforms {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.platform-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 300px;
    max-width: 400px;
    border: 2px solid transparent;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.platform-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.platform-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-logo {
    transform: scale(1.1);
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.platform-logo i {
    font-size: 4rem;
    color: white;
}

.platform-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.platform-content .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
}

.platform-content .btn-primary {
    background: linear-gradient(135deg, #FF5A5F 0%, #E44856 100%);
    border: none;
    color: white;
}

.platform-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 90, 95, 0.3);
}

.platform-content .btn-secondary {
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    border: none;
    color: white;
}

.platform-content .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

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

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color:#2c3e50;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-logo i {
    margin-right: 10px;
    color: #3498db;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #3498db;
    transform: translateY(-3px);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-logo i {
    margin-right: 10px;
    color: #3498db;
}

.footer-description {
    margin-top: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3498db;
    transform: translateY(-3px);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #3498db;
    transform: translateY(-3px);
}

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

/* Animations CSS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

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

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

.animate-slide-up-delay {
    animation: slideUp 1s ease-out 0.2s both;
}

.animate-slide-up-delay-2 {
    animation: slideUp 1s ease-out 0.4s both;
}

.animate-slide-up-delay-3 {
    animation: slideUp 1s ease-out 0.6s both;
}

.animate-scale-in {
    animation: scaleIn 1s ease-out;
}

.animate-scale-in-delay {
    animation: scaleIn 1s ease-out 0.2s both;
}

.animate-scale-in-delay-2 {
    animation: scaleIn 1s ease-out 0.4s both;
}

.animate-scale-in-delay-3 {
    animation: scaleIn 1s ease-out 0.6s both;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-float-delay {
    animation: float-delay 3s ease-in-out infinite 0.5s;
}

.animate-float-delay-2 {
    animation: float-delay-2 3s ease-in-out infinite 1s;
}

/* Responsive Design Simple */
@media (max-width: 768px) {
    .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;
        z-index: 1000;
    }

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

    .hamburger {
        display: flex;
        z-index: 1001;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 15px;
        height: auto;
        min-height: 100vh;
    }

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

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

    .hero-content {
        order: 2;
        margin-top: 1rem;
    }

    .hero-image-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 1rem 0;
        order: 1;
    }

    .hero-image {
        max-width: 120px;
        flex: 1;
        min-width: 100px;
    }

    .hero-image img {
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .presentation {
        height: auto;
        min-height: 100vh;
        padding: 80px 15px 40px;
    }

    .presentation-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .presentation-text {
        text-align: center;
        max-width: 100%;
    }

    .presentation-carousel {
        max-width: 100%;
    }

    .carousel-container {
        height: 250px;
        border-radius: 15px;
    }

    .localisation {
        height: auto;
        min-height: 100vh;
        padding: 80px 15px 40px;
    }

    .localisation-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .localisation-left {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .localisation-text {
        text-align: center;
        max-width: 100%;
    }

    .localisation-map {
        width: 100%;
        max-width: 350px;
        display: block;
        position: relative;
    }

    .localisation-map img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        display: block;
    }

    .localisation .section-title {
        text-align: center !important;
        margin-bottom: 2rem;
    }

    .galerie-grid,
    .services-grid,
    .tarifs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .tarif-card {
        padding: 1.5rem;
        text-align: center;
    }

    .platform-card {
        min-width: 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        margin: 0.5rem;
    }
}

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

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

    .carousel-container {
        height: 200px;
    }

    .hero-image {
        max-width: 120px;
    }

    .container {
        padding: 0 10px;
    }

    .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}
