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

body {
    font-family: 'Montserrat', sans-serif;
    color: #111;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #fff;
    color: #000;
}

.btn.dark {
    color: #000;
    border-color: #000;
}

.btn.dark:hover {
    background-color: #000;
    color: #fff;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.5s ease;
    mix-blend-mode: difference;
}

header.scrolled {
    background-color: #fff;
    padding: 1rem 5%;
    mix-blend-mode: normal;
}

header.scrolled .logo h1,
header.scrolled .menu-toggle span {
    color: #000;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    margin: 0;
    letter-spacing: 3px;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo a:hover {
    opacity: 0.9;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 80px;
    height: 30px;
}

.menu-toggle span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
}

.menu-toggle .hamburger {
    width: 30px;
    height: 20px;
    position: absolute;
    bottom: 5px;
    right: 0;
}

.menu-toggle .hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    top: auto;
    letter-spacing: 0;
    text-transform: none;
    font-size: 0;
}

.menu-toggle .hamburger span:nth-child(1) {
    top: 0;
}

.menu-toggle .hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle .hamburger span:nth-child(3) {
    bottom: 0;
    top: auto;
}

.menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

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

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    top: 50%;
}

header.scrolled .menu-toggle span,
header.scrolled .menu-toggle .hamburger span {
    color: #000;
    background-color: #000;
}

nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    z-index: 999;
}

nav.active {
    right: 0;
}

nav ul {
    text-align: center;
}

nav ul li {
    margin: 2rem 0;
}

nav ul li a {
    font-size: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000;
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 100%;
}

.language {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}

.language a {
    font-weight: 300;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0.5rem;
}

.language a.active {
    font-weight: 500;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 5%;
    max-width: 800px;
    color: #fff;
    z-index: 2;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.scroll-down span {
    width: 1px;
    height: 50px;
    background-color: #fff;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.scroll-down span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* Philosophy Section */
.philosophy {
    padding: 10rem 0;
    background-color: #fff;
    position: relative;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.philosophy h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
}

.philosophy h3 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 3rem;
}

.philosophy p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services Preview Section */
.services-preview {
    padding: 10rem 0;
    background-color: #f8f8f8;
    position: relative;
}

.services-preview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.services-preview-content h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
}

.services-preview-content>p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.services-preview-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    margin-bottom: 3rem;
}

.service-preview-item {
    flex: 1;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-preview-item:hover {
    transform: translateY(-10px);
}

.service-preview-icon {
    height: 200px;
    overflow: hidden;
}

.service-preview-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-preview-item:hover .service-preview-icon img {
    transform: scale(1.05);
}

.service-preview-content {
    padding: 2rem;
    text-align: left;
}

.service-preview-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-preview-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .services-preview-grid {
        flex-direction: column;
    }

    .service-preview-item {
        margin-bottom: 2rem;
    }
}

/* Performance Section */
.performance {
    padding: 10rem 0;
    background-color: #f8f8f8;
    position: relative;
}

.performance-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.performance h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 3rem;
}

.stats {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.stat-item {
    flex: 1;
    padding: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #000;
}

.stat-item p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.stat-item span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
}

/* Fleet Section */
.fleet {
    padding: 10rem 0;
    background-color: #fff;
    position: relative;
}

.fleet-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fleet h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 2rem;
}

.fleet p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.fleet-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
    width: 100%;
    margin-bottom: 3rem;
}

.fleet-item {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.fleet-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.fleet-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    text-align: left;
    transform: translateY(100%);
    transition: all 0.5s ease;
}

.fleet-item:hover .fleet-item-content {
    transform: translateY(0);
}

.fleet-item-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.fleet-item-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* DNA Section */
.dna {
    position: relative;
    padding: 0;
    color: #fff;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dna .parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: translateZ(0);
    will-change: transform;
}

.dna-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.dna-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
    padding: 0 2rem;
}

.dna h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.dna p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    padding: 10rem 0;
    background-color: #f8f8f8;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
}

.contact>p {
    max-width: 600px;
    margin: 0 auto 3rem;
}

#contact-form {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group {
    flex: 1;
    margin: 0 1rem;
    position: relative;
}

.form-group label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background-color: transparent;
    font-family: inherit;
    font-size: 1rem;
    color: #000;
    transition: all 0.3s ease;
}

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

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
    transform: translateY(-1.5rem);
    font-size: 0.7rem;
    color: #000;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    margin-top: 2rem;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.form-group.checkbox label {
    position: static;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: normal;
    color: #666;
    line-height: 1.5;
}

