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

:root {
    --gold: #b8956a;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-top {
    background: var(--dark);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--light);
}

.header-top a {
    color: var(--light);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.header-top a:hover {
    color: var(--gold);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
    border: 2px solid transparent;
}

.lang-option:hover {
    background: rgba(184, 149, 106, 0.1);
    border-color: var(--gold);
}

.lang-option.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.lang-option.active .lang-text {
    color: var(--white);
}

.lang-option .flag-img {
    display: inline-block;
    width: 28px;
    height: 20px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    object-fit: cover;
    vertical-align: middle;
    flex-shrink: 0;
}

.lang-option .lang-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--light);
    transition: color 0.3s;
}

.header-main {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s;
}

/* Mobile menu overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 5px;
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

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

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

.btn-reservation {
    background: var(--gold);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-reservation:hover {
    background: #a07d52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 149, 106, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.hero-highlight {
    color: var(--gold);
}

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

/* Gammes Section */
.gammes-section {
    padding: 100px 5%;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header small {
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 48px;
    margin-top: 15px;
    color: var(--dark);
}

.gammes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.gamme-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.gamme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    border: 3px solid var(--gold);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

.gamme-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(184, 149, 106, 0.35);
}

.gamme-card:hover::before {
    opacity: 1;
}

.gamme-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gamme-card:hover .gamme-image {
    transform: scale(1.05);
}

.gamme-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.gamme-content {
    padding: 40px;
}

.gamme-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark);
}

.gamme-content .subtitle {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.gamme-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.gamme-features {
    list-style: none;
    margin-bottom: 30px;
}

.gamme-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
    font-size: 15px;
}

