/* Zeqvornix App - Custom Styles */

/* Gradient Background */
.gradient-bg {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 50%, #0369a1 100%);
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Card Hover Effect */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Float Animation */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

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

/* Counter Animation */
.counter-animation {
    animation: countUp 2s ease-out forwards;
}

/* Smooth Scroll */
.scroll-smooth {
    scroll-behavior: smooth;
}

/* Navigation Link Underline Effect */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fbbf24;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Avatar Images */
.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Leader Image */
.leader-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #0ea5e9;
}

/* Review Avatar */
.review-avatar {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
}

/* Phone Input Container */
.phone-input-container {
    display: flex;
    align-items: center;
}

.phone-prefix {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-right: none;
    border-radius: 0.75rem 0 0 0.75rem;
    color: #374151;
    font-weight: 500;
}

.phone-prefix span {
    margin-right: 0.25rem;
}

/* Country Select Dropdown */
.country-select {
    padding: 0.75rem 0.5rem;
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-right: none;
    border-radius: 0.75rem 0 0 0.75rem;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    min-width: 100px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2rem;
}

.country-select:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.2);
}

.country-select option {
    padding: 0.5rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0ea5e9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0284c7;
}

/* Mobile Menu Animation */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Form Focus States */
input:focus, select:focus {
    outline: none;
    ring: 2px;
    ring-color: #0ea5e9;
}

/* Button Hover States */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.02);
}

/* Stats Counter */
.stats-number {
    font-variant-numeric: tabular-nums;
}

/* Crypto Card */
.crypto-card {
    transition: all 0.3s ease;
}

.crypto-card:hover {
    transform: translateY(-5px);
}

/* Testimonial Card */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .py-20 {
        padding-top: 1rem !important;
        padding-bottom: 5rem !important;
    }

    .leader-img {
        width: 60px;
        height: 60px;
    }
    
    .review-avatar {
        width: 48px;
        height: 48px;
    }
}

/* Loading Animation */
.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Shadow Effects */
.shadow-glow {
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.3);
}

/* Border Gradient */
.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #0ea5e9, #fbbf24) border-box;
}
