/* Rent Motorbike Patong — tema COAST dark */
* { font-family: 'Inter', sans-serif; }
html { background: #09090b; }
::selection { background-color: rgb(120, 53, 15); color: white; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #09090b; }
::-webkit-scrollbar-thumb { background: #27272a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3f3f46; }

.noise::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

.hero-bg {
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gradient-text {
    background: linear-gradient(to right, #ffffff, #a1a1aa);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-warm {
    background: linear-gradient(135deg, #f59e0b, #fb923c, #fbbf24);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.glass { background: rgba(255,255,255,0.03); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08); }
.glass-hover:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-glow { 0%,100% { box-shadow: 0 0 20px rgba(245,158,11,0.3); } 50% { box-shadow: 0 0 40px rgba(245,158,11,0.6); } }
@keyframes float { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

.marquee-track { animation: marquee-scroll 40s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }

.cta-glow { animation: pulse-glow 3s ease-in-out infinite; }
.cta-glow:hover { animation: none; box-shadow: 0 0 50px rgba(245,158,11,0.5); }

.tilt-card { transition: transform 0.3s ease, box-shadow 0.3s ease; transform-style: preserve-3d; }

.fleet-img-wrapper { position: relative; overflow: hidden; background:#111114; }
.fleet-img-wrapper img { transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.fleet-img-wrapper:hover img { transform: scale(1.08); }

.step-connector { background: linear-gradient(to right, rgba(245,158,11,0.5), rgba(245,158,11,0.05)); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), padding 0.3s ease; }
.faq-answer.open { max-height: 300px; }
.faq-icon { transition: transform 0.3s ease; }
.faq-icon.rotated { transform: rotate(45deg); }

.magnetic-btn { transition: transform 0.2s ease-out; }

.border-gradient { position: relative; }
.border-gradient::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
    background: linear-gradient(135deg, rgba(245,158,11,0.3), transparent 50%, rgba(20,184,166,0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

.mobile-menu { transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.mobile-menu.open { transform: translateX(0); }

.tropical-tint {
    background: radial-gradient(ellipse at 30% 20%, rgba(245,158,11,0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(20,184,166,0.04) 0%, transparent 60%);
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track, .cta-glow { animation: none; }
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
}
