/* Solutions Car Rental - Dark Blue, Car Rental Design */

body {
    font-family: 'Figtree', sans-serif;
    background: #0c1929;
    color: #ffffff;
}

/* Accent: blue / light blue for contrast */
.text-gradient {
    background: linear-gradient(to right, #93c5fd, #ffffff, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}
.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.glass-card {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.2;
}

nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
}

.logo-nav, .logo-text {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.logo-nav:hover, .logo-text:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

@keyframes logoFadeInSlide {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes logoFadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}
.logo-footer:hover { transform: scale(1.05); opacity: 0.9; }

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: float 6s ease-in-out infinite; animation-delay: 2s; }

@keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}
.fade-in-scale { animation: fadeInScale 0.6s ease-out forwards; }

.card-3d {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card-3d:hover {
    transform: translateY(-8px);
}

@keyframes staggerFade {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}
.stagger-item { opacity: 0; animation: staggerFade 0.5s ease-out forwards; }
.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.15); }
    50% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.25); }
}
.pulse-glow { animation: pulseGlow 2s ease-in-out infinite; }

@keyframes blobMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -10px) scale(1.05); }
}
.blob-animated { animation: blobMove 18s ease-in-out infinite; }

.btn-ripple { position: relative; overflow: hidden; }
@keyframes ripple {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(4); opacity: 0; }
}
.btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn-ripple:active::after {
    width: 300px; height: 300px;
    animation: ripple 0.6s ease-out;
}

.progress-animated { animation: progressFill 2s ease-out forwards; }
@keyframes progressFill {
    0% { width: 0%; }
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.1);
}

.magnetic-btn { transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); }
.icon-spin { transition: transform 0.3s ease; }
.icon-spin:hover { transform: rotate(360deg); }

html { scroll-behavior: smooth; }

.fade-in-up {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-gradient-white {
    background: linear-gradient(to right, #93c5fd, #ffffff, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tab content */
@keyframes animate-fade-in {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: animate-fade-in 0.5s ease-out; }

/* Print */
@media print {
    @page { size: A4; margin: 15mm; }
    body { background: white !important; color: #111; print-color-adjust: exact; }
    nav, .whatsapp-float, .pdf-download-float { display: none !important; }
    section, main, .max-w-7xl, .max-w-4xl { max-height: none !important; overflow: visible !important; }
}