.privacy-notice {
    font-size: 0.8rem;
    color: #999;
    margin-top: 2rem;
    text-align: left;
}

.form-submit {
    margin-top: 3rem;
    text-align: center;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5rem;
}

.footer-logo {
    flex: 1;
}

.footer-logo h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-nav {
    flex: 1;
}

.footer-nav h3 {
    font-size: 0.8rem;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.footer-nav ul li {
    margin-bottom: 1rem;
}

.footer-nav ul li a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-nav ul li a:hover {
    opacity: 1;
}

.footer-contact,
.footer-social {
    flex: 1;
}

.footer-contact h3,
.footer-social h3 {
    font-size: 0.8rem;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.footer-social ul {
    display: flex;
}

.footer-social ul li {
    margin-right: 1.5rem;
}

.footer-social ul li a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-social ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.5;
    margin: 0;
}

.footer-bottom ul {
    display: flex;
}

.footer-bottom ul li {
    margin-left: 1.5rem;
}

.footer-bottom ul li a {
    font-size: 0.8rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.footer-bottom ul li a:hover {
    opacity: 1;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stats {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 50%;
    }

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

@media (max-width: 768px) {

    .logo h1 {
        font-size: 1.1rem;

    }

    .hero-content {
        bottom: 25%
    }

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

    .philosophy h2,
    .performance h2,
    .fleet h2,
    .dna h2,
    .contact h2 {
        font-size: 2rem;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .fleet-gallery {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        margin: 0 0 2rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-logo,
    .footer-nav,
    .footer-contact,
    .footer-social {
        margin-bottom: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom ul {
        margin-top: 1rem;
    }

    .footer-bottom ul li {
        margin: 0 1.5rem 0 0;
    }
}

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

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

/* Styles pour la page flotte */
.page-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 5rem;
    overflow: hidden;
}

.page-hero .parallax-bg {
    position: absolute;
    top: -70%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: translateZ(0);
    will-change: transform;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.page-hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 1;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 5px;
}

.page-hero-content p {
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.fleet-intro {
    padding: 5rem 0;
    text-align: center;
}

.fleet-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.fleet-models {
    padding: 5rem 0;
}

.fleet-model {
    display: flex;
    margin-bottom: 10rem;
}

.fleet-model:nth-child(even) {
    flex-direction: row-reverse;
}

.fleet-model-image {
    flex: 1;
    padding: 0 2rem;
}

.fleet-model-image img {
    width: 100%;
    height: auto;
}

.fleet-model-content {
    flex: 1;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fleet-model-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.fleet-model-specs {
    display: flex;
    margin-bottom: 2rem;
}

.spec-item {
    margin-right: 3rem;
}

.spec-value {
    display: block;
    font-size: 2rem;
    font-weight: 300;
}

.spec-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

.fleet-model-content p {
    margin-bottom: 2rem;
}

.fleet-model-content .btn {
    align-self: flex-start;
}

.cta {
    padding: 8rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .fleet-model {
        flex-direction: column;
    }

    .fleet-model:nth-child(even) {
        flex-direction: column;
    }

    .fleet-model-image,
    .fleet-model-content {
        padding: 0;
    }

    .fleet-model-content {
        margin-top: 2rem;
    }
}

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

    .fleet-model-specs {
        flex-wrap: wrap;
    }

    .spec-item {
        margin-right: 2rem;
        margin-bottom: 1rem;
    }
}

/* Styles pour la page services */
.services-intro {
    padding: 5rem 0;
    text-align: center;
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-list {
    padding: 5rem 0;
}

.service-item {
    display: flex;
    margin-bottom: 8rem;
    align-items: center;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-icon {
    flex: 0 0 40%;
    padding: 0 2rem;
}

.service-icon img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-content {
    flex: 0 0 60%;
    padding: 0 2rem;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-top: 2rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
}

.services-testimonials {
    padding: 8rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

.services-testimonials h2 {
    margin-bottom: 4rem;
}

.testimonials-slider {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 0 0 30%;
    background-color: #fff;
    padding: 3rem;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 2rem;
}

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

.testimonial-author span:first-child {
    font-weight: 500;
}

.testimonial-author span:last-child {
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 992px) {

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-icon,
    .service-content {
        flex: 0 0 100%;
        padding: 0;
    }

    .service-icon {
        margin-bottom: 2rem;
    }

    .testimonials-slider {
        flex-direction: column;
    }

    .testimonial {
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }
}

/* Styles pour la page destinations */
.destinations-intro {
    padding: 5rem 0;
    text-align: center;
}

.destinations-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.destinations-map {
    padding: 2rem 0 5rem;
}

.map-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.map-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.destinations-list {
    padding: 5rem 0;
}

.destination-item {
    display: flex;
    margin-bottom: 8rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.destination-item:nth-child(even) {
    flex-direction: row-reverse;
}

.destination-image {
    flex: 0 0 40%;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-content {
    flex: 0 0 60%;
    padding: 3rem;
}

.destination-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.destination-details {
    display: flex;
    margin-bottom: 2rem;
}

.detail {
    margin-right: 3rem;
}

.detail-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.detail-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
}

.destination-highlights {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.destination-highlights h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.destination-highlights ul {
    padding-left: 1.5rem;
}

.destination-highlights li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.destination-highlights li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
}

.destinations-more {
    padding: 5rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

.more-content {
    max-width: 1000px;
    margin: 0 auto;
}

.more-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.more-destinations {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
}

.more-destination {
    flex: 0 0 calc(50% - 2rem);
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.more-destination h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 992px) {

    .destination-item,
    .destination-item:nth-child(even) {
        flex-direction: column;
    }

    .destination-image,
    .destination-content {
        flex: 0 0 100%;
    }

    .destination-image {
        height: 300px;
    }

    .more-destination {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .destination-details {
        flex-direction: column;
    }

    .detail {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .destination-content {
        padding: 2rem;
    }
}

/* Styles pour la page contact */
.contact-intro {
    padding: 5rem 0;
    text-align: center;
}

.contact-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-details {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 0 0 35%;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 3rem;
}

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

.social-icon {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.contact-form-container {
    flex: 0 0 60%;
    background-color: #fff;
    padding: 3rem;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-container h3 {
    margin-bottom: 2rem;
}

.contact-form .form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    flex: 1;
    position: relative;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #000;
}

.contact-form label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
}

.contact-form input:focus~label,
.contact-form textarea:focus~label,
.contact-form input.has-value~label,
.contact-form textarea.has-value~label,
.contact-form input:not(:placeholder-shown)~label,
.contact-form textarea:not(:placeholder-shown)~label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    background-color: #fff;
    padding: 0 0.5rem;
}

.contact-form .checkbox {
    display: flex;
    align-items: flex-start;
    margin-top: 2rem;
}

.contact-form .checkbox input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.contact-form .checkbox label {
    position: static;
    font-size: 0.9rem;
    line-height: 1.5;
}

.privacy-notice {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 1.5rem 0;
}

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

.map-section {
    padding: 5rem 0;
}

.map-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.map {
    margin-bottom: 3rem;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-info {
    display: flex;
    justify-content: space-between;
}

.map-info-item {
    flex: 0 0 30%;
}

.map-info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.team-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

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

.team-content h2 {
    margin-bottom: 1rem;
}

.team-content>p {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.team-member {
    flex: 0 0 calc(33.333% - 2rem);
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.member-contact {
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column;
    }

    .contact-info,
    .contact-form-container {
        flex: 0 0 100%;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .map-info {
        flex-direction: column;
        gap: 2rem;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        flex: 0 0 100%;
        max-width: 400px;
    }
}

/* Styles pour la page à propos */
.about-intro {
    padding: 5rem 0;
}

.about-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-values {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.values-content h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.value-item {
    flex: 0 0 calc(50% - 2rem);
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-team {
    padding: 5rem 0;
}

.about-team-content {
    text-align: center;
}

.about-team-content>p {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.team-grid .team-member {
    flex: 0 0 calc(50% - 2rem);
    margin-bottom: 4rem;
    display: flex;
    background-color: #f9f9f9;
    border-radius: 5px;
    overflow: hidden;
}

.team-grid .member-image {
    flex: 0 0 40%;
    height: auto;
}

.team-grid .member-info {
    flex: 0 0 60%;
    padding: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-bio {
    font-size: 0.9rem;
    line-height: 1.6;
}

.about-history {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.history-content h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 2px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 3rem;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 300;
}

.timeline-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    margin-bottom: 1rem;
}

.about-partners {
    padding: 5rem 0;
}

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

.partners-content>p {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.partner-item {
    flex: 0 0 calc(33.333% - 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.partner-item img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .value-item {
        flex: 0 0 100%;
    }

    .team-grid .team-member {
        flex: 0 0 100%;
    }

    .partner-item {
        flex: 0 0 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .team-grid .team-member {
        flex-direction: column;
    }

    .team-grid .member-image {
        flex: 0 0 100%;
        height: 300px;
    }

    .team-grid .member-info {
        flex: 0 0 100%;
    }

    .timeline:before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-year {
        width: 60px;
        font-size: 1.2rem;
    }

    .partner-item {
        flex: 0 0 100%;
    }
}

/* Styles pour les popups de yacht */
.yacht-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.yacht-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.yacht-popup {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background-color: #fff;
    border-radius: 5px;
    overflow-y: auto;
    padding: 0;
    transform: translateY(50px);
    transition: all 0.5s ease;
}

.yacht-popup-overlay.active .yacht-popup {
    transform: translateY(0);
}

.yacht-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.yacht-popup-close:hover {
    background-color: #000;
}

.yacht-popup-close:before,
.yacht-popup-close:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #fff;
}

.yacht-popup-close:before {
    transform: rotate(45deg);
}

.yacht-popup-close:after {
    transform: rotate(-45deg);
}

.yacht-popup-header {
    position: relative;
    height: 50vh;
    overflow: hidden;
}

.yacht-popup-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yacht-popup-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.yacht-popup-header-overlay h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.yacht-popup-header-overlay p {
    font-size: 1.2rem;
    max-width: 600px;
}

.yacht-popup-content {
    padding: 3rem;
}

.yacht-popup-tabs {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.yacht-popup-tab {
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.yacht-popup-tab.active {
    border-bottom-color: #000;
}

.yacht-popup-tab-content {
    display: none;
}

.yacht-popup-tab-content.active {
    display: block;
}

.yacht-specs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.yacht-spec-group {
    flex: 0 0 50%;
    margin-bottom: 2rem;
}

.yacht-spec-group h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.yacht-spec-list {
    list-style: none;
}

.yacht-spec-item {
    display: flex;
    margin-bottom: 0.5rem;
}

.yacht-spec-label {
    flex: 0 0 60%;
    font-size: 0.9rem;
    opacity: 0.7;
}

.yacht-spec-value {
    flex: 0 0 40%;
    font-size: 0.9rem;
    font-weight: 500;
}

.yacht-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.yacht-gallery-item {
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
}

.yacht-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.yacht-layouts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.yacht-layout {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.yacht-layout-title {
    padding: 1rem;
    background-color: #f9f9f9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.yacht-layout-image {
    padding: 2rem;
    display: flex;
    justify-content: center;
    background-color: #99999952;
}

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

@media (max-width: 992px) {
    .yacht-spec-group {
        flex: 0 0 100%;
    }

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

@media (max-width: 768px) {
    .yacht-popup-header {
        height: 40vh;
    }

    .yacht-popup-header-overlay {
        padding: 2rem;
    }

    .yacht-popup-header-overlay h2 {
        font-size: 2rem;
    }

    .yacht-popup-content {
        padding: 2rem;
    }

    .yacht-popup-tabs {
        flex-wrap: wrap;
    }

    .yacht-popup-tab {
        padding: 0.8rem 1.5rem;
    }

    .yacht-gallery {
        grid-template-columns: 1fr;
    }
}

/* Styles pour la section destinations-preview */
.destinations-preview {
    padding: 5rem 0;
    background-color: #fff;
}

.destinations-preview-content {
    text-align: center;
}

.destinations-preview-content>p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.destinations-preview-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.destination-preview-item {
    flex: 0 0 calc(33.333% - 1.5rem);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.destination-preview-item:hover {
    transform: translateY(-10px);
}

.destination-preview-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.destination-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.destination-preview-item:hover .destination-preview-image img {
    transform: scale(1.1);
}

.destination-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    text-align: left;
}

.destination-preview-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.destination-preview-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 992px) {
    .destinations-preview-grid {
        flex-wrap: wrap;
    }

    .destination-preview-item {
        flex: 0 0 calc(50% - 1rem);
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .destination-preview-item {
        flex: 0 0 100%;
    }
}