/* Smooth animations */
* {
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* ============================================
   MODERNE STYLING
   ============================================ */

/* Better button styling */
.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: rgba(160, 174, 192, 0.1);
    border: 1px solid rgba(160, 174, 192, 0.3);
    color: #a0aec0;
}

.btn-secondary:hover {
    background: rgba(160, 174, 192, 0.2);
    color: #e8f0ff;
}

/* ============================================
   MODERNE FOOTER STYLING
   ============================================ */

.footer-modern {
    background: linear-gradient(to bottom, rgba(15, 20, 25, 0.8), rgba(26, 31, 46, 0.95));
    border-top: 1px solid rgba(74, 158, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content {
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Brand Section */
.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand i {
    font-size: 2rem;
    color: #2563eb;
    margin-right: 0.75rem;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4a9eff 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.trust-badge {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.trust-badge:hover {
    transform: scale(1.05);
    opacity: 1;
}

.trust-badge img {
    height: 40px;
    width: auto;
}

/* Social Media */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 8px;
    color: #4a9eff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: #2563eb;
    transform: translateY(-2px);
    color: #6eb3ff;
}

/* Column Headings */
.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #e8f0ff;
    margin-bottom: 1.25rem;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    font-size: 0.95rem;
}

.footer-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #2563eb, #4a9eff);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #4a9eff;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Language Button */
.footer-lang-btn {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 8px;
    color: #e8f0ff;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-lang-btn i {
    color: #4a9eff;
}

.footer-lang-btn .iti-flag {
    margin: 0 0.25rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(74, 158, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.copyright {
    color: #8a9bb5;
    font-size: 0.875rem;
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.payment-methods i {
    font-size: 1.75rem;
    color: #a0aec0;
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: #4a9eff;
    transform: translateY(-2px);
}

/* ============================================
   MODAL STYLING
   ============================================ */

.modal-modern .modal-content {
    background: #151a24;
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-modern .modal-header {
    background: #1a1f2e;
    border-bottom: 1px solid rgba(74, 158, 255, 0.15);
    border-radius: 12px 12px 0 0;
}

.modal-modern .modal-title {
    color: #e8f0ff;
    font-weight: 600;
}

.modal-section-title {
    color: #e8f0ff;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.item-selector-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.selector-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.05);
    border: 2px solid rgba(74, 158, 255, 0.2);
    border-radius: 8px;
    color: #e8f0ff;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.selector-item:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: #4a9eff;
    transform: translateY(-2px);
}

.selector-item.active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(74, 158, 255, 0.2));
    border-color: #2563eb;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.selector-text {
    font-weight: 500;
}

.modal-modern .modal-footer {
    background: #1a1f2e;
    border-top: 1px solid rgba(74, 158, 255, 0.15);
    border-radius: 0 0 12px 12px;
}