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

:root {
    --primary-color: #1e3a8a; /* Deep Blue */
    --accent-color: #b45309; /* Bronze/Amber */
    --bg-light: #f8fafc;
    --text-main: #1f2937;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

/* Wizard Form Transitions */
.wizard-step {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease;
    transform: translateX(20px);
}

.wizard-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.wizard-step.exiting {
    opacity: 0;
    transform: translateX(-20px);
}

/* Radio Button Custom Styling */
.custom-radio:checked + div {
    border-color: var(--primary-color);
    background-color: #eff6ff; /* blue-50 */
    box-shadow: 0 4px 6px -1px rgba(30, 58, 138, 0.1), 0 2px 4px -1px rgba(30, 58, 138, 0.06);
}
.custom-radio:checked + div .radio-indicator {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.custom-radio:checked + div .radio-indicator svg {
    display: block;
}

/* Progress Bar */
.progress-bar {
    transition: width 0.5s ease;
}

/* Focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Hero Pattern */
.hero-pattern {
    background-color: #1e3a8a;
    background-image: 
        radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(225,39%,30%,1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(339,49%,30%,1) 0, transparent 50%);
}

#whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#whatsapp-float:hover {
    transform: scale(1.1);
}

/* Mobile responsive menu transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
#mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}
/* Video Section Styling */
.video-container video {
    border-radius: 0.75rem;
}

.video-container video::-webkit-media-controls-panel {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

/* Smooth animations for video section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-section-animate {
    animation: fadeInUp 0.8s ease-out;
}

/* Ensure video maintains aspect ratio on all devices */
@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
    }
}

/* Subtle pulse animation for floating badge */
@keyframes subtle-pulse {
    0%, 100% {
        transform: rotate(3deg) scale(1);
    }
    50% {
        transform: rotate(3deg) scale(1.05);
    }
}