@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --accent: #00FFC2;
    --accent-glow: rgba(0, 255, 194, 0.2);
}

html, body {
    overflow-x: hidden;
    overflow-x: clip;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #050505;
    color: white;
}

.accent-text {
    color: var(--accent);
}

.card-bg {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-bg:hover {
    border-color: rgba(0, 255, 194, 0.3);
    transform: translateY(-5px);
}

.glow-border {
    border: 1px solid var(--accent) !important;
    box-shadow: 0 0 30px rgba(0, 255, 194, 0.1);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary {
    background-color: white;
    color: black;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    transform: scale(1.02);
}

/* Ambient Glows */
.ambient-glow {
    position: absolute;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(60px);
    pointer-events: none;
}

input,
select,
textarea {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    font-size: 16px !important; /* Fixed: Stops iOS Safari from auto-zooming */
}

input:focus {
    border-color: var(--accent) !important;
    outline: none;
}


input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #111 inset !important; 
    -webkit-text-fill-color: white !important; 
    transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;

}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 10px;
    border: 3px solid #050505;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.mobile-nav-link {
    transition: all 0.3s ease;
}

#mobileMenu {
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobileMenu.active {
    transform: translateY(0);
}

/* Ensure images don't cause layout shifts */
img {
    height: auto;
    font-size: 0;
}

/* Floating WhatsApp Pulsing Animation */
@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wa-btn {
    animation: wa-pulse 2s infinite;
}

.social-icon-link {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon-link:hover {
    color: var(--accent);
    transform: translateY(-5px) scale(1.1);
}

