/* ========================================
   CSS Custom Properties (Design Tokens)
   ======================================== */
:root {
    /* Colors - Primary Palette */
    --color-primary: #0a1942;
    --color-primary-light: #1a2f5a;
    --color-accent: #d4af37;
    --color-accent-light: #e8c547;

    /* Colors - Semantic */
    --color-success: #27ae60;
    --color-danger: #e74c3c;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #f5f5f5;
    --color-bg-card: #ffffff;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --color-bg: #0d1117;
        --color-bg-card: #161b22;
        --color-text: #e6edf3;
        --color-text-light: #8b949e;
        --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.4);
        --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.5);
    }
}

/* ========================================
   Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

/* Fluid Typography - Auto scaling based on screen width */
@media (min-width: 320px) {
    html {
        font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (768 - 320)));
    }
}

@media (min-width: 768px) {
    html {
        font-size: calc(16px + (18 - 16) * ((100vw - 768px) / (1920 - 768)));
    }
}

@media (min-width: 1920px) {
    html {
        font-size: 18px;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Compact Footer */
footer {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: var(--space-md);
    }
}

.footer-section h3 {
    color: var(--color-accent);
    font-size: clamp(13px, 1.3vw, 15px);
    margin-bottom: var(--space-sm);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(11px, 1.1vw, 13px);
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 28px;
    height: 28px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 12px;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: clamp(11px, 1.1vw, 13px);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
    font-size: clamp(11px, 1.1vw, 13px);
}

.footer-contact-item i {
    color: var(--color-accent);
    width: 14px;
}

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding: var(--space-sm) var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(10px, 1vw, 12px);
    margin: 0;
}

main {
    flex: 1;
}

header {
    background: linear-gradient(135deg, #0a1942 0%, #1a2f5a 100%);
    /* padding: clamp(12px, 2vw, 25px) clamp(15px, 3vw, 60px); */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: clamp(1200px, 90vw, 1800px);
    margin: 0 auto;
}

.nav-left,
.nav-right {
    display: flex;
    gap: clamp(15px, 3vw, 40px);
    align-items: center;
    flex: 1;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.logo {
    flex: 0 0 auto;
    text-align: center;
    padding: 0 30px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-image {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-item-wrapper {
    position: relative;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    display: inline-block;
    cursor: pointer;
    padding-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.nav-item:hover {
    color: #d4af37;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item.active {
    color: #d4af37;
}

.dropdown-icon {
    margin-left: 5px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item-wrapper.open .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item-wrapper.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #0a1942;
    text-decoration: none;
    font-size: clamp(12px, 1.1vw, 15px);
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Montserrat', sans-serif;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #0a1942;
    color: #d4af37;
}

.icon-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-btn {
    color: white;
    background: none;
    border: none;
    font-size: clamp(18px, 2vw, 22px);
    cursor: pointer;
    transition: color 0.3s ease;
}

.icon-btn:hover {
    color: #d4af37;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.mobile-toggle:hover {
    color: #d4af37;
}

/* Mobile Sidebar Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: linear-gradient(135deg, #0a1942 0%, #1a2f5a 100%);
    z-index: 9999;
    overflow-y: auto;
    transition: left 0.3s ease;
    padding: 20px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #d4af37;
}

.mobile-nav-item {
    display: block;
    color: white;
    text-decoration: none;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 700;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: #d4af37;
    padding-left: 20px;
}

.mobile-dropdown {
    margin-bottom: 10px;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 700;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.mobile-dropdown-toggle:hover {
    color: #d4af37;
    padding-left: 20px;
}

.mobile-dropdown-icon {
    transition: transform 0.3s ease;
}

.mobile-dropdown.open .mobile-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.mobile-dropdown.open .mobile-dropdown-content {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: clamp(12px, 1.3vw, 14px);
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.mobile-dropdown-item:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

.mobile-cart {
    display: none;
}

/* Content Container */
.content-wrapper {
    padding: clamp(24px, 5vw, 48px) clamp(16px, 4vw, 40px);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Dashboard Grid - Two Column Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: stretch;
    /* Equal height */
}

@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Dashboard Cards */
.dashboard-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(212, 175, 55, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-bottom: 3px solid var(--color-accent);
    flex-shrink: 0;
}

.card-header h3 {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.card-header h3 i {
    font-size: 1.1em;
}

.card-header .last-updated {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-accent);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Card body fills remaining space */
.dashboard-card>*:not(.card-header) {
    flex: 1;
}

/* Adjust table inside card */
.dashboard-card .price-table {
    border-radius: 0;
    box-shadow: none;
    border: none;
    margin: 0;
}

.dashboard-card .price-table::before {
    display: none;
}

/* Adjust chart inside card */
.dashboard-card #chart-wrapper {
    border-radius: 0;
    box-shadow: none;
    border: none;
    max-width: 100%;
    height: 100%;
    min-height: 380px;
}

/* Chart card without header */
.chart-card {
    border-top: none;
}

.chart-card #chart-wrapper {
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: clamp(40px, 8vw, 80px) clamp(20px, 4vw, 60px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: clamp(28px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.last-updated {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-accent);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-xl);
    font-size: clamp(11px, 1.2vw, 14px);
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.page-title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 44px);
    font-weight: 700;
    text-align: center;
    margin-bottom: clamp(20px, 4vw, 48px);
    position: relative;
}

.page-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    margin: var(--space-md) auto 0;
    border-radius: 2px;
}

/* Table Styles - Premium Glassmorphism */
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg-card);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.price-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light), var(--color-accent));
}

