/* MOBILE STYLES (Primary) */
:root {
    --primary: #ff6b00;
    --secondary: #0a2540;
}

body {
    -webkit-tap-highlight-color: transparent;
    line-height: 1.5;
}

/* Base Glass Effect for Mobile */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.soft-3d {
    box-shadow: 5px 5px 10px #d1d1d1, -5px -5px 10px #ffffff;
}

.inner-3d {
    box-shadow: inset 3px 3px 6px #d1d1d1, inset -3px -3px 6px #ffffff;
}

/* Mobile-specific adjustments */
@media (max-width: 1023px) {
    .section-padding {
        padding: 3rem 1rem;
    }
    
    .mobile-hide {
        display: none !important;
    }

    .hero-title {
        font-size: 2.75rem;
        line-height: 1.2;
    }
    
    .nav-floating {
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }
}

/* Animations */
@keyframes pulse-soft {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

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

/* Smooth Language Switch */
[data-t] {
    transition: opacity 0.3s ease;
}
