:root {
    /* Color Palette */
    --color-black: #000000;
    --color-dark-grey: #121212;
    --color-gold-primary: #D4AF37;
    --color-gold-light: #F1D592;
    --color-white: #ffffff;
    --color-text-muted: #a0a0a0;

    /* Typography */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-secondary: 'Outfit', serif;

    /* Shadows & Effects */
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F1D592 100%);
    --glass-bg: rgba(0, 0, 0, 0.8);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-gold: 1px solid #D4AF37;
}

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

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Gold Text Effect */
.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border: var(--border-gold);
    border-radius: 12px;
    color: var(--color-gold-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: transparent;
    gap: 0.8rem;
    text-decoration: none;
}

.btn:hover {
    background: var(--color-gold-primary);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn:focus {
    outline: 2px solid var(--color-gold-light);
    outline-offset: 4px;
}

.btn-primary {
    background: transparent;
    color: var(--color-gold-primary);
    border: 1px solid var(--color-gold-primary);
}

.btn-primary:hover {
    background: var(--color-gold-primary);
    color: var(--color-black);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold-primary);
    border: 1px solid var(--color-gold-primary);
}

.btn-outline:hover {
    background: var(--color-gold-primary);
    color: var(--color-black);
}

.btn-whatsapp {
    background: transparent;
    border: 1px solid #25d366;
    color: #25d366;
}

.btn-whatsapp:hover {
    background: #25d366;
    color: #fff;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
}

/* Header & Nav */
.main-header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(157, 108, 42, 0.2);
}

.nav-wrapper {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--color-gold-primary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.logo-v {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold-light);
    font-family: var(--font-secondary);
    border-bottom: 2px solid var(--color-gold-light);
}

.logo-text {
    display: none; /* We use the MV style now */
}

.logo small {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold-primary);
}

.nav-links {
    display: flex;
    gap: 1.5rem; /* Reduced from 2rem to save space and prevent overflow */
}

.nav-links a {
    font-weight: 500;
    font-size: 0.85rem; /* Slightly reduced from 0.9rem to save space */
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold-light);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    text-align: left;
    padding-top: 80px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--color-black), transparent);
}

.hero .container {
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 0;
    line-height: 1;
    color: var(--color-gold-light);
    letter-spacing: 5px;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--color-white);
    letter-spacing: 10px;
    margin-bottom: 2rem;
    display: block;
    text-transform: uppercase;
    font-weight: 300;
}

.hero p {
    font-size: 1.5rem;
    max-width: 500px;
    margin: 0 0 3rem;
    color: var(--color-white);
}

.hero-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    justify-content: flex-start;
}

.hero-btns .btn {
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--color-gold-primary);
}

.hero-btns .btn small {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-dark-grey);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold-primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* Why Me / Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(157, 108, 42, 0.1);
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--color-gold-primary);
}

