/* Homepage Modern Design Styles */

/* Universal Font Application */
* {
    font-family: 'Yekan', 'Vazir', 'Tahoma', 'Arial', sans-serif !important;
}

/* Exclude Icons from Font Family */
i, .fas, .far, .fab, .fa, [class*="fa-"], [class*="icon-"] {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', 'Font Awesome 6 Regular', 'Font Awesome 5 Free', 'Font Awesome 5 Brands', 'Font Awesome 5 Regular', 'Font Awesome 4.7.0' !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #8A9FFB 0%, #6A5ACD 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Floating Cards Animation */
.hero-illustration {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Business Card Section */
.business-card {
    background: linear-gradient(135deg, #8A9FFB 0%, #6A5ACD 100%);
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
}

.business-card:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

/* Modern Business Card Styles */
.business-card-modern {
    background: linear-gradient(135deg, #8A9FFB 0%, #6A5ACD 100%);
    border: none;
    border-radius: 25px;
    transform: perspective(1000px) rotateY(-15deg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.business-card-modern:hover {
    transform: perspective(1000px) rotateY(-5deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.business-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.business-card-modern:hover::before {
    transform: translateX(100%);
}

.card-header-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px 20px 0 0;
    position: relative;
}

.avatar-circle-modern {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.contact-item-modern {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item-modern:last-child {
    border-bottom: none;
}

.contact-icon-wrapper {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-code-modern {
    position: relative;
}

.qr-container {
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #007bff, transparent);
    animation: scan 2s ease-in-out infinite;
}

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

.social-links-modern {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link-modern {
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link-modern:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    animation: floatElement 4s ease-in-out infinite;
    z-index: 10;
}

.floating-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.floating-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

.floating-4 {
    top: 15%;
    right: 5%;
    animation-delay: 0.5s;
}

.floating-5 {
    top: 25%;
    left: 10%;
    animation-delay: 1.5s;
}

.floating-6 {
    bottom: 20%;
    right: 15%;
    animation-delay: 2.5s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-15px) rotate(10deg); opacity: 1; }
}

/* Section Badges */
.section-badge {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Text Gradients */
.text-gradient-primary {
    background: linear-gradient(135deg, #8A9FFB 0%, #6A5ACD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Feature Lists */
.features-list-modern .feature-item-modern {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 15px;
}

.features-list-modern .feature-item-modern:hover {
    background: rgba(0, 0, 0, 0.02);
    transform: translateX(5px);
}

.feature-icon-modern {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.features-list-modern .feature-item-modern:hover .feature-icon-modern {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Bank Card Section */
.bank-card-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.bank-card-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Modern Bank Card Styles */
.bank-card-visual-modern {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border: none;
    border-radius: 25px;
    transform: perspective(1000px) rotateY(15deg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bank-card-visual-modern:hover {
    transform: perspective(1000px) rotateY(5deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.bank-card-visual-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.bank-card-visual-modern:hover::before {
    transform: translateX(100%);
}

.card-header-modern-bank {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    position: relative;
}

.bank-icon-wrapper {
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* New Card Content Styles */
.card-content-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.card-title-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.card-features {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
}

.feature-row {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.feature-row:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.qr-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
}

.qr-container-modern {
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.qr-container-modern:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.qr-scan-line-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #28a745, transparent);
    animation: scan 2s ease-in-out infinite;
}

.card-actions .btn-group {
    gap: 5px;
}

.card-actions .btn {
    border-radius: 20px;
    font-size: 0.8rem;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.card-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Print-specific styles */
@media print {
    .bank-card-visual-modern {
        transform: none !important;
        box-shadow: none !important;
        break-inside: avoid;
    }
    
    .floating-element {
        display: none !important;
    }
    
    .card-actions {
        display: none !important;
    }
}

/* Enhanced print quality indicators */
.print-quality-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(40, 167, 69, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
}

.print-quality-indicator::before {
    content: '300 DPI';
}

/* Share button enhancements */
.share-button {
    position: relative;
    overflow: hidden;
}

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

.share-button:hover::before {
    left: 100%;
}

/* Download progress indicator */
.download-progress {
    position: relative;
    overflow: hidden;
}

.download-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.4), transparent);
    animation: downloadShimmer 2s infinite;
}

@keyframes downloadShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.card-number-section-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.card-number-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.number-group-modern {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.number-digit {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.number-digit:hover {
    transform: scale(1.1);
    color: #f39c12;
}

.card-details-modern {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.chip-visual {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 5px;
    position: relative;
}

.chip-visual::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.3) 2px,
        rgba(255, 255, 255, 0.3) 4px
    );
    border-radius: 2px;
}

/* Enhanced Buttons */
.btn-lg {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.shadow-2xl {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Shop Introduction Cards */
.intro-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 20px;
}

.intro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-card ul {
    list-style: none;
    padding: 0;
}

.intro-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.intro-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Seller Cards */
.seller-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 20px;
}

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

.seller-header {
    background: linear-gradient(135deg, #8A9FFB 0%, #6A5ACD 100%);
    border-radius: 20px 20px 0 0;
}

.seller-avatar .avatar-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.info-item {
    background: rgba(102, 126, 234, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

/* Stats Section */
.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #8A9FFB 0%, #6A5ACD 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .business-card,
    .bank-card-visual {
        transform: none;
    }
    
    .business-card:hover,
    .bank-card-visual:hover {
        transform: none;
    }
    
    .business-card-modern,
    .bank-card-visual-modern {
        transform: none;
        margin: 20px 0;
    }
    
    .floating-element {
        display: none;
    }
    
    .number-digit {
        font-size: 1.2rem;
    }
    
    .avatar-circle-modern {
        width: 70px;
        height: 70px;
    }
    
    .bank-icon-wrapper {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

/* Utility Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, #8A9FFB 0%, #6A5ACD 100%);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.opacity-75 {
    opacity: 0.75;
}

.opacity-90 {
    opacity: 0.9;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Button Hover Effects */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Enhanced Animations and Interactive Effects */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Interactive Card Effects */
.business-card-modern,
.bank-card-visual-modern {
    cursor: pointer;
}

.business-card-modern:hover .avatar-circle-modern,
.bank-card-visual-modern:hover .bank-icon-wrapper {
    animation: pulse 1s ease-in-out;
}

.business-card-modern:hover .qr-container,
.bank-card-visual-modern:hover .chip-visual {
    animation: bounce 1s ease-in-out;
}

/* Enhanced QR Code */
.qr-container {
    position: relative;
    overflow: hidden;
}

.qr-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

/* Enhanced Social Links */
.social-link-modern {
    position: relative;
    overflow: hidden;
}

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

.social-link-modern:hover::before {
    left: 100%;
}

/* Enhanced Number Digits */
.number-digit {
    position: relative;
    cursor: pointer;
}

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

.number-digit:hover::after {
    width: 100%;
}

/* Enhanced Feature Icons */
.feature-icon-modern {
    position: relative;
    overflow: hidden;
}

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

.features-list-modern .feature-item-modern:hover .feature-icon-modern::before {
    left: 100%;
}

/* Enhanced Section Badges */
.section-badge {
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

/* Enhanced Buttons */
.btn-lg {
    position: relative;
    overflow: hidden;
}

.btn-lg::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-lg:hover::before {
    left: 100%;
}

/* Card Tilt Effect */
.business-card-modern,
.bank-card-visual-modern {
    transform-style: preserve-3d;
}

.business-card-modern .card-body,
.bank-card-visual-modern .card-body {
    transform: translateZ(20px);
}

/* Enhanced Shadows */
.business-card-modern:hover,
.bank-card-visual-modern:hover {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .business-card-modern,
    .bank-card-visual-modern {
        transform: none !important;
        filter: none;
    }
    
    .floating-element {
        display: none;
    }
    
    .section-badge::before {
        animation: none;
    }
    
    .btn-lg::before {
        display: none;
    }
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

/* Focus States for Accessibility */
.business-card-modern:focus,
.bank-card-visual-modern:focus,
.social-link-modern:focus,
.btn-lg:focus {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .business-card-modern,
    .bank-card-visual-modern {
        border: 2px solid #000;
    }
    
    .text-gradient-primary,
    .text-gradient-success {
        color: #000 !important;
        -webkit-text-fill-color: #000 !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .business-card-modern,
    .bank-card-visual-modern,
    .floating-element,
    .social-link-modern,
    .feature-icon-modern,
    .section-badge,
    .btn-lg {
        animation: none;
        transition: none;
    }
    
    .qr-scan-line {
        animation: none;
    }
    
    .business-card-modern::before,
    .bank-card-visual-modern::before {
        display: none;
    }
}
