:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --light-gray: #ecf0f1;
    --dark-gray: #7f8c8d;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #95a5a6;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;  /* ← Change 1.5rem en 0.8rem */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;  /* ← Change 1.8rem en 1.4rem */
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(52, 73, 94, 0.5));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 1200px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-cta {
    display: inline-flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

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

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

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

/* Section Styles */
section {
    padding: 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: -2rem auto 4rem;
}

.btn-reverse{

    background: transparent;
    color: var(--ink);
    border-top: 1px solid var(--dark-gray);
    border-radius: 0;
}

.btn-cta{
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}
.btn-cta:hover{
    background: var(--accent-color);
    color: var(--white);
    border: 1px solid var(--accent-color);
      transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.btn-pdf{
    border-top: 1px solid var(--dark-gray);
    border-radius: 0;
    color: var(--ink);
    background-color: transparent;

}

.btn-pdf:hover{
    color: var(--white);
}
.btn-reverse:hover{

    background: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
     transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);

}


.section-separator {
    border: none;
    margin: 32px 0;
    height: 1px;
    background-color: rgba(31, 31, 31, 0.15);
    color: rgba(31, 31, 31, 0.15);
        width: 30vw;
    margin: 0 auto;
}

.presentation {
    display: grid;
    gap: 3.5rem;
}

.presentation__header {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.presentation__lead {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.6;
}

.presentation__highlights {
    list-style: none;
    margin: 0;
    padding: 0 2.75rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
    border-radius: 28px;
}

.style-experience {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
    align-items: center;
}

.style-experience__intro {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.style-experience__title {
    text-align: left;
    margin-bottom: 0;
}

.style-experience__description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 52ch;
}

.style-experience__highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.style-experience__highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-size: 0.98rem;
    line-height: 1.5;
}

.style-experience__highlights li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
    margin-top: 0.4rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.12);
}

.style-experience__gallery {
    display: grid;
    gap: 1.5rem;
    position: relative;
}

.style-experience__tile {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    background: var(--white);
}

.style-experience__tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.style-experience__tile img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.style-experience__tile figcaption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    font-size: 0.95rem;
    color: var(--white);
    letter-spacing: 0.01em;
}

.style-experience__tile--large {
    min-height: 360px;
}

.style-experience__tile--small {
    max-width: 75%;
    margin-left: auto;
    transform: translateY(-40px);
    min-height: 240px;
}

.location-experience {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3.5rem;
    align-items: center;
}

.location-experience__media {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.location-experience__media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    filter: saturate(1.05);
}

.location-experience__badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 1.25rem 1.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    max-width: 280px;
}

.location-experience__badge-title {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.location-experience__badge p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.location-experience__content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.location-experience__title {
    text-align: left;
    margin-bottom: 0;
}

.location-experience__description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 54ch;
}

.location-experience__grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.location-experience__item {
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    background: rgba(236, 240, 241, 0.4);
    box-shadow: inset 0 0 0 1px rgba(44, 62, 80, 0.08);
}

.location-experience__item-title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.location-experience__item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

.presentation-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 0.8rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.presentation-highlight:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.presentation-highlight__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.presentation-highlight__content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
}

.presentation-highlight__value {
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.1;
}

.presentation-highlight__label {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), #5dade2);
    border-radius: 16px;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 8px 16px rgba(52, 152, 219, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

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

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

/* Plans Section */
.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background: var(--white);
    
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 400px;
}

.plan-card picture{
    box-sizing: content-box;
    text-align: center;
    cursor: pointer;
}

.plan-card:hover {
    box-shadow: var(--shadow-hover);
}

.plan-image {
    width: auto;
    height: 400px;
    object-fit: cover;
    background: var(--light-gray);
    transition: transform 0.3s ease;
}

.plan-card:hover .plan-image {
    transform: scale(1.02);
}

.plan-info {

    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.plan-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 400;
}

.plan-actions {
    display: flex;
    
    margin-top: 1.5rem;
    flex-direction: column;

}

.plan-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
}


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

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

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

/* Calendar Section */
.calendar-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.calendar-embed {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 10px;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
    margin-top: 6rem;
}

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

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

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

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

.license {
    font-weight: 600;
    margin-top: 1rem;
    color: var(--white);
}

