/* ============================================
   Kanno Garage - Custom Styles
   ============================================ */

/* Glass panel effect */
.glass-panel {
    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero overlay gradient */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(5, 7, 10, 0.2) 0%, rgba(5, 7, 10, 0.7) 60%, rgba(5, 7, 10, 1) 100%);
}

/* Text glow effect */
.text-glow {
    text-shadow: 0 0 25px rgba(0, 224, 153, 0.3);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #05070A;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00E099;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Particle float animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.8;
    }
}

.particle {
    animation: float 4s ease-in-out infinite;
}

.particle-delay-1 {
    animation-delay: 0.5s;
}

.particle-delay-2 {
    animation-delay: 1s;
}

.particle-delay-3 {
    animation-delay: 1.5s;
}

.particle-delay-4 {
    animation-delay: 2s;
}

/* Service card shimmer on hover */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.service-card:hover .shimmer-line {
    background: linear-gradient(90deg, transparent, rgba(0, 224, 153, 0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #00E099, #00b377);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glow border */
.glow-border {
    box-shadow: 0 0 15px rgba(0, 224, 153, 0.15),
        inset 0 0 15px rgba(0, 224, 153, 0.05);
}

.glow-border:hover {
    box-shadow: 0 0 25px rgba(0, 224, 153, 0.3),
        inset 0 0 25px rgba(0, 224, 153, 0.1);
}

/* Language switcher */
.lang-dropdown {
    position: relative;
}

.lang-dropdown .lang-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #0D1117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    min-width: 140px;
    z-index: 100;
}

.lang-dropdown:hover .lang-menu,
.lang-dropdown.active .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(-4px);
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #9CA3AF;
    font-size: 13px;
    transition: all 0.2s;
    text-decoration: none;
}

.lang-menu a:hover {
    background: rgba(0, 224, 153, 0.1);
    color: #00E099;
}

.lang-menu a.active-lang {
    color: #00E099;
    background: rgba(0, 224, 153, 0.05);
}

/* Contact form styles */
.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 18px;
    color: #E5E7EB;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.form-input:focus {
    border-color: #00E099;
    box-shadow: 0 0 0 3px rgba(0, 224, 153, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.form-input::placeholder {
    color: #4B5563;
}

/* Stat counter */
.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00E099, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: #0D1117;
    z-index: 200;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 80px 30px 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu.open {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Intersection observer reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ SALES CONVERSION STYLES ═══ */

/* Floating CTA Bar */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(to right, #0D1117, #161B22);
    border-top: 1px solid rgba(0, 224, 153, 0.2);
    padding: 12px 24px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(20px);
}

.floating-cta.visible {
    transform: translateY(0);
}

/* LINE Pulse Animation */
@keyframes linePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(6, 199, 85, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(6, 199, 85, 0);
    }
}

.line-pulse {
    animation: linePulse 2s ease-in-out infinite;
}

@keyframes greenPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 224, 153, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(0, 224, 153, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 224, 153, 0);
    }
}

.green-pulse {
    animation: greenPulse 2s ease-in-out infinite;
}

/* Trust Badge */
.trust-badge {
    background: rgba(0, 224, 153, 0.08);
    border: 1px solid rgba(0, 224, 153, 0.15);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    color: #00E099;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* Service CTA overlay */
.service-cta-btn {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s ease;
    white-space: nowrap;
    z-index: 10;
}

.service-card:hover .service-cta-btn {
    bottom: 20px;
}

/* Step indicator */
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

/* CTA Section gradient */
.cta-gradient {
    background: linear-gradient(135deg, rgba(0, 224, 153, 0.1) 0%, rgba(0, 224, 153, 0.02) 50%, rgba(0, 100, 200, 0.05) 100%);
}

/* Shake animation for attention */
@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-3deg);
    }

    75% {
        transform: rotate(3deg);
    }
}

.shake-hover:hover {
    animation: shake 0.4s ease-in-out;
}