:root {
    --bg: #050505;
    --bg-alt: #0a0a0a;
    --gold: #D4AF37;
    --gold-light: #F1C40F;
    --text: #ffffff;
    --text-dim: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(212, 175, 55, 0.15);
    --font-head: 'Syne', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

/* RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); overflow-x: hidden; cursor: none; }
body.no-scroll { overflow: hidden; } /* Prevents background scroll when mobile menu is open */
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* CUSTOM CURSOR */
#cursor-dot { position: fixed; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; z-index: 10000; pointer-events: none; transform: translate(-50%, -50%); transition: transform 0.1s; }
#cursor-outline { position: fixed; width: 40px; height: 40px; border: 1px solid var(--gold); border-radius: 50%; z-index: 9999; pointer-events: none; transform: translate(-50%, -50%); transition: 0.15s ease-out; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-padding { padding: 100px 0; }
.highlight { color: var(--gold); }
.glass-card { background: var(--glass); backdrop-filter: blur(15px); border: 1px solid var(--glass-border); border-radius: 20px; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); display: flex; flex-direction: column; height: 100%; overflow: hidden; }
.glass-card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 15px 30px rgba(0,0,0,0.5); }

/* BUTTONS */
.btn-luxury { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 32px; min-height: 48px; border: 1px solid var(--gold); color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; position: relative; overflow: hidden; font-size: 0.8rem; z-index: 1; transition: 0.4s; cursor: pointer; }
.btn-luxury:hover { color: #000; background: var(--gold); box-shadow: 0 0 25px rgba(212, 175, 55, 0.4); }

.btn-filled { background: var(--gold); color: #000; border: none; }
.btn-filled:hover { background: #fff; color: #000; box-shadow: 0 0 25px rgba(255, 255, 255, 0.3); }

/* HEADER */
header { position: fixed; width: 100%; top: 0; z-index: 2000; padding: 25px 0; transition: 0.5s; }
header.scrolled { padding: 15px 0; background: rgba(5,5,5,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--glass-border); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; z-index: 2001; }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a:hover { color: var(--gold); }
.burger { display: none; cursor: pointer; font-size: 1.5rem; z-index: 2001; }

/* HERO */
#hero { 
    height: 100vh; position: relative; display: flex; align-items: center; 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&q=80&w=1920') center/cover;
    overflow: hidden;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; width: 100%; }
.hero-content h1 { font-family: var(--font-head); font-size: clamp(2.5rem, 8vw, 5rem); line-height: 1.1; text-transform: uppercase; margin-bottom: 25px; }
.hero-content p { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-dim); margin-bottom: 40px; max-width: 600px; }
.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; }

/* STATS */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 30px; margin-top: 50px; }
.stat-item h3 { font-size: clamp(2rem, 5vw, 2.5rem); color: var(--gold); font-family: var(--font-head); }
.stat-item p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dim); }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 60px; }
.service-img { width: 100%; height: 250px; object-fit: cover; border-radius: 15px 15px 0 0; border-bottom: 1px solid var(--glass-border); flex-shrink: 0; }
.service-info { padding: 30px; flex-grow: 1; }
.service-info h3 { margin-bottom: 15px; font-family: var(--font-head); font-size: 1.5rem; }

/* TESTIMONIALS */
#testimonials { background: var(--bg-alt); position: relative; }
.testimonial-slider { max-width: 800px; margin: 0 auto; overflow: hidden; position: relative; }
.testimonial-track { display: flex; transition: 0.5s ease-in-out; }
.testimonial-slide { min-width: 100%; padding: 40px; text-align: center; }
.testimonial-slide p { font-size: clamp(1.1rem, 3vw, 1.4rem); font-style: italic; margin-bottom: 25px; line-height: 1.6; }
.stars { color: var(--gold); margin-bottom: 10px; }

/* FAQ ACCORDION */
.faq-container { max-width: 800px; margin: 50px auto 0; }
.faq-item { margin-bottom: 15px; border-bottom: 1px solid var(--glass-border); }
.faq-header { padding: 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: clamp(1rem, 2vw, 1.1rem); }
.faq-header i { transition: 0.3s; color: var(--gold); flex-shrink: 0; margin-left: 15px; }
.faq-body { max-height: 0; overflow: hidden; transition: 0.4s ease-out; color: var(--text-dim); }
.faq-body p { padding: 0 25px 25px; line-height: 1.6; }
.faq-item.active i { transform: rotate(180deg); }
.faq-item.active .faq-body { max-height: 300px; } 

/* CONTACT FORM */
.contact-flex { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; margin-top: 60px; }
.contact-form { padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.8rem; text-transform: uppercase; color: var(--gold); }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); padding: 15px; color: #fff; border-radius: 8px; font-family: inherit; font-size: 16px; transition: 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.1); }

/* WHATSAPP FLOAT (Desktop) */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 1000; box-shadow: 0 10px 20px rgba(0,0,0,0.3); animation: pulse 2s infinite; }

/* STICKY BOTTOM BAR (Mobile Only) */
.mobile-bottom-bar { display: none; }

/* FOOTER */
footer { padding: 60px 0; border-top: 1px solid var(--glass-border); background: #000; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: var(--font-head); font-size: 2rem; margin-bottom: 20px; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a { width: 44px; height: 44px; border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.2rem; }
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: #000; }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* =========================================
   MOBILE OPTIMIZATIONS (320px - 768px)
   ========================================= */
@media (max-width: 992px) {
    .nav-links { position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100vh; background: var(--bg); flex-direction: column; justify-content: center; align-items: center; transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1); border-left: 1px solid var(--glass-border); padding: 2rem; z-index: 2000; box-shadow: -10px 0 30px rgba(0,0,0,0.8); }
    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; text-align: center; margin: 10px 0; }
    .nav-links a { display: block; padding: 15px; font-size: 1.2rem; width: 100%; } 
    .burger { display: block; }
    .contact-flex { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    body { cursor: auto; padding-bottom: 60px; } 
    #cursor-dot, #cursor-outline { display: none !important; }
    .section-padding { padding: 60px 0; }
    #hero { text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .btn-luxury { width: 100%; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .glass-card:hover { transform: none; box-shadow: none; border-color: var(--glass-border); }
    .contact-form { padding: 25px; }
    .testimonial-slide { padding: 20px 10px; }
    .whatsapp-float { display: none; }
    .mobile-bottom-bar { display: flex; position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; background: #000; z-index: 1500; box-shadow: 0 -5px 20px rgba(0,0,0,0.6); }
    .mobile-bottom-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
    .mobile-bar-call { background: var(--bg-alt); color: var(--gold) !important; border-top: 1px solid var(--glass-border); }
    .mobile-bar-wa { background: #25D366; color: #fff !important; }
}