 
        /* ============================================
                   COMPLETE STYLES
                   ============================================ */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0f;
            color: #f0ece4;
            overflow-x: hidden;
            line-height: 1.7;
        }
        .bg-video {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 0.4;
        }
        .bg-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 1;
            background: radial-gradient(ellipse at 30% 20%, rgba(26, 26, 46, 0.7), rgba(10, 10, 15, 0.95));
        }
        .content-wrapper {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1.5rem 5rem;
        }
        /* ===== HERO ===== */
        .hero {
            text-align: center;
            padding: 3rem 1rem 2rem;
            margin-bottom: 3rem;
        }
        .hero-logo {
            max-width: 200px;
            height: auto;
            filter: brightness(0) invert(1);
            margin-bottom: 1.5rem;
        }
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.8rem, 8vw, 5.5rem);
            font-weight: 700;
            letter-spacing: 4px;
            background: linear-gradient(135deg, #f5c542, #d4a837);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.1;
        }
        .hero-subtitle {
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            color: #f5c542;
            font-weight: 300;
            letter-spacing: 6px;
            margin-top: 0.5rem;
        }
        .hero-tagline {
            font-size: clamp(1rem, 1.5vw, 1.25rem);
            color: rgba(240, 236, 228, 0.7);
            max-width: 600px;
            margin: 1.5rem auto 0;
            font-weight: 300;
        }
        .hero-divider {
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #f5c542, transparent);
            margin: 1.5rem auto;
        }
        /* ===== SECTIONS ===== */
        .section {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(12px);
            border-radius: 32px;
            padding: 2.5rem 2rem;
            margin-bottom: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .section:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            color: #f5c542;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .section-title i {
            font-size: 1.4rem;
            opacity: 0.8;
        }
        .section-text {
            color: rgba(240, 236, 228, 0.85);
            font-weight: 300;
            margin-bottom: 1.2rem;
        }
        .section-text strong {
            color: #fff;
            font-weight: 600;
        }
        /* ===== FEATURES ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.8rem 1.5rem;
            list-style: none;
            padding: 0;
            margin-top: 0.5rem;
        }
        .features-grid li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.95rem;
            color: rgba(240, 236, 228, 0.85);
            padding: 0.3rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }
        .features-grid li::before {
            content: "✦";
            color: #f5c542;
            font-size: 0.7rem;
            opacity: 0.8;
        }
        /* ===== OFFERS ===== */
        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0 0.5rem;
        }
        .offer-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 1.8rem 1.5rem;
            text-align: center;
            border: 1px solid rgba(245, 197, 66, 0.15);
            transition: all 0.3s ease;
        }
        .offer-card:hover {
            background: rgba(245, 197, 66, 0.08);
            border-color: rgba(245, 197, 66, 0.3);
            transform: translateY(-4px);
        }
        .offer-card .icon { font-size: 2rem; color: #f5c542; margin-bottom: 0.8rem; display: block; }
        .offer-card h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; margin-bottom: 0.5rem; }
        .offer-card p { font-size: 0.9rem; color: rgba(240, 236, 228, 0.6); margin: 0; }
        /* ===== CONTACT ===== */
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem 3rem;
            margin: 0.5rem 0;
        }
        .contact-info a {
            color: rgba(240, 236, 228, 0.85);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 400;
        }
        .contact-info a:hover { color: #f5c542; }
        .contact-info i { color: #f5c542; width: 1.5rem; text-align: center; }
        /* ===== MEDIA ===== */
        .media-wrapper {
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
            margin-bottom: 1.5rem;
        }
        .media-wrapper:hover { transform: scale(1.005); }
        .media-wrapper iframe {
            display: block;
            width: 100%;
            height: 380px;
            border: none;
        }
        @media (max-width: 768px) { .media-wrapper iframe { height: 250px; } }
        /* ===== GALLERY ===== */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        .gallery-img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.35s ease;
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }
        .gallery-img:hover {
            transform: scale(1.03) translateY(-4px);
            box-shadow: 0 16px 48px rgba(245, 197, 66, 0.15);
            border-color: rgba(245, 197, 66, 0.3);
        }
        /* ===== MODAL ===== */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(8px);
            padding: 2rem;
            cursor: pointer;
            align-items: center;
            justify-content: center;
        }
        .modal-overlay.active { display: flex; }
        .modal-overlay img {
            max-width: 90%;
            max-height: 90vh;
            border-radius: 24px;
            box-shadow: 0 0 60px rgba(245, 197, 66, 0.15);
            object-fit: contain;
            cursor: default;
        }
        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 2rem;
            color: #fff;
            font-size: 3rem;
            font-weight: 300;
            cursor: pointer;
            transition: 0.3s;
            line-height: 1;
            z-index: 1001;
        }
        .modal-close:hover { color: #f5c542; transform: rotate(90deg); }
        /* ===== WHATSAPP ===== */
        .whatsapp-float {
            position: fixed;
            right: 24px;
            bottom: 28px;
            z-index: 100;
            transition: 0.25s ease;
        }
        .whatsapp-float:hover { transform: scale(1.08); }
        .whatsapp-float img {
            width: 40px;
            height: 40px;
        }
        /* ===== FOOTER ===== */
        .footer {
            text-align: center;
            padding: 2rem 0 0.5rem;
            color: rgba(240, 236, 228, 0.3);
            font-size: 0.85rem;
            font-weight: 300;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            margin-top: 1rem;
        }
        .footer strong { color: rgba(240, 236, 228, 0.5); font-weight: 400; }
        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .content-wrapper { padding: 1rem 1rem 3rem; }
            .section { padding: 1.8rem 1.2rem; border-radius: 24px; }
            .features-grid { grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; }
            .features-grid li { font-size: 0.85rem; }
            .offers-grid { grid-template-columns: 1fr; gap: 1rem; }
            .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.8rem; }
            .contact-info { flex-direction: column; gap: 0.8rem; }
            .hero { padding: 1.5rem 0.5rem 1rem; }
            .hero-logo { max-width: 150px; }
            .whatsapp-float img { width: 52px; height: 52px; }
            .modal-close { top: 1rem; right: 1.5rem; font-size: 2.5rem; }
        }
        @media (max-width: 480px) {
            .features-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
            .section { padding: 1.5rem 1rem; }
        }
    
    
           .lang-switcher {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            gap: 8px;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            padding: 8px 12px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .lang-btn {
            background: none;
            border: none;
            cursor: pointer;
            border-radius: 30px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            opacity: 0.5;
            filter: grayscale(100%);
        }
        .lang-btn:hover {
            opacity: 0.8;
            transform: scale(1.05);
        }
        .lang-btn.active {
            opacity: 1;
            filter: grayscale(0%);
            background: rgba(255, 255, 255, 0.15);
            transform: scale(1.05);
        }
        .lang-btn img {
            width: 28px;
            height: 20px;
            border-radius: 4px;
            object-fit: cover;
            display: block;
        }
        .lang-divider {
            width: 1px;
            background: rgba(255, 255, 255, 0.2);
            margin: 2px 4px;
        }
        /* Responsive */
        @media (max-width: 600px) {
            .lang-switcher {
                top: 12px;
                right: 12px;
                padding: 6px 10px;
            }
            .lang-btn img {
                width: 24px;
                height: 17px;
            }
        }
   