/* GoWithParents Custom Stylesheet - Mobile Optimized & Premium */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --brand-blue: #0D47A1;
    --brand-orange: #FF9800;
    --brand-cream: #FAF8F5;
    --brand-emerald: #1E4D40;
}

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

::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.05);
}

.dark ::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(13, 71, 161, 0.3);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(13, 71, 161, 0.6);
}

/* Hide Scrollbar for Horizontal Steppers on Mobile */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Prevent iOS Auto-Zoom on Input Focus */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="number"],
    input[type="tel"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Keyframes & Animations */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 152, 0, 0.4); }
    50% { box-shadow: 0 0 30px rgba(255, 152, 0, 0.7); }
}

@keyframes radarPing {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

@keyframes dashRoute {
    to { stroke-dashoffset: -40; }
}

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

.animate-pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

.animate-radar {
    animation: radarPing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-route {
    stroke-dasharray: 8 6;
    animation: dashRoute 2s linear infinite;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.dark .glass-panel {
    background: rgba(30, 41, 59, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(13, 71, 161, 0.12);
}

/* Touch Targets Minimum Height for Mobile */
button, input, select, textarea {
    touch-action: manipulation;
}

/* Smooth Tab Transitions */
.view-section {
    opacity: 1;
    transition: opacity 0.25s ease-in-out;
}

.view-section.hidden {
    display: none;
    opacity: 0;
}