.gamme-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    font-size: 18px;
    background: rgba(184, 149, 106, 0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Services Section */
.services {
    padding: 100px 5%;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.3s;
}

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

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

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.service-card:hover .service-image {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(184, 149, 106, 0.3);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

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

/* Features Section */
.features {
    padding: 100px 5%;
    background: var(--light);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-image {
    position: relative;
}

.image-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.image-placeholder {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.features-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.features-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.quote {
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-right: 4px solid var(--gold);
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
    font-size: 18px;
    color: var(--dark);
}

.features-list {
    list-style: none;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.features-list li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.features-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    font-size: 24px;
    background: rgba(184, 149, 106, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Info Section */
.info-section {
    padding: 100px 5%;
    background: var(--white);
}

.info-content {
    max-width: 1200px;
    margin: 0 auto;
}

.services-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-box {
    background: var(--gold);
    padding: 60px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(184, 149, 106, 0.4);
}

.service-box h3 {
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.service-box p {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
}

.partner-section {
    margin: 60px 0;
    text-align: center;
}

.partner-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--dark);
}

.partner-section > p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-card {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.info-card.full-width {
    width: 100%;
    margin-bottom: 0;
    margin-top: 50px;
}

.info-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-card h3::before {
    content: '✓';
    background: var(--gold);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.info-card p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.info-card ul {
    list-style: none;
    margin-top: 15px;
}

.info-card ul li {
    padding: 10px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card ul li::before {
    content: '→';
    color: var(--gold);
    font-weight: bold;
}

.tarifs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.tarifs-left,
.tarifs-right {
    list-style: none;
}

.tarifs-left li,
.tarifs-right li {
    padding: 10px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tarifs-left li::before,
.tarifs-right li::before {
    content: '→';
    color: var(--gold);
    font-weight: bold;
}

.info-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

/* Testimonials */
.testimonials {
    padding: 100px 5%;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    font-weight: bold;
}

.testimonial-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: #999;
    font-size: 14px;
}

.testimonial-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stars {
    color: var(--gold);
    font-size: 20px;
}

/* CTA Section */
.cta {
    padding: 100px 5%;
    background: var(--gold);
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.cta .btn-reservation {
    background: var(--dark);
    font-size: 18px;
    padding: 18px 50px;
}

.cta .btn-reservation:hover {
    background: #000;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 5%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-item {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

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

/* Modal Reservation */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
    border-radius: 20px;
    max-width: 950px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 50px 60px;
    border: 1px solid rgba(184, 149, 106, 0.3);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(184, 149, 106, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 149, 106, 0.5), transparent);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 28px;
    color: #888;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(184, 149, 106, 0.4);
}

.modal-header {
    text-align: center;
    margin-bottom: 45px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-header small {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(184, 149, 106, 0.3);
}

.modal-header h2 {
    font-size: 32px;
    margin-top: 10px;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 1px;
}

.reservation-form {
    display: grid;
    gap: 20px;
}

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

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

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

.form-group label {
    font-weight: 500;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    color: #ffffff;
    color-scheme: dark;
}

/* Placeholders dorés */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gold);
    opacity: 0.8;
}

/* Date et time inputs - icônes visibles */
.form-group input[type="date"],
.form-group input[type="time"] {
    color-scheme: dark;
}

/* Texte par défaut doré pour date/time vides */
.form-group input[type="date"]:not(:focus):invalid,
.form-group input[type="time"]:not(:focus):invalid {
    color: var(--gold);
    opacity: 0.8;
}

/* Fix autofill background */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active,
.form-group select:-webkit-autofill,
.form-group textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #1a1a1a inset !important;
    -webkit-text-fill-color: #ffffff !important;
    border-color: rgba(184, 149, 106, 0.3) !important;
    transition: background-color 5000s ease-in-out 0s;
    caret-color: #ffffff;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b8956a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
    color: var(--gold);
}

/* Select avec valeur sélectionnée = texte blanc */
.form-group select.has-value {
    color: #ffffff;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 15px;
}

.form-group select option:first-child {
    color: var(--gold);
}

.form-group select option[value=""] {
    color: var(--gold);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(184, 149, 106, 0.05);
    box-shadow:
        0 0 0 3px rgba(184, 149, 106, 0.1),
        0 0 20px rgba(184, 149, 106, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(184, 149, 106, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--gold);
    border-radius: 4px;
}

.form-checkbox label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.form-checkbox a:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(184, 149, 106, 0.5);
}

.btn-submit {
    background: linear-gradient(135deg, var(--gold) 0%, #d4af37 50%, var(--gold) 100%);
    background-size: 200% 200%;
    color: #000000;
    padding: 20px 60px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 30px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(184, 149, 106, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.btn-submit:hover {
    background-position: 100% 100%;
    transform: translateY(-3px);
    box-shadow:
        0 8px 30px rgba(184, 149, 106, 0.5),
        0 0 40px rgba(184, 149, 106, 0.2);
    letter-spacing: 4px;
}

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

.btn-submit:active {
    transform: translateY(-1px);
}

.gamme-selector {
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.08) 0%, rgba(184, 149, 106, 0.02) 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 1px solid rgba(184, 149, 106, 0.2);
    position: relative;
    overflow: hidden;
}

.gamme-selector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 149, 106, 0.4), transparent);
}

.gamme-selector h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(184, 149, 106, 0.3);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(184, 149, 106, 0.5);
}

/* Mobile Language Switcher */
.mobile-language-switcher {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    /* Hide desktop language switcher on mobile */
    .header-top .language-switcher {
        display: none;
    }

    /* Show mobile language switcher */
    .mobile-language-switcher {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px 0;
        margin-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-language-switcher .lang-option {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 15px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        background: transparent;
        border: 2px solid rgba(255,255,255,0.1);
    }

    .mobile-language-switcher .lang-option:hover {
        background: rgba(184, 149, 106, 0.1);
        border-color: var(--gold);
    }

    .mobile-language-switcher .lang-option.active {
        background: var(--gold);
        border-color: var(--gold);
    }

    .mobile-language-switcher .lang-option .flag-img {
        width: 28px;
        height: 20px;
        border-radius: 3px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }

    .mobile-language-switcher .lang-option .lang-text {
        font-size: 14px;
        font-weight: 600;
        color: var(--light);
    }

    .mobile-language-switcher .lang-option.active .lang-text {
        color: var(--white);
    }

    .header-main {
        flex-wrap: wrap;
        padding: 15px 5%;
    }

    .logo {
        font-size: 18px;
        flex: 1;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
    }

    /* Hide nav by default on mobile */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: var(--dark);
        flex-direction: column;
        gap: 0;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 16px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav a::after {
        display: none;
    }

    .btn-reservation {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .hero {
        background-attachment: scroll;
        height: 100vh;
        padding: 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .gammes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gamme-card {
        margin: 0 10px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header small {
        font-size: 14px;
    }

    .services {
        padding: 60px 5%;
    }

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

    .service-image {
        height: 180px;
    }

    .features {
        padding: 60px 5%;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-content h2 {
        font-size: 32px;
    }

    .features-content p {
        font-size: 16px;
    }

    .image-stack {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-section {
        padding: 60px 5%;
    }

    .services-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-box {
        padding: 40px 20px;
    }

    .service-box h3 {
        font-size: 24px;
    }

    .partner-section h2 {
        font-size: 32px;
    }

    .partner-section > p {
        font-size: 16px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tarifs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-image {
        min-height: 300px;
    }

    .testimonials {
        padding: 60px 5%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta h2 {
        font-size: 32px;
    }

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

    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modal-content {
        padding: 35px 25px;
        width: 95%;
        border-radius: 15px;
    }

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

    .modal-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .modal-header h2 {
        font-size: 22px;
    }

    .modal-header small {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .gamme-selector {
        padding: 20px;
        margin-bottom: 20px;
    }

    .gamme-selector h4 {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 18px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 18px 40px;
        font-size: 14px;
        letter-spacing: 2px;
        width: 100%;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 60px;
    }

    .gammes-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

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

    nav {
        gap: 20px;
    }

    nav a {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .gamme-content {
        padding: 25px;
    }

    .service-card {
        padding: 25px;
    }

    .info-card {
        padding: 25px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .stat-number {
        font-size: 36px;
    }

    .lang-option .lang-text {
        display: none;
    }

    .lang-option {
        padding: 6px 10px;
    }

    .language-switcher {
        gap: 5px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
