/* ===================================
   LUXOR PREMIUM - STYLESHEET
   =================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    max-width: 100%;
}

/* ===================================
   NAVIGATION PREMIUM
   =================================== */

.topnav {
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 100%);
    backdrop-filter: blur(10px);
    padding: 0 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.topnav.scrolled {
    background: rgba(0,0,0,0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #fff;
    text-decoration: none;
    padding: 20px 0;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(255,0,0,0.3)), url('images/dark-montain.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ff0000;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.btn-premium {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cc0000, #990000);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-premium:hover::before {
    left: 0;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255,0,0,0.4);
}

/* ===================================
   GALLERY
   =================================== */

.gallery {
    padding: 0;
    background: #000;
    margin-top: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(20%);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,0,0,0.4), rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
    padding: 120px 5%;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-content h3 {
    font-size: 20px;
    color: #ff0000;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, transparent);
    margin: 30px 0;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaaaaa;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    padding: 100px 5%;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

.cta-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

/* ===================================
   BOTTOM BANNER
   =================================== */

.bottom-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.bottom-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* ===================================
   PACKAGES PAGE
   =================================== */

.page-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(255,0,0,0.4)), url('images/Night_road.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.page-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.page-hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 18px;
    color: #cccccc;
    font-weight: 300;
}

h2 {
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-top: 80px;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: 2px;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, transparent);
    margin: 20px auto 0;
}

.package-container {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.car-package {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 60px;
    gap: 50px;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
}

.car-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255,0,0,0.2);
    border-color: rgba(255,0,0,0.3);
}

.car-package img {
    width: 400px;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.car-package:hover img {
    transform: scale(1.05);
}

.car-info {
    flex: 1;
}

.car-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.car-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #aaaaaa;
}

.car-info .details {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,0,0,0.4);
    background: linear-gradient(135deg, #cc0000, #990000);
}

/* ===================================
   BANNER OFFRE
   =================================== */

.banner-offre {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(255,0,0,0.4)), url('images/Night_road.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin: 80px 0;
}

.banner-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 800px;
}

.banner-offre .subtext {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: #ff0000;
    font-weight: 700;
}

.banner-offre h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
}

.banner-offre .description {
    font-size: 16px;
    margin-bottom: 30px;
    color: #cccccc;
    line-height: 1.6;
}

.banner-button {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.banner-button:hover {
    background-color: white;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* ===================================
   PLUS DE LIEUX
   =================================== */

.plus-lieux {
    padding: 80px 5%;
    max-width: 1400px;
    margin: auto;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.lieux-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.lieux-container div {
    background: rgba(255,255,255,0.02);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.lieux-container div:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,0,0,0.3);
    transform: translateY(-5px);
}

.lieux-container h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff0000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lieux-container ul {
    list-style: none;
    padding: 0;
}

.lieux-container ul li {
    margin-bottom: 12px;
}

.lieux-container ul li a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.lieux-container ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(0,0,0,0.98);
        width: 300px;
        height: calc(100vh - 70px);
        padding: 40px;
        gap: 30px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .car-package {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .car-package img {
        width: 100%;
        height: auto;
    }

    .lieux-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .page-hero {
        height: 50vh;
    }
}

/* ===================================
   FOOTER GLOBAL
   =================================== */

footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 80px 5% 30px;
    color: #aaaaaa;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-about h3 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-color: #ff0000;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ff0000;
    transform: translateX(5px);
}

.footer-contact p,
.footer-hours p {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 15px;
}

.footer-contact i,
.footer-hours i {
    color: #ff0000;
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    color: #666;
}

.footer-bottom a {
    color: #ff0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(255,0,0,0.4)), url('images/dark-montain.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.contact-hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.contact-hero-content h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-content p {
    font-size: 20px;
    color: #cccccc;
    font-weight: 300;
}

.contact-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-main {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 60px;
}

.contact-form-main h2 {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
    color: #ffffff;
}

.contact-form-main h2::after {
    display: none;
}

.form-subtitle {
    text-align: center;
    font-size: 16px;
    color: #aaaaaa;
    margin-bottom: 50px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: rgba(255,255,255,0.08);
    border-color: #ff0000;
    box-shadow: 0 0 0 3px rgba(255,0,0,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    font-family: 'Montserrat', sans-serif;
}

.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='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,0,0,0.4);
    background: linear-gradient(135deg, #cc0000, #990000);
}

.btn-submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.contact-info-section {
    padding: 80px 5%;
    background: #0a0a0a;
}

.contact-info-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.info-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,0,0,0.3);
    transform: translateY(-10px);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255,0,0,0.2), rgba(255,0,0,0.1));
    border: 2px solid rgba(255,0,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-color: #ff0000;
    transform: scale(1.1);
}

.info-icon i {
    font-size: 28px;
    color: #ff0000;
    transition: color 0.3s ease;
}

.info-card:hover .info-icon i {
    color: #ffffff;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.info-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #aaaaaa;
}

/* ===================================
   RESPONSIVE FOOTER & CONTACT
   =================================== */

@media (max-width: 968px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .contact-form-main {
        padding: 40px 30px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 60px 5% 20px;
    }

    .contact-form-main {
        padding: 30px 20px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        height: 50vh;
    }
}