
    @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@1,400;1,500&display=swap');

    :root {
        --bg: #050505; --text: #f8fafc; --accent: #3b82f6; --gold: #d4af37;
        --glass: rgba(255, 255, 255, 0.05); --glass-border: rgba(255, 255, 255, 0.1);
        --nav-bg: rgba(5, 5, 5, 0.85); 
        --overlay-color: rgba(0,0,0,0); /* MAX BRIGHTNESS */
    }

    @media (prefers-color-scheme: light) {
        :root {
            --bg: #ffffff; --text: #0f172a; --glass: rgba(0, 0, 0, 0.05);
            --glass-border: rgba(0, 0, 0, 0.1); --nav-bg: rgba(255, 255, 255, 0.9);
            --overlay-color: rgba(0,0,0,0);
        }
    }

    html, body { background-color: var(--bg); margin: 0; padding: 0; transition: background-color 0.5s ease; scroll-behavior: smooth; }
    * { box-sizing: border-box; cursor: none !important; }
    body { color: var(--text); font-family: 'Inter', sans-serif; overflow-x: hidden; }

    #progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); z-index: 10001; width: 0%; }
    #cursor { position: fixed; width: 20px; height: 20px; background: var(--accent); border-radius: 50%; pointer-events: none; z-index: 100000; transform: translate(-50%, -50%); box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent); opacity: 0.8; mix-blend-mode: exclusion; will-change: transform; }

    @media (max-width: 1024px) { #cursor { display: none; } * { cursor: auto !important; } }

    .bebas { font-family: 'Bebas Neue', sans-serif; text-transform: uppercase; line-height: 0.9; }
    .cursive { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); }
    
    h1 { font-size: clamp(2.5rem, 9vw, 10rem); color: #ffffff !important; text-shadow: 0 4px 15px rgba(0,0,0,0.8); z-index: 30; position: relative; }
    h2 { font-size: clamp(2rem, 5.5vw, 6rem); }

    .door-overlay { position: fixed; inset: 0; z-index: 99999; display: flex; pointer-events: none; }
    .door { width: 50%; height: 100%; background: #000000; display: flex; align-items: center; overflow: hidden; will-change: transform; border-right: 1px solid rgba(255,255,255,0.05); }
    .door-left { justify-content: flex-end; }
    .door-right { justify-content: flex-start; border-left: 1px solid rgba(255,255,255,0.05); border-right: none; }
    .door-text { font-family: 'Bebas Neue'; font-size: clamp(12vw, 15vw, 20vw); color: white; white-space: nowrap; padding: 0 2vw; opacity: 1 !important; }

    nav { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; background: var(--nav-bg); backdrop-filter: blur(15px); border-bottom: 1px solid var(--glass-border); transition: background 0.3s; }
    .nav-links a { margin-left: 20px; text-decoration: none; color: var(--text); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
    @media (max-width: 800px) { .nav-links { display: none; } }

    .hero { height: 100vh; width: 100%; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
    .hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
    .hero-overlay { position: absolute; inset: 0; background: var(--overlay-color); z-index: 10; }
    .hero-content { position: relative; z-index: 20; padding: 20px; width: 95%; max-width: 1200px; }
    .hero p { color: #ffffff !important; text-shadow: 0 2px 8px rgba(0,0,0,0.8); font-size: clamp(1rem, 2.5vw, 1.5rem); margin-top: 20px; }

    .btn-magnetic { display: inline-block; padding: 15px 30px; background: transparent; color: var(--text); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-radius: 50px; text-decoration: none; border: 1px solid var(--text); position: relative; overflow: hidden; z-index: 1; transition: color 0.4s ease; font-size: 0.8rem; }
    .btn-magnetic::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background-color: var(--accent); transform-origin: bottom center; transform: scaleY(0); transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1); z-index: -1; }
    .btn-magnetic:hover::after { transform: scaleY(1); }
    .btn-magnetic:hover { color: white !important; border-color: var(--accent); }
    .hero .btn-magnetic { color: #ffffff !important; border-color: #ffffff !important; margin-top: 30px; }

    .glass-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 20px; padding: clamp(20px, 4vw, 40px); backdrop-filter: blur(20px); transition: 0.3s; height: 100%; }
    
    .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 25px; max-width: 1400px; margin: 0 auto; }
    @media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }
    .service-card { display: none; } .service-card.active { display: block; }
    .service-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }

    .tabs-nav { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
    .tab-btn { padding: 10px 20px; border: 1px solid rgba(128,128,128,0.6) !important; border-radius: 30px; color: var(--text) !important; opacity: 1 !important; background: rgba(100,100,100,0.2); cursor: pointer; transition: 0.3s; text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: 0.5px; }
    .tab-btn.active { background: var(--accent) !important; color: white !important; border-color: var(--accent) !important; }

    .case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
    @media (max-width: 768px) { .case-grid { grid-template-columns: 1fr; } }
    .case-card { position: relative; height: 300px; border-radius: 20px; overflow: hidden; border: 1px solid var(--glass-border); }
    .case-card img { width: 100%; height: 100%; object-fit: cover; }
    .case-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 25px; background: linear-gradient(to top, rgba(0,0,0,0.95), transparent); color: white; }
    
    .overlap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; }
    @media (max-width: 900px) { 
        .overlap-grid { grid-template-columns: 1fr; text-align: center; } 
        .overlap-img { order: 2; margin-top: 40px; }
    }
    .overlap-img { position: relative; border-radius: 20px; overflow: hidden; width: 100%; }
    .overlap-stat { position: absolute; bottom: -10px; right: -10px; background: var(--bg); border: 1px solid var(--glass-border); padding: 20px 30px; border-radius: 15px; z-index: 2; }
    .guarantee-seal { width: 100px; height: 100px; position: absolute; top: -50px; right: 20px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: black; font-family: 'Bebas Neue'; text-align: center; font-size: 0.9rem; animation: rotate 20s linear infinite; z-index: 3; }
    @keyframes rotate { to { transform: rotate(360deg); } }

    .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-top: 40px; }
    @media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }
    .team-card { position: relative; height: 450px; border-radius: 20px; overflow: hidden; border: 1px solid var(--glass-border); }
    .team-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.5s; }
    .team-card:hover img { filter: grayscale(0%); }
    .team-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.95), transparent); color: white; }

    .testimonial-wrapper { display: flex; gap: 20px; overflow-x: auto; padding: 20px 0; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .testimonial-wrapper::-webkit-scrollbar { display: none; }
    .testimonial-card { min-width: 300px; flex: 1; scroll-snap-align: center; }
    @media (min-width: 768px) { .testimonial-card { min-width: 450px; } }
    .stars { color: var(--gold); margin-bottom: 15px; font-size: 1.2rem; }

    .slider-container { position: relative; width: 100%; height: 350px; border-radius: 20px; overflow: hidden; }
    @media (min-width: 768px) { .slider-container { height: 600px; border-radius: 40px; } }
    .slider-before { position: absolute; inset: 0; width: 50%; background-size: cover; border-right: 4px solid white; z-index: 2; }
    .slider-after { position: absolute; inset: 0; background-size: cover; }
    .slider-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 45px; height: 45px; background: white; border-radius: 50%; z-index: 10; display: flex; items-center; justify-content: center; color: black; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

    #contact { color: #ffffff !important; padding: 80px 20px; }
    #contact h3, #contact .bebas { color: #ffffff !important; }
    .form-option { border: 1px solid rgba(128,128,128,0.4); padding: clamp(15px, 3vw, 25px); border-radius: 15px; cursor: pointer; text-align: center; transition: 0.3s; background: rgba(100,100,100,0.1); color: #ffffff !important; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; }
    .form-option.selected { border-color: var(--accent) !important; background: var(--accent) !important; color: white !important; }
    #contact input, #contact textarea { width: 100%; padding: 18px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #ffffff !important; margin-bottom: 15px; border-radius: 12px; outline: none; font-size: 1rem; }
    #contact input::placeholder, #contact textarea::placeholder { color: #ffffff; opacity: 0.6; }

    .mega-footer { border-top: 1px solid var(--glass-border); background: var(--bg); padding: 100px 20px 40px; color: var(--text); transition: background 0.5s; }
    .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 60px; max-width: 1400px; margin: 0 auto; }
    @media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; } .social-links { justify-content: center; } .contact-item { justify-content: center; } }
    .footer-col h4 { margin-bottom: 25px; font-weight: 800; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px; color: var(--accent); }
    .footer-col ul { list-style: none; padding: 0; }
    .footer-col ul li { margin-bottom: 15px; }
    .footer-col ul li a { color: var(--text); opacity: 0.7; text-decoration: none; font-size: 0.95rem; transition: 0.3s; }
    .footer-col ul li a:hover { opacity: 1; color: var(--accent); transform: translateX(5px); }
    .social-links { display: flex; gap: 20px; margin-top: 25px; }
    .social-links a { color: var(--text); font-size: 1.4rem; opacity: 0.8; transition: 0.3s; }
    .contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; font-size: 0.95rem; opacity: 0.8; }
    