/* Core Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Custom Gradients */
.hero-gradient {
    background: 
        radial-gradient(circle at 10% 20%, rgba(30, 58, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(50, 168, 82, 0.1) 0%, transparent 40%);
    background-color: #020408;
}

.glass-nav {
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background: rgba(2, 4, 8, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Form Styling */
.form-input {
    width: 100%;
    background: rgba(2, 4, 8, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 12px;
    color: white;
    outline: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #1E3AFF;
    background: rgba(30, 58, 255, 0.05);
}

/* Scrollbars */
.custom-scroll::-webkit-scrollbar {
    width: 5px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: #020408;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #1e3aff;
    border-radius: 10px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #128c7e;
}

/* Responsiveness */
@media (max-width: 768px) {
    .font-heading.text-6xl { font-size: 3.5rem; }
    .pt-52 { padding-top: 8rem; }
}