/* --- GLOBAL --- */
body {
    background-color: #012A68; 
    cursor: none; 
    overflow-x: hidden;
    color: white;
}

/* --- CUSTOM CURSOR --- */
.cursor-dot { width: 8px; height: 8px; background: #FFD700; position: fixed; top: 0; left: 0; border-radius: 50%; z-index: 9999; pointer-events: none; }
.cursor-outline { width: 40px; height: 40px; border: 1px solid rgba(255, 215, 0, 0.5); position: fixed; top: 0; left: 0; border-radius: 50%; z-index: 9999; pointer-events: none; transition: 0.1s; }

/* --- LOGO --- */
.logo-wrapper {
    width: 180px; 
    height: 100px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hq-logo-raw {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.3);
}

/* --- TEXT STYLES --- */
.gold-text { background: linear-gradient(to right, #C5A059, #FFD700, #FDB931, #C5A059); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-size: 200% auto; animation: shine 4s linear infinite; }
@keyframes shine { to { background-position: 200% center; } }

/* --- BUTTONS --- */
.btn-primary { padding: 0.6rem 1.5rem; background-color: #FFD700; color: #012A68; font-weight: 700; border-radius: 9999px; transition: all 0.3s ease; box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); }
.btn-primary:hover { transform: scale(1.05); }

/* --- HEADER TRANSITION --- */
.header-scrolled {
    background-color: rgba(1, 42, 104, 0.95) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.header-scrolled .logo-wrapper { width: 120px !important; height: 65px !important; }
.header-scrolled #header-stamp { opacity: 0 !important; transform: scale(0); width: 0 !important; margin: 0 !important; }
.header-scrolled .btn-primary { padding: 0.5rem 1.2rem; font-size: 0.9rem; }

/* --- PERFECT SLIDER (FILLS CONTAINER COMPLETELY) --- */
.perfect-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.perfect-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.perfect-slide.active {
    opacity: 1;
}

/* Responsive Slider */
@media (max-width: 768px) {
    .perfect-slider-wrapper {
        aspect-ratio: 1.3 / 1;
    }
}

@media (max-width: 480px) {
    .perfect-slider-wrapper {
        aspect-ratio: 1.2 / 1;
    }
}

/* --- MARQUEE ANIMATION FIX --- */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

.animate-marquee {
    animation: marquee 25s linear infinite;
    display: flex;
    width: max-content;
}

/* --- FIXED STATS SECTION (SINGLE LINE, NO OVERLAP) --- */
.stats-section-fixed {
    padding: 3rem 0;
    background: #000f26;
    position: relative;
    overflow: hidden;
}

.stats-grid-fixed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card-fixed {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 21, 48, 0.6) 0%, rgba(1, 42, 104, 0.4) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.stat-card-fixed:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.12);
    background: linear-gradient(135deg, rgba(0, 21, 48, 0.8) 0%, rgba(1, 42, 104, 0.6) 100%);
}

.stat-card-fixed::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.08), transparent);
    transition: left 0.5s;
}

.stat-card-fixed:hover::after {
    left: 100%;
}

.stat-icon-fixed {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.stat-card-fixed:hover .stat-icon-fixed {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    border-color: rgba(255, 215, 0, 0.5);
    transform: scale(1.1) rotate(5deg);
}

.stat-number-fixed {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-label-fixed {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

/* Responsive Stats Fixed */
@media (max-width: 1024px) {
    .stats-grid-fixed {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .stat-card-fixed {
        padding: 1.5rem 1rem;
    }
    
    .stat-number-fixed {
        font-size: 2rem;
    }
    
    .stat-icon-fixed {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .stats-grid-fixed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid-fixed {
        grid-template-columns: 1fr;
    }
}

/* --- SERVICE ICON BOX (FONT AWESOME) --- */
.service-icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.holo-card:hover .service-icon-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    border-color: rgba(255, 215, 0, 0.5);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

/* Service Read More Button */
.service-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: #FFD700;
    color: #012A68;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    text-decoration: none;
}

.service-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* --- ANIMATIONS --- */
@keyframes spin-slow { 100% { transform: rotate(360deg); } }
.animate-spin-slow { animation: spin-slow 15s linear infinite; }

/* --- WHATSAPP PILL --- */
.wa-pill {
    position: fixed; bottom: 30px; right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 20px 10px 10px;
    display: flex; align-items: center; gap: 12px;
    color: white; text-decoration: none;
    transition: all 0.3s ease;
    z-index: 9999 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.wa-pill:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-5px); }
.wa-icon-modern { width: 40px; height: 40px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; }
.wa-text-modern { font-weight: 600; font-size: 0.95rem; font-family: 'Syne', sans-serif; }
.wa-status-dot { width: 10px; height: 10px; background: #25D366; border-radius: 50%; position: absolute; top: 10px; right: 10px; box-shadow: 0 0 10px #25D366; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

/* FOOTER HEAD */
.footer-head { color: white; font-weight: 700; font-size: 1.125rem; margin-bottom: 1.5rem; }

/* RESPONSIVE - MOBILE FIXES */
@media (max-width: 768px) {
    .wa-pill { bottom: 20px; right: 20px; padding: 8px 16px 8px 8px; }
    .btn-primary { display: none; }
    
    #home {
        padding-bottom: 10px !important;
    }
}

/* CARDS & FORM */
.bento-card { background: rgba(1, 21, 48, 0.6); backdrop-filter: blur(10px); transition: all 0.3s ease; }
.bento-card:hover { transform: translateY(-5px); border-color: rgba(255, 215, 0, 0.3); }

.holo-card { background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%); backdrop-filter: blur(10px); transition: all 0.4s ease; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); }
.holo-card:hover { transform: translateY(-10px); border-color: rgba(255, 215, 0, 0.3); box-shadow: 0 0 20px rgba(255, 215, 0, 0.1); }

.glass-panel { background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%); backdrop-filter: blur(15px); }

.form-input { width: 100%; background: #001a45; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 0.75rem; padding: 0.75rem 1rem; color: white; outline: none; transition: border-color 0.3s; }
.form-input:focus { border-color: #FFD700; }
.btn-submit { width: 100%; padding: 1rem; background: #FFD700; color: #012A68; font-weight: 700; border-radius: 0.75rem; font-family: 'Syne', sans-serif; font-size: 1.1rem; transition: transform 0.2s; cursor: pointer; border: none; }
.btn-submit:hover { transform: scale(1.02); }

/* --- ADVANTAGE SECTION (PROFESSIONAL B2B) --- */
.advantage-card {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 21, 48, 0.7) 0%, rgba(1, 42, 104, 0.5) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 1.25rem;
    padding: 2rem 1.75rem;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
    background: linear-gradient(135deg, rgba(0, 21, 48, 0.9) 0%, rgba(1, 42, 104, 0.7) 100%);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card-featured {
    border: 2px solid rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(1, 42, 104, 0.6) 100%);
}

.advantage-featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FFD700;
    color: #012A68;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
}

.advantage-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #FFD700;
    margin-bottom: 1.25rem;
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon-wrapper {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.2));
    border-color: rgba(255, 215, 0, 0.6);
    transform: scale(1.15) rotate(5deg);
}

.advantage-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s;
}

.advantage-card:hover .advantage-title {
    color: #FFD700;
}

.advantage-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Responsive Advantage */
@media (max-width: 1024px) {
    .advantage-card {
        padding: 1.75rem 1.5rem;
    }
    
    .advantage-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .advantage-card {
        padding: 1.5rem 1.25rem;
    }
    
    .advantage-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .advantage-title {
        font-size: 1rem;
    }
}
