/* ===== Additional styles to append (WhatsApp float, hero stats, select, etc.) ===== */

/* WhatsApp Float Button */
.wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 9999;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: waPulse 2s infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 10px 30px rgba(37,211,102,0.6); }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7); }
}

/* Hero Stats */
.hero-stats {
    display: flex; gap: 40px; justify-content: center; margin-top: 52px;
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 32px; font-family: 'Outfit', sans-serif; font-weight: 800; color: var(--gold); line-height: 1; }
.hero-stat span { font-size: 13px; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }

/* Hero scroll hint */
.hero-scroll-hint {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.4); font-size: 18px; z-index: 3;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Contact select dropdown */
.contact-form select {
    width: 100%; padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; color: #aaa;
    font-family: 'Inter', sans-serif; font-size: 15px;
    transition: border-color 0.25s, background 0.25s;
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 18px center;
}
.contact-form select:focus { outline: none; border-color: var(--gold); background-color: rgba(255,255,255,0.05); }
.contact-form select option { background: #1c1c1c; color: #fff; }

/* Mobile Nav Overlay */
.nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    background: rgba(13,13,13,0.97);
    align-items: center; justify-content: center;
    gap: 36px; z-index: 999;
    animation: fadeIn 0.2s ease;
}
.nav-links.open a { font-size: 22px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Form success state */
.form-success {
    background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.4);
    color: #25D366; padding: 16px 20px; border-radius: 10px;
    text-align: center; font-weight: 600; display: none;
}

/* Mobile hero stats */
@media (max-width: 600px) {
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat strong { font-size: 26px; }
}