/* Video Container */
/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Highlights Section */
.video-highlights {
    background: var(--white);
    padding: 6rem 2rem;
}

.video-highlights__container {
    max-width: 1400px;
    margin: 0 auto;
}

.video-highlights__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.highlight-card__number {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--accent-color);
    letter-spacing: 0.5px;
    line-height: 1.8;
    position: relative;
    padding-bottom: 0.5rem;
}

.highlight-card__number::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.5;
}

.highlight-card__content {
    flex: 1;
}

.highlight-card__content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.highlight-card__content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

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

.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow);
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

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

    section {
        padding: 4rem 1.5rem;
    }

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

    .presentation {
        gap: 2.5rem;
    }

    .presentation__highlights {
        padding: 1.75rem;
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .presentation-highlight {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .presentation-highlight__content {
        align-items: center;
    }

    .presentation-highlight__value {
        font-size: 1.6rem;
    }

    .style-experience,
    .location-experience {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .style-experience__title,
    .location-experience__title {
        text-align: center;
    }

    .style-experience__description,
    .location-experience__description {
        max-width: none;
        text-align: center;
    }

    .style-experience__highlights {
        gap: 0.65rem;
    }

    .style-experience__highlights li {
        font-size: 0.95rem;
    }

    .style-experience__gallery {
        max-width: 520px;
        margin: 0 auto;
    }

    .style-experience__tile--small {
        max-width: 100%;
        transform: translateY(0);
    }

    .location-experience__media img {
        min-height: 280px;
    }

    .location-experience__badge {
        position: static;
        margin: 1.5rem auto 0;
        max-width: 100%;
        text-align: center;
    }

    .location-experience__grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .gallery-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

/* Loading State */
.loading {
    text-align: center;
    padding: 4rem;
    color: var(--dark-gray);
}

.loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Success/Error Messages */
.message {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

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

/* Lightbox for plans */
.plans-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.plans-lightbox.active {
    display: flex;
}

.plans-lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-caption {
    color: white;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 300;
    margin-top: 1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    position: absolute;
    padding: 1rem;
    transition: background-color 0.3s ease;
    font-size: 1.5rem;
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}







/* ===== Luxe discret / section équipements ===== */
:root{
  --ink: #0f1720;            /* noir doux/graphite */
  --soft: #9edefc;           /* ivoire très léger */
  --muted: #6b7280;          /* gris texte secondaire */
  --line: rgba(15,23,32,.08);/* hairline */
}

.amenities-minimal{
  max-width: 1120px;
  margin: clamp(3rem,6vw,6rem) auto;
  padding: clamp(2rem,4vw,3rem) clamp(1.25rem,3vw,2rem);
  background: #fff;
  border-radius: 20px;
  
}

.amenities-head{
  text-align:center;
  margin-bottom: clamp(1.5rem,4vw,2.75rem);
}

.amenities-overline{
  margin:0;
  font-size:.72rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color: var(--muted);
}

.amenities-title{
  margin:.6rem 0 0;
  color: var(--ink);
  font-weight: 300;
  letter-spacing:-.015em;
  line-height:1.12;
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
}

.amenities-subtitle{
  margin:.9rem auto 0;
  max-width: 68ch;
  color: var(--muted);
  line-height:1.75;
  font-size: 1rem;
}

/* Liste en lignes — aucune “card”, aucune icône */
.amenities-rows{
  margin: clamp(1.5rem,4vw,2.5rem) 0 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:#fff;
  overflow:hidden;
}

.amenity-row{
  display:grid;
  grid-template-columns: minmax(220px, .6fr) 1fr;
  gap: clamp(1rem,2.5vw,1.75rem);
  padding:clamp(1rem, 2.5vw, 0.2rem) clamp(1rem, 3vw, .75rem);
  border-top: 1px solid var(--line);
  align-items:center;
}

.amenity-row:first-child{ border-top:0; }

.amenity-row dt{
  margin:0;
  color: var(--ink);
  font-weight: 600;
  letter-spacing:-.01em;
  font-size: clamp(1rem,2.2vw,1.15rem);
}

.amenity-row dd{
  margin:0;
  color:#374151;
  line-height:1.85;
  max-width: 70ch;
  font-size: 1rem;
}

/* Hover minimal: légère élévation optique par fond très subtil */
@media (hover:hover){
  .amenity-row{ transition: background-color 160ms ease; }
  .amenity-row:hover{ background: linear-gradient(0deg,var(--accent-color), var(--accent-color));color:#fff }
  .amenity-row:hover dt, .amenity-row:hover dd{ color:#fff; }
}

/* Mode “editorial dark” facultatif (décommenter pour l’activer) */
/*
@media (prefers-color-scheme: dark){
  .amenities-minimal{ background:#0e1111; box-shadow:none; }
  .amenities-overline{ color: #a0a6b0; }
  .amenities-title, .amenity-row dt{ color:#f3f4f6; }
  .amenities-subtitle, .amenity-row dd{ color:#c5c9d3; }
  .amenities-rows{ border-color: rgba(255,255,255,.08); background:#0e1111; }
  .amenity-row{ border-top-color: rgba(255,255,255,.08); }
  .amenity-row:hover{ background: rgba(255,255,255,.02); }
}
*/

/* Accessibilité & confort */
@media (max-width: 820px){
  .amenity-row{ grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; }
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 1rem;
    background: var(--white);
}

.why-choose__container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.why-choose__title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.why-choose__subtitle {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.why-choose__card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-choose__card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-choose__card p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
}


/* ===== Villa Calendar Styles ===== */
.villa-calendar-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.villa-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--light-gray);
}

.calendar-month-title {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.5px;
}

.calendar-nav-btn {
    background: var(--light-gray);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.calendar-nav-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.05);
}

.calendar-legend {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--dark-gray);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.legend-color.available {
    background: #d4edda;
    border-color: #28a745;
}

.legend-color.reserved {
    background: #f8d7da;
    border-color: #dc3545;
}

.legend-color.today {
    background: #cce5ff;
    border-color: var(--accent-color);
}

.villa-calendar {
    margin-bottom: 1.2rem;
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}

.calendar-day-name {
    text-align: center;
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--dark-gray);
    padding: 0.3rem 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3rem;
}

.calendar-day {
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    position: relative;
    min-height: 50px;
}

.calendar-day:hover:not(.calendar-day--empty):not(.calendar-day--past) {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.calendar-day--empty {
    background: transparent;
    cursor: default;
}

.calendar-day--available {
    background: #d4edda;
    border-color: #c3e6cb;
}

.calendar-day--available:hover {
    border-color: #28a745;
}

.calendar-day--reserved {
    background: #f8d7da;
    border-color: #f5c6cb;
    cursor: not-allowed;
}

.calendar-day--today {
    background: #cce5ff;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

.calendar-day--past {
    background: #f8f9fa;
    color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.6;
}

.calendar-day--selected {
    background: var(--accent-color) !important;
    border-color: #2980b9 !important;
    color: var(--white) !important;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.4) !important;
}

.calendar-day--selected .calendar-day__price {
    color: var(--white) !important;
}

.calendar-day__number {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.15rem;
    line-height: 1;
}

.calendar-day--selected .calendar-day__number {
    color: var(--white);
}

.calendar-day__price {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1;
}

.calendar-day--reserved .calendar-day__price {
    color: #dc3545;
}

.calendar-day--past .calendar-day__price {
    color: #adb5bd;
}

.calendar-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.selection-info {
    background: linear-gradient(135deg, var(--accent-color), #5dade2);
    padding: 1.2rem;
    border-radius: 12px;
    color: var(--white);
    margin-top: 1.2rem;
    box-shadow: 0 5px 18px rgba(52, 152, 219, 0.3);
}

.selection-content h4 {
    margin: 0 0 0.6rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.selection-content p {
    margin: 0.3rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}

.selection-price {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin: 0.6rem 0 0.8rem 0 !important;
}

.selection-info .btn {
    margin-top: 0.6rem;
    padding: 0.7rem 1.3rem;
    font-size: 0.85rem;
}

.selection-info .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
}

.selection-info .btn-secondary:hover {
    background: var(--white);
    color: var(--accent-color);
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .villa-calendar-wrapper {
        padding: 1rem;
        border-radius: 12px;
        max-width: 100%;
        margin: 0 0.5rem;
    }

    .calendar-month-title {
        font-size: 1.1rem;
    }

    .calendar-nav-btn {
        width: 28px;
        height: 28px;
    }

    .calendar-nav-btn svg {
        width: 16px;
        height: 16px;
    }

    .calendar-legend {
        gap: 0.8rem;
        font-size: 0.75rem;
    }

    .legend-color {
        width: 14px;
        height: 14px;
    }

    .calendar-days-header {
        gap: 0.15rem;
    }

    .calendar-day-name {
        font-size: 0.6rem;
        padding: 0.2rem 0.1rem;
    }

    .calendar-dates {
        gap: 0.15rem;
    }

    .calendar-day {
        padding: 0.3rem 0.1rem;
        border-radius: 6px;
        min-height: 42px;
        border-width: 1.5px;
    }

    .calendar-day__number {
        font-size: 0.75rem;
        margin-bottom: 0.1rem;
    }

    .calendar-day__price {
        font-size: 0.55rem;
    }

    .selection-info {
        padding: 1rem;
        margin-top: 1rem;
    }

    .selection-content h4 {
        font-size: 0.9rem;
    }

    .selection-content p {
        font-size: 0.75rem;
    }

    .selection-price {
        font-size: 1.1rem !important;
    }

    .selection-info .btn {
        width: 100%;
        margin-top: 0.4rem;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .villa-calendar-wrapper {
        padding: 0.8rem;
        margin: 0 0.3rem;
    }

    .calendar-month-title {
        font-size: 1rem;
    }

    .calendar-day {
        min-height: 38px;
        padding: 0.25rem 0.05rem;
    }

    .calendar-day__number {
        font-size: 0.7rem;
    }

    .calendar-day__price {
        font-size: 0.5rem;
    }
}

/* ===== Booking Summary (élégant et sobre) ===== */
.booking-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.booking-summary-content h3 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.booking-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.booking-summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.booking-summary-label {
    font-size: 0.75rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.booking-summary-value {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
}

.booking-summary-total {
    grid-column: span 2;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.booking-summary-price {
    font-size: 1.5rem !important;
    color: var(--accent-color) !important;
    font-weight: 700 !important;
}

@media (max-width: 768px) {
    .booking-summary {
        padding: 1.2rem;
    }

    .booking-summary-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .booking-summary-total {
        grid-column: span 1;
        padding-top: 0.8rem;
        margin-top: 0.5rem;
    }

    .booking-summary-price {
        font-size: 1.3rem !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .villa-calendar-wrapper {
        padding: 1.5rem;
    }

    .calendar-month-title {
        font-size: 1.3rem;
    }

    .calendar-nav-btn {
        width: 36px;
        height: 36px;
    }

    .calendar-legend {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .legend-color {
        width: 16px;
        height: 16px;
    }

    .calendar-days-header {
        gap: 0.25rem;
    }

    .calendar-day-name {
        font-size: 0.7rem;
        padding: 0.3rem;
    }

    .calendar-dates {
        gap: 0.25rem;
    }

    .calendar-day {
        padding: 0.5rem 0.25rem;
        border-radius: 8px;
    }

    .calendar-day__number {
        font-size: 0.85rem;
    }

    .calendar-day__price {
        font-size: 0.65rem;
    }

    .selection-info {
        padding: 1.5rem;
    }

    .selection-content h4 {
        font-size: 1.1rem;
    }

    .selection-price {
        font-size: 1.4rem !important;
    }

    .selection-info .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .calendar-day__price {
        font-size: 0.6rem;
    }

    .calendar-day {
        padding: 0.4rem 0.15rem;
    }
}

/* What's Included Section */
.whats-included {
    background: var(--white);
    padding: 6rem 2rem;
}

.whats-included__container {
    max-width: 1400px;
    margin: 0 auto;
}

.whats-included__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.inclusion-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.inclusion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.inclusion-card__number {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--accent-color);
    letter-spacing: 0.5px;
    line-height: 1.8;
    position: relative;
    padding-bottom: 0.5rem;
}

.inclusion-card__number::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.5;
}

.inclusion-card__content {
    flex: 1;
}

.inclusion-card__content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.inclusion-card__content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}