/* =========================================
   1. BASE VARIABLES & RESET
   ========================================= */
:root {
    --bg-dark: #020617;
    --card-bg: rgba(15, 23, 42, 0.7);
    --accent-gold: #eab308;
    --accent-gold-hover: #ca8a04;
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --glass-border: rgba(234, 179, 8, 0.15);
    --gradient-gold: linear-gradient(135deg, #facc15, #eab308);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* =========================================
   2. REUSABLE COMPONENTS
   ========================================= */
.glass {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 24px;
}

.badge {
    background: rgba(234, 179, 8, 0.1);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-btn {
    background: var(--accent-gold);
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}
.cta-btn:hover { background: var(--accent-gold-hover); transform: translateY(-2px); }

.gradient-text { 
    background: var(--gradient-gold); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

/* =========================================
   3. NAVIGATION & MOBILE MENU
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    margin-top: 20px;
    position: relative;
    z-index: 2000;
}

.logo-container { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.main-logo { height: 40px; width: auto; object-fit: contain; }
.logo-text { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.5px; }
.logo-text span { color: var(--accent-gold); }

.menu-toggle { display: none; font-size: 1.5rem; color: var(--accent-gold); cursor: pointer; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; }
.social-link { color: var(--text-dim); font-size: 0.9rem; font-weight: 600; transition: 0.3s; }
.social-link:hover { color: white; }

/* =========================================
   4. HERO & CONTENT GRID
   ========================================= */
.hero-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.hero-main { 
    padding: 60px; 
    position: relative; 
    background: linear-gradient(rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.6)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin: 25px 0; letter-spacing: -2px; }

.metrics { display: flex; gap: 40px; margin-top: 50px; }
.m-val { display: block; font-size: 2rem; font-weight: 800; color: var(--accent-gold); }
.m-lab { color: var(--text-dim); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }
.divider { width: 1px; background: var(--glass-border); }

.hero-side { padding: 40px; }
.hero-side h3 { font-size: 1.1rem; margin-bottom: 30px; border-bottom: 1px solid var(--glass-border); padding-bottom: 15px; }

.service-list { list-style: none; }
.service-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 600;
}
.service-list i { color: var(--accent-gold); width: 20px; font-size: 1.1rem; }

.status-box { margin-top: 40px; padding-top: 25px; border-top: 1px solid var(--glass-border); font-size: 0.8rem; font-weight: 600; color: var(--text-dim); }
.pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    margin-right: 8px;
    animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* =========================================
   5. DUAL FORMS SECTION
   ========================================= */
.dual-form-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 25px; margin-bottom: 60px; }
.form-card { padding: 40px; }
.highlight-card { border: 1px solid rgba(234, 179, 8, 0.4); }

.form-header { margin-bottom: 30px; }
.form-header i { font-size: 2rem; color: var(--accent-gold); margin-bottom: 10px; }
.form-header h3 { font-size: 1.5rem; color: white; }
.form-header p { color: var(--text-dim); font-size: 0.85rem; }

.contact-form { display: flex; flex-direction: column; gap: 15px; }
.input-row { display: flex; gap: 15px; }

input, textarea, select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 12px 18px;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    width: 100%;
}
.submit-btn {
    background: var(--accent-gold);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}
.submit-btn:hover { background: #facc15; transform: translateY(-3px); }

/* =========================================
   6. BRANDS & UTILITY CARDS
   ========================================= */
.brand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 30px; margin-top: 40px; }
.brand-item { font-weight: 800; color: var(--text-dim); font-size: 0.9rem; text-transform: uppercase; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.card { padding: 40px; text-align: center; }
.icon { font-size: 1.5rem; color: var(--accent-gold); margin-bottom: 20px; }

/* =========================================
   7. FOOTER (QUICK LINKS)
   ========================================= */
.footer-main { padding: 60px 40px; margin-top: 40px; margin-bottom: 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-col h4 { color: white; margin-bottom: 25px; font-size: 1.1rem; position: relative; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 30px; height: 2px; background: var(--accent-gold); }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.footer-links a:hover { color: var(--accent-gold); padding-left: 5px; }
.footer-links a.active { color: #ff4d4d; font-weight: 700; }

.footer-contact-info p { margin-bottom: 15px; }
.footer-contact-info a { color: var(--text-dim); text-decoration: none; font-size: 0.9rem; display: flex; align-items: center; gap: 12px; }

.footer-socials { display: flex; gap: 15px; margin-top: 25px; }
.footer-socials a { width: 40px; height: 40px; border: 1px solid var(--glass-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: 0.3s; }
.footer-socials a:hover { background: var(--accent-gold); color: #000; }

.bottom-footer { text-align: center; padding-bottom: 40px; color: var(--text-dim); font-size: 0.75rem; }

/* =========================================
   8. FLOATING ACTIONS & BACK TO TOP
   ========================================= */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp { background: #22c55e; }
.phone { background: var(--accent-gold); color: #000; }

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--accent-gold);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: 0.3s;
}
.back-to-top:hover { background: var(--accent-gold); color: #000; }

/* =========================================
   9. MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 992px) {
    .menu-toggle { display: block; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 30px;
        flex-direction: column;
        gap: 20px;
    }
    .nav-links.active { display: flex; }

    .hero-grid, .contact-grid, .dual-form-grid, .footer-grid { grid-template-columns: 1fr; }
    .input-row { flex-direction: column; gap: 15px; }
    
    h1 { font-size: 2.5rem; }
    .hero-main { padding: 40px 20px; text-align: center; }
    .main-logo { height: 32px; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .hero-side { padding: 30px 20px; }
    .brand-grid { grid-template-columns: 1fr; }
}