.price-table thead tr {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.price-table th {
    padding: clamp(12px, 2vw, 24px);
    color: var(--color-accent);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(13px, 1.5vw, 18px);
    text-align: center;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-table th:first-child {
    text-align: left;
    padding-left: clamp(16px, 2vw, 32px);
}

.price-table th:last-child {
    border-right: none;
}

.price-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition-smooth);
}

.price-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
    box-shadow: inset 4px 0 0 var(--color-accent);
}

.price-table tbody tr:last-child {
    border-bottom: none;
}

.price-table td {
    padding: clamp(10px, 2vw, 20px) clamp(8px, 1.5vw, 24px);
    font-family: var(--font-body);
    font-weight: 600;
    text-align: center;
    font-size: clamp(12px, 1.3vw, 16px);
    color: var(--color-text);
}

.price-table td:first-child {
    color: var(--color-primary);
    text-align: left;
    font-weight: 700;
    padding-left: clamp(16px, 2vw, 32px);
}

.price-buy {
    color: var(--color-success) !important;
    font-weight: 700 !important;
}

.price-sell {
    color: var(--color-danger) !important;
    font-weight: 700 !important;
}

/* Price update animation */
@keyframes priceUpdate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        color: var(--color-accent);
    }

    100% {
        transform: scale(1);
    }
}

.price-updated {
    animation: priceUpdate 0.5s ease;
}

/* Tablet Responsive */
@media (max-width: 1024px) {

    .nav-left,
    .nav-right {
        gap: 20px;
    }

    .nav-item {
        font-size: 14px;
    }

    header {
        padding: 20px 30px;
    }

    .content-wrapper {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 32px;
    }

    .price-table th,
    .price-table td {
        padding: 16px;
    }
}

