/* Additional CSS Components for LuxurGold */

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .nav-actions {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .language-switch {
        font-size: 11px;
        padding: 6px 12px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 997;
        /* Lower than the toggle button */
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
        padding: 15px 30px;
        border-radius: 25px;
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--gradient-gold);
        color: var(--white-pure);
    }

    .mobile-menu-toggle {
        position: relative;
        z-index: 998;
        /* Higher than the menu */
    }

    .mobile-menu-toggle.active .mobile-menu-bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.active .mobile-menu-bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .mobile-menu-bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Contact Section Enhancements */
.contact-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.contact-icon {
    font-size: 48px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Price Table Enhancements */
.price-table-container {
    position: relative;
    background: var(--white-pure);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}

.price-table thead {
    background: var(--gradient-gold);
    color: var(--white-pure);
}

.price-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    position: relative;
}

.price-table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.price-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-weight: 500;
    transition: all 0.3s ease;
}

.price-table tbody tr {
    transition: all 0.3s ease;
}

.price-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(5px);
}

.price-table tbody tr:hover td {
    color: var(--gold-dark);
}

.price-value {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--black-elegant);
    font-size: 15px;
}

.buyback-price {
    color: var(--gold-primary);
    font-weight: 700;
    position: relative;
}

.buyback-price::before {
    content: '▲';
    position: absolute;
    left: -15px;
    color: var(--gold-primary);
    font-size: 10px;
    opacity: 0.7;
}

/* Loading and Error States */
/* .loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    gap: 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-light);
    border-top: 4px solid var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading span {
    color: var(--gray-medium);
    font-weight: 500;
} */

.error-message {
    text-align: center;
    padding: 40px 20px;
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 10px;
    margin: 20px;
}

.error-message i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

/* Last Updated Info */
.last-updated {
    margin-top: 20px;
    text-align: center;
    color: var(--gray-medium);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.last-updated i {
    color: var(--gold-primary);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--white-pure);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

/* Language Switch Enhancement */
.language-switch {
    position: relative;
    overflow: hidden;
}

.language-switch::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.6s ease;
}

.language-switch:hover::before {
    left: 100%;
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .price-table th,
    .price-table td {
        padding: 12px 8px;
        font-size: 12px;
    }

    /* Gallery section removed */

    .feature-card {
        padding: 30px 15px;
    }

    .hero-buttons {
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }

    .logo-title {
        font-size: 20px;
    }

    .logo-tagline {
        font-size: 8px;
    }

    .nav-container {
        padding: 10px 15px;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .hero,
    .footer,
    #contact {
        display: none;
    }

    .section {
        padding: 20px 0;
    }

    .price-table {
        font-size: 12px;
    }

    .price-table th,
    .price-table td {
        padding: 8px;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-behavior {
        scroll-behavior: auto;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --gold-primary: #FFD700;
        --black-elegant: #000000;
        --white-pure: #FFFFFF;
        --gray-medium: #333333;
    }
}

/* Dark Mode Preparation */
/* @media (prefers-color-scheme: dark) {
    .navbar {
        background: rgba(26, 26, 26, 0.95);
    }
    
    .navbar.scrolled {
        background: rgba(26, 26, 26, 0.98);
    }
    
    .price-table-container {
        background: var(--gray-dark);
        color: var(--white-pure);
    }
    
    .feature-card {
        background: var(--gray-dark);
        color: var(--white-pure);
    }
} */