.check {
    color: var(--color-gold-light);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Buttons Refined */
.btn:focus {
    outline: 2px solid var(--color-gold-light);
    outline-offset: 4px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--color-dark-grey);
    border: var(--border-gold);
    color: var(--color-gold-primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-premium);
    z-index: 9999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: var(--color-gold-primary);
    color: var(--color-black);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Map Placeholder GDPR */
.map-placeholder {
    width: 100%;
    height: 400px;
    background: #1a1a1a;
    border: var(--border-gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: var(--color-text-muted);
}

/* Specific Buttons from Mockup */
.btn-mockup {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid var(--color-gold-primary) !important;
    padding: 1.5rem !important;
    text-align: left !important;
    position: relative;
    overflow: hidden;
}

.btn-mockup::after {
    content: '›';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-gold-primary);
    transition: var(--transition-smooth);
}

.btn-mockup:hover::after {
    right: 1rem;
    color: var(--color-gold-light);
}

.btn-mockup span {
    font-size: 1rem;
    font-weight: 700;
    display: block;
    color: var(--color-gold-light);
}

.btn-mockup small {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Responsive adjustments for buttons */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

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

.cta-content p {
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

.cta-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Subpage Backgrounds */
.bg-online-services {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../assets/images/online-services-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-vehicle-transfers {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../assets/images/hero-bg.png'); /* Using hero bg for consistency */
    background-size: cover;
    background-position: center;
}

/* Legal Page Content Overlay */
.legal-page {
    background: var(--color-black);
    padding: 100px 0;
}

.legal-content {
    background: var(--color-dark-grey);
    padding: 3rem;
    border-radius: 12px;
    border: var(--border-gold);
    max-width: 900px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info h3 {
    margin-bottom: 1rem;
    color: var(--color-gold-light);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--color-gold-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-section {
    padding: 6rem 0;
    background: var(--color-black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--color-dark-grey);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.info-block:hover {
    border-color: var(--color-gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.05);
}

.info-icon {
    font-size: 2rem;
    color: var(--color-gold-primary);
    background: rgba(212, 175, 55, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.info-block h3 {
    font-size: 1.2rem;
    color: var(--color-gold-light);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.info-block p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.info-block a {
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.info-block a:hover {
    color: var(--color-gold-light);
}

.contact-form-wrapper {
    background: var(--color-dark-grey);
    padding: 3rem;
    border-radius: 16px;
    border: var(--border-gold);
    box-shadow: var(--shadow-premium);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.9rem;
    color: var(--color-gold-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4AF37'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--color-dark-grey);
    color: var(--color-white);
}

/* ========================================
   Projects Gallery Styles
   ======================================== */
.projects-gallery {
    padding: 6rem 0;
    background: var(--color-black);
}

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

.project-card {
    background: var(--color-dark-grey);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold-primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-image img {
    transition: var(--transition-smooth);
}

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

.project-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
}

.project-info h3 {
    font-size: 1.25rem;
    color: var(--color-gold-light);
    letter-spacing: 1px;
}

.project-info p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.project-info a {
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

/* ========================================
   Service Details Page Styles
   ======================================== */
.service-details {
    padding: 6rem 0;
    background: var(--color-black);
}

.details-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.details-content h2 {
    font-size: 2.2rem;
    color: var(--color-gold-light);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.details-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.details-list {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.details-list li {
    font-size: 1rem;
    color: var(--color-white);
    position: relative;
    padding-left: 2rem;
}

.details-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--color-gold-primary);
    font-size: 1.2rem;
    font-weight: bold;
}

.details-list li strong {
    color: var(--color-gold-light);
}

.pricing-info {
    background: var(--color-dark-grey);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--color-gold-primary);
}

.pricing-info h3 {
    font-size: 1.4rem;
    color: var(--color-gold-light);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.pricing-info p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.details-image {
    width: 100%;
}

.image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-gold-light);
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.gold-border {
    border: var(--border-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
}

/* ========================================
   Directions Page Styles
   ======================================== */
.directions-section {
    padding: 6rem 0;
    background: var(--color-black);
}

.directions-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.directions-info h2 {
    font-size: 2rem;
    color: var(--color-gold-light);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.directions-info p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.map-links {
    margin-top: 2rem;
}

.map-wrapper {
    width: 100%;
}

/* Mobile Menu Button (base: hidden on desktop, shown via media query) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    position: relative; /* Required for z-index to work */
    z-index: 1005; /* Must be higher than nav-links (1000) and language switcher */
    padding: 10px;
    margin-right: -10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-gold-primary);
    transition: 0.3s;
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ========================================
   Responsive Media Queries
   ======================================== */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero {
        text-align: center;
        height: auto;
        padding: 140px 0 60px; /* Increased padding to prevent any overlap from fixed header */
    }

    .hero .container {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 1rem;
    }

    .hero-btns .btn {
        text-align: center;
        align-items: center;
    }

    .cta-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    /* Grid Adjustments */
    .services-grid,
    .details-grid,
    .footer-grid,
    .projects-grid,
    .contact-grid,
    .directions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .details-image {
        order: -1; /* Image first on mobile */
    }

    .pricing-info {
        text-align: center;
    }

    .pricing-info .btn {
        margin: 0 auto;
    }
}

/* Button & Nav Fixes */
.btn-wa-premium {
    background: var(--color-gold-primary) !important;
    color: var(--color-black) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-wa-premium:hover {
    background: var(--color-gold-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}



/* Premium Cookie Consent Modal Styling */
#cookieConsentModal {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    right: 20px !important;
    background: rgba(18, 18, 18, 0.95) !important;
    border: 1px solid var(--color-gold-primary) !important;
    padding: 1.5rem !important;
    z-index: 100000 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8) !important;
    max-width: 450px !important;
    backdrop-filter: blur(15px) !important;
    animation: slideUpFade 0.5s ease-out;
}

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

@media (max-width: 576px) {
    #cookieConsentModal {
        left: 10px !important;
        right: 10px !important;
        bottom: 10px !important;
        padding: 1.2rem !important;
    }
    
    #cookieConsentModal div {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    #cookieConsentModal button {
        width: 100% !important;
        justify-content: center;
    }
}


/* ===== LANGUAGE SWITCHER STYLING (Bilingual Support) ===== */
.lang-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
    margin-right: 0.5rem;
    z-index: 1002;
    white-space: nowrap;
    flex-shrink: 0;
}

.lang-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 6px 12px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.lang-btn.active {
    color: var(--color-gold-primary);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.lang-btn:hover {
    color: var(--color-gold-light);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1250px) {
    .lang-wrapper {
        margin-left: auto;
        margin-right: 1.2rem;
    }

    .nav-wrapper {
        height: 70px; /* Slimmer header on mobile */
    }

    .logo a {
        padding: 0.3rem 0.6rem; /* Smaller padding on mobile */
        gap: 0.5rem;
    }

    .logo-v {
        font-size: 1.8rem; /* Scaled down M.V text */
        border-bottom-width: 1px;
    }

    .logo small {
        font-size: 0.5rem; /* Prevent text wrapping */
        letter-spacing: 0.5px;
    }

    .nav-cta {
        display: none; /* Hide crowded CTA button on mobile (floating button is always present) */
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        backdrop-filter: blur(20px);
        padding: 100px 20px 40px;
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--color-white);
        letter-spacing: 2px;
        transition: var(--transition-smooth);
        padding: 8px 16px;
        width: 100%;
        text-align: center;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--color-gold-primary);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

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

@media (max-width: 1300px) and (min-width: 1251px) {
    .nav-links {
        gap: 1.2rem;
    }
    .lang-wrapper {
        margin-left: 1rem;
    }
}

/* Statically positioned WhatsApp Menu Link */
.nav-wa-link {
    transition: var(--transition-smooth);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-wa-link:hover {
    color: #25D366 !important;
    background: rgba(37, 211, 102, 0.08) !important;
    border-color: rgba(37, 211, 102, 0.6) !important;
    transform: translateY(-1px);
}

/* Floating Tech Icons */
.floating-icons-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    opacity: 0.3;
    color: var(--color-gold);
    animation: floatIcon 15s ease-in-out infinite alternate;
}

@keyframes floatIcon {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(15deg); }
    100% { transform: translateY(10px) rotate(-10deg); }
}

.floating-icon.icon-1 { top: 15%; left: 10%; width: 60px; height: 60px; animation-duration: 12s; }
.floating-icon.icon-2 { top: 60%; left: 15%; width: 80px; height: 80px; animation-duration: 18s; animation-direction: alternate-reverse; }
.floating-icon.icon-3 { top: 20%; right: 10%; width: 70px; height: 70px; animation-duration: 14s; }
.floating-icon.icon-4 { top: 65%; right: 15%; width: 90px; height: 90px; animation-duration: 16s; animation-direction: alternate-reverse; }

