/* === VTC Aix-Marseille - MODERN PREMIUM DESIGN === */

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

:root {
    --primary-gold: #D4AF37;
    --primary-light: #F4E6A1;
    --dark-bg: #0a0a0a;
    --card-bg: #141414;
    --accent-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: rgba(255,255,255,0.7);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E6A1 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.3);
    --shadow-lg: 0 20px 60px rgba(212, 175, 55, 0.2);
    --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --google-green: #34A853;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--dark-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* === HEADER - Glassmorphism === */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
}

header:hover {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow-md);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.logo:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 10px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.nav-links a:hover::before {
    width: 100%;
}

.nav-links li.dropdown {
    position: relative;
}

.nav-links li.dropdown > a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links li.dropdown > a .fa-chevron-down {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.nav-links li.dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 10px 0;
    list-style: none;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, top 0.3s ease;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
}

.nav-links li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
}

.dropdown-menu li a::before {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
}

/* === HERO - Premium Design === */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1594953258810-9113d043aa7a?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 25px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.5);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 50px;
    color: var(--text-muted);
    font-weight: 300;
}

/* === BUTTONS - Modern 3D Effect === */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 20px 45px;
    border: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}

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

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

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-gold);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

/* === SECTIONS === */
.services, .booking, .contact, .google-business, .quick-ask {
    padding: 120px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 25px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 300;
}

.services, .contact, .google-business {
    background: var(--card-bg);
}

/* === CARDS - Glassmorphism === */
.services-grid, .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card, .contact-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(10px);
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before, .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before, .contact-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover, .contact-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-icon, .contact-icon {
    font-size: 70px;
    color: var(--primary-gold);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    transition: var(--transition);
}

.service-card:hover .service-icon,
.contact-card:hover .contact-icon {
    transform: scale(1.1) rotateY(180deg);
}

.service-card h3, .contact-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-card a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-card a:hover {
    text-decoration: underline;
    filter: brightness(1.2);
}

/* === EXPRESS BUTTON - IMPROVED === */
.express-demand {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
    animation: floatPulse 3s ease-in-out infinite;
}

@keyframes floatPulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.express-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 25px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.express-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.express-btn:hover::before {
    width: 300px;
    height: 300px;
}

.express-btn i {
    font-size: 28px;
    animation: pulse 2s infinite;
    position: relative;
    z-index: 1;
}

.express-btn span {
    position: relative;
    z-index: 1;
}

.express-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.6);
}

.express-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* === BOOKING FORM - Premium === */
.booking-form {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(20px);
    padding: 60px 50px;
    border-radius: 30px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 20px 25px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 16px;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    background: rgba(255,255,255,0.1);
}

.form-group label {
    position: absolute;
    top: 20px;
    left: 25px;
    color: var(--text-muted);
    transition: var(--transition);
    pointer-events: none;
    font-weight: 500;
}

.form-group input:focus + label, .form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label, .form-group textarea:not(:placeholder-shown) + label,
.form-group input[type="date"] + label, .form-group input[type="time"] + label {
    top: -12px;
    font-size: 13px;
    background: var(--dark-bg);
    padding: 0 12px;
    color: var(--primary-gold);
    font-weight: 600;
}

.geo-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-gold);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--dark-bg);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-sm);
}

.geo-btn:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: var(--shadow-md);
}

/* === REVIEWS - Modern Cards === */
.reviews-and-qr-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 30px;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

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

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    margin-right: 18px;
    flex-shrink: 0;
    border: 3px solid rgba(212, 175, 55, 0.3);
}

.review-author {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.review-date {
    font-size: 14px;
    color: var(--text-muted);
}

.review-stars {
    margin-bottom: 15px;
}

.star-icon {
    color: var(--primary-gold);
    font-size: 18px;
    margin-right: 3px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.review-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* === QR CODE BOX === */
.qr-code-review-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    position: sticky;
    top: 120px;
    box-shadow: var(--shadow-lg);
}

.qr-code-review-box h4 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 800;
}

#review-qr-code {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    border: 5px solid white;
    margin: 25px auto;
    box-shadow: var(--shadow-md);
}

/* === GOOGLE MAPS FIX === */
.google-map {
    height: 100%;
    min-height: 450px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: var(--card-bg);
}

/* === FOOTER === */
footer {
    background: var(--dark-bg);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-gold);
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
}

.footer-section p, .footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 12px;
    display: block;
}

.footer-section a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

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

/* === FLOATING CONTACT === */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-menu {
    position: relative;
}

.floating-menu-items {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    transform: translateY(20px);
}

.floating-menu.active .floating-menu-items {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: none;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.share-btn {
    background: linear-gradient(135deg, #4267B2 0%, #365899 100%);
}

.phone-btn {
    background: linear-gradient(135deg, #34C759 0%, #28A745 100%);
}

/* === SHARE MODAL - PREMIUM DESIGN === */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.share-modal.active {
    opacity: 1;
    visibility: visible;
}

.share-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(30px);
    padding: 50px 40px;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: modalSlideIn 0.4s ease-out;
}

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

.share-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.share-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-modal:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: rotate(90deg);
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.share-btn-item {
    padding: 18px 25px;
    border: none;
    border-radius: 15px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.share-btn-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.share-btn-item:hover::before {
    width: 200px;
    height: 200px;
}

.share-btn-item i {
    position: relative;
    z-index: 1;
    font-size: 20px;
}

.share-btn-item span {
    position: relative;
    z-index: 1;
}

.facebook {
    background: linear-gradient(135deg, #4267B2 0%, #365899 100%);
    box-shadow: 0 5px 20px rgba(66, 103, 178, 0.3);
}

.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0c85d0 100%);
    box-shadow: 0 5px 20px rgba(29, 161, 242, 0.3);
}

.linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
    box-shadow: 0 5px 20px rgba(0, 119, 181, 0.3);
}

.email {
    background: linear-gradient(135deg, #EA4335 0%, #c1351b 100%);
    box-shadow: 0 5px 20px rgba(234, 67, 53, 0.3);
}

.copy-link {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E6A1 100%);
    color: var(--dark-bg);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    grid-column: 1 / -1;
}

.share-btn-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .reviews-and-qr-grid {
        grid-template-columns: 1fr;
    }
    
    .qr-code-review-box {
        position: static;
    }
    
    .express-demand {
        bottom: 80px;
        right: 20px;
    }
    
    .express-btn {
        padding: 20px 30px;
        font-size: 14px;
    }
    
    .express-btn span {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        display: none;
    }
    
    .nav-links li.dropdown.open .dropdown-menu {
        display: block;
    }
    
    .hero {
        height: auto;
        min-height: 600px;
        padding: 150px 0 80px;
    }
    
    .express-demand {
        bottom: 60px;
        right: 15px;
    }
    
    .express-btn {
        padding: 18px 25px;
        font-size: 13px;
    }
    
    .express-btn span {
        font-size: 11px;
    }
    
    .express-btn i {
        font-size: 24px;
    }
    
    .booking-form {
        padding: 40px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        grid-template-columns: 1fr;
    }
    
    .copy-link {
        grid-column: 1;
    }
    
    .share-content {
        padding: 40px 25px;
    }
}