/* Tablet Small */
@media (max-width: 900px) {
    nav {
        flex-wrap: wrap;
    }

    .nav-left,
    .nav-right {
        gap: 15px;
    }

    .logo {
        padding: 0 20px;
    }

    .logo-text {
        font-size: 38px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav {
        display: grid;
        grid-template-columns: 50px 1fr 50px;
        align-items: center;
        gap: 0;
    }

    .nav-left {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .mobile-toggle,
    .mobile-menu,
    .mobile-menu-overlay {
        display: block;
    }

    .mobile-toggle {
        grid-column: 1;
        justify-self: start;
    }

    .logo {
        grid-column: 2;
        flex: none;
        padding: 0;
        position: static;
        transform: none;
        justify-self: center;
    }

    .logo-text {
        font-size: 32px;
    }

    .logo-subtitle {
        font-size: 8px;
    }

    .mobile-cart {
        grid-column: 3;
        justify-self: end;
        display: flex;
    }

    .icon-btn {
        font-size: 22px;
    }

    .content-wrapper {
        padding: 20px 15px;
    }

    .page-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .price-table {
        font-size: 14px;
    }

    .price-table th,
    .price-table td {
        padding: 12px 8px;
    }

    .price-table th {
        font-size: 14px;
    }

    .price-table td:first-child {
        font-size: 13px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    header {
        padding: 12px 15px;
    }

    nav {
        grid-template-columns: 40px 1fr 40px;
    }

    .mobile-toggle {
        font-size: 20px;
    }

    .logo-text {
        font-size: 26px;
    }

    .logo-subtitle {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .icon-btn {
        font-size: 20px;
    }

    .content-wrapper {
        padding: 15px 10px;
    }

    .page-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .price-table {
        font-size: 12px;
    }

    .price-table th,
    .price-table td {
        padding: 10px 6px;
    }

    .price-table th {
        font-size: 13px;
        padding: 12px 6px;
    }

    .price-table td:first-child {
        font-size: 12px;
        max-width: 120px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-menu {
        width: 260px;
        left: -260px;
    }

    .mobile-nav-item,
    .mobile-dropdown-toggle {
        font-size: 15px;
        padding: 12px 8px;
    }

    .mobile-dropdown-item {
        font-size: 13px;
        padding: 10px 15px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    header {
        padding: 10px 12px;
    }

    nav {
        grid-template-columns: 35px 1fr 35px;
    }

    .logo-text {
        font-size: 24px;
    }

    .logo-subtitle {
        font-size: 6px;
        letter-spacing: 1px;
    }

    .mobile-toggle,
    .icon-btn {
        font-size: 18px;
    }

    .content-wrapper {
        padding: 12px 8px;
    }

    .page-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .price-table {
        font-size: 11px;
    }

    .price-table th,
    .price-table td {
        padding: 8px 4px;
    }

    .price-table th {
        font-size: 12px;
        padding: 10px 4px;
    }

    .price-table td:first-child {
        font-size: 11px;
        max-width: 100px;
    }

    .mobile-menu {
        width: 240px;
        left: -240px;
        padding: 15px;
    }

    .mobile-menu-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .mobile-nav-item,
    .mobile-dropdown-toggle {
        font-size: 14px;
        padding: 10px 6px;
    }

    .mobile-dropdown-item {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    header {
        padding: 10px 20px;
    }

    .logo-text {
        font-size: 28px;
    }

    .logo-subtitle {
        font-size: 7px;
    }

    .content-wrapper {
        padding: 15px;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .price-table th,
    .price-table td {
        padding: 10px 8px;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    header {
        padding: 25px 60px;
    }

    nav {
        max-width: 1600px;
    }

    .nav-left,
    .nav-right {
        gap: 40px;
    }

    .nav-item {
        font-size: 16px;
    }

    .logo-text {
        font-size: 48px;
    }

    .logo-subtitle {
        font-size: 11px;
    }

    .content-wrapper {
        max-width: 1400px;
        padding: 50px 30px;
    }

    .page-title {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .price-table th {
        padding: 24px;
        font-size: 18px;
    }

    .price-table td {
        padding: 20px 24px;
        font-size: 16px;
    }
}

/* Extra Large Desktop */
@media (min-width: 1920px) {
    nav {
        max-width: 1800px;
    }

    .content-wrapper {
        max-width: 1600px;
    }
}

/* ========================================
   Footer Styles
   ======================================== */
footer {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: rgba(255, 255, 255, 0.9);
    /* padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 60px); */
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.footer-section h3 {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-accent);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: clamp(13px, 1.2vw, 15px);
    line-height: 1.8;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-contact-item span {
    font-size: 1.2em;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(12px, 1.1vw, 14px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ========================================
   Animations
   ======================================== */
/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Table Row Animation */
.price-table tbody tr {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.price-table tbody tr:nth-child(1) {
    animation-delay: 0.1s;
}

.price-table tbody tr:nth-child(2) {
    animation-delay: 0.2s;
}

.price-table tbody tr:nth-child(3) {
    animation-delay: 0.3s;
}

.price-table tbody tr:nth-child(4) {
    animation-delay: 0.4s;
}

.price-table tbody tr:nth-child(5) {
    animation-delay: 0.5s;
}

.price-table tbody tr:nth-child(6) {
    animation-delay: 0.6s;
}

.price-table tbody tr:nth-child(7) {
    animation-delay: 0.7s;
}

.price-table tbody tr:nth-child(8) {
    animation-delay: 0.8s;
}

/* Hero Animation */
.hero-content {
    animation: fadeInUp 0.8s ease;
}

/* Pulse Animation for Accent Elements */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.last-updated {
    animation: pulse 2s ease-in-out infinite;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}