/* style.css */
body { 
    margin: 0; 
    padding: 0; 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    overflow-x: hidden; 
}

.hero-shape { 
    border-bottom-left-radius: 80px; 
    border-bottom-right-radius: 80px; 
}

@media (max-width: 768px) { 
    .hero-shape { 
        border-bottom-left-radius: 40px; 
        border-bottom-right-radius: 40px; 
    } 
}

.page-section { display: none; }
.page-section.active { display: block; }

.emerald-gradient { background: linear-gradient(135deg, #043d2e 0%, #065f46 100%); }
.modal-overlay { background: rgba(4, 61, 46, 0.8); backdrop-filter: blur(8px); transition: all 0.3s ease; }

.badge-2026 {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 45px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 30;
}

.badge-2026:hover { transform: rotate(0deg) scale(1.05); }

.phone-line {
    display: inline-block;
    border-bottom: 4px solid #EAB308;
    padding-bottom: 2px;
}

/* Floating Button Animation */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.animate-pulse-green { animation: pulse-green 2s infinite; }