/* Xhino Custom Styles */
* { font-family: 'Vazirmatn', sans-serif; }

body {
    background: linear-gradient(135deg, #0A0E1A 0%, #050810 100%);
    overflow-x: hidden;
}

.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 179, 66, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #7CB342 0%, #FFD600 50%, #B3E5FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-green { box-shadow: 0 0 30px rgba(124, 179, 66, 0.5); }
.glow-yellow { box-shadow: 0 0 30px rgba(255, 214, 0, 0.5); }
.glow-blue { box-shadow: 0 0 30px rgba(179, 229, 252, 0.5); }

.bg-grid {
    background-image: 
        linear-gradient(rgba(124, 179, 66, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 179, 66, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.nav-blur {
    backdrop-filter: blur(20px);
    background: rgba(10, 14, 26, 0.8);
}

.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before { left: 100%; }

.icon-float { animation: float 3s ease-in-out infinite; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-slow { animation: float 8s ease-in-out infinite; }
.animate-slide-up { animation: slideUp 0.8s ease-out; }
.animate-fade-in { animation: fadeIn 1s ease-out; }

@keyframes slideUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stat-card {
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.1), rgba(255, 214, 0, 0.1));
    border: 1px solid rgba(124, 179, 66, 0.3);
}

.pricing-featured {
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.2), rgba(255, 214, 0, 0.1));
    border: 2px solid #7CB342;
    transform: scale(1.05);
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(31, 41, 55, 0.9));
    border: 1px solid rgba(124, 179, 66, 0.2);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0A0E1A; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #7CB342, #2D5016); border-radius: 5px; }

.hero-image-container {
    position: relative;
    transform-style: preserve-3d;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, #7CB342, #FFD600, #B3E5FC);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}