/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Ticketmaster Style */
    --tm-blue: #026cdf;
    --tm-blue-dark: #0046be;
    --tm-gray-light: #f8f9fa;
    --tm-gray-medium: #e9ecef;
    --tm-gray-dark: #343a40;
    --tm-text-dark: #212529;
    --tm-text-medium: #6c757d;
    --tm-text-light: #adb5bd;
    --tm-green: #28a745;
    --tm-red: #dc3545;
    --tm-orange: #fd7e14;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-main);
    background-color: var(--tm-gray-light);
    color: var(--tm-text-dark);
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Header */
.header {
    background-color: var(--tm-blue);
    color: white;
}

.header-top {
    padding: var(--space-sm) 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticketmaster-logo {
    height: 110px;
    filter: brightness(0) invert(1);
}

.header-right {
    font-size: 14px;
    color: white;
}

.header-event {
    background-color: var(--tm-blue-dark);
    padding: var(--space-sm) 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.event-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.event-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

/* Ticket Selection Layout */
.ticket-selection-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.date-selection {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

/* Date Accordion */
.date-accordion {
    border: 1px solid var(--tm-gray-medium);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
}

.date-accordion:first-child .date-header {
    background-color: white;
    border-bottom: 1px solid var(--tm-gray-medium);
}

.date-header {
    background-color: var(--tm-gray-light);
    padding: var(--space-md);
    border-bottom: 1px solid var(--tm-gray-medium);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.date-header:hover {
    background-color: rgba(2, 108, 223, 0.05);
}

.date {
    font-weight: 600;
    font-size: 16px;
    color: var(--tm-text-dark);
}

.day {
    font-size: 14px;
    color: var(--tm-text-medium);
    text-transform: capitalize;
}

.arrow {
    font-size: 14px;
    color: var(--tm-text-light);
    transition: transform 0.2s ease;
}

.date-accordion.expanded .arrow {
    transform: rotate(180deg);
}

.date-content {
    padding: 0;
    background-color: white;
}

.section-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--tm-text-dark);
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--tm-gray-medium);
    background-color: var(--tm-gray-light);
}

.ticket-options {
    padding: var(--space-md);
}

.ticket-row {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--tm-gray-medium);
}

.ticket-row:last-child {
    border-bottom: none;
}

.ticket-type {
    font-weight: 500;
    color: var(--tm-text-dark);
    font-size: 14px;
}

.info-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: var(--tm-blue);
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    line-height: 16px;
}

.ticket-controls {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--tm-gray-medium);
    background-color: var(--tm-gray-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--tm-text-dark);
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background-color: var(--tm-blue);
    color: white;
    border-color: var(--tm-blue);
}

.quantity {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--tm-text-dark);
}

.ticket-price {
    font-weight: 600;
    color: var(--tm-text-dark);
    font-size: 14px;
}

.no-artists {
    padding: var(--space-md);
    font-size: 14px;
    color: var(--tm-text-medium);
    font-style: italic;
}

.artists-list {
    padding: var(--space-md);
    font-size: 14px;
    color: var(--tm-text-dark);
    font-weight: 500;
}

/* Continue Button */
.continue-btn {
    width: 100%;
    background-color: var(--tm-blue);
    color: white;
    border: none;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: var(--space-lg);
}

.continue-btn:hover {
    background-color: var(--tm-blue-dark);
}

.continue-btn:disabled {
    background-color: var(--tm-gray-medium);
    color: var(--tm-text-light);
    cursor: not-allowed;
}

/* Order Summary */
.order-summary {
    position: sticky;
    top: 140px;
}

.order-summary .summary {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.order-summary h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--tm-text-dark);
}

/* Delivery Options (Step 2) */
.delivery-options {
    margin-bottom: var(--space-lg);
}

.delivery-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border: 2px solid var(--tm-gray-medium);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    cursor: pointer;
    transition: all 0.2s ease;
}

.delivery-option:hover {
    border-color: var(--tm-blue);
    background-color: rgba(2, 108, 223, 0.05);
}

.option-content {
    flex: 1;
}

.option-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.option-icon {
    font-size: 24px;
}

.option-title {
    display: flex;
    flex-direction: column;
}

.option-title strong {
    font-weight: 600;
    color: var(--tm-text-dark);
}

.option-subtitle {
    font-size: 14px;
    color: var(--tm-text-medium);
    font-weight: 400;
}

.option-description {
    font-size: 14px;
    color: var(--tm-text-medium);
    margin-left: 32px;
}

.option-arrow {
    font-size: 18px;
    color: var(--tm-blue);
    font-weight: 600;
}

.delivery-info {
    text-align: center;
}

.free-badge {
    display: inline-block;
    background-color: var(--tm-green);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

/* Billing Form (Step 3) */
.warning-text {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-size: 14px;
}

.billing-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--tm-text-dark);
}

.form-group input {
    padding: var(--space-sm);
    border: 1px solid var(--tm-gray-medium);
    border-radius: var(--radius-md);
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--tm-blue);
    box-shadow: 0 0 0 2px rgba(2, 108, 223, 0.1);
}

/* Confirmation (Step 4) */
.warning-banner {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.warning-icon {
    font-size: 16px;
}

.warning-text {
    font-size: 14px;
    color: var(--tm-text-dark);
    margin: 0;
    background: none;
    border: none;
    padding: 0;
}

.order-summary {
    margin-bottom: var(--space-lg);
}

.order-date {
    margin-bottom: var(--space-sm);
}

.summary-link {
    color: var(--tm-blue);
    text-decoration: none;
    font-weight: 600;
}

.order-items {
    border-bottom: 1px solid var(--tm-gray-medium);
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xs);
}

.item-description {
    color: var(--tm-text-dark);
}

.item-price {
    font-weight: 600;
    color: var(--tm-text-dark);
}

.delivery-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--tm-gray-medium);
}

.order-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 18px;
}

.total-counter {
    width: 32px;
    height: 32px;
    background-color: var(--tm-blue);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.billing-address {
    margin-top: var(--space-lg);
}

.billing-address h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--tm-text-dark);
}

.address-content {
    padding: var(--space-sm);
    background-color: var(--tm-gray-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--tm-text-medium);
}

/* Terms (Step 5) */
.terms-content {
    margin-bottom: var(--space-xl);
}

.terms-text {
    background-color: var(--tm-gray-light);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    max-height: 400px;
    overflow-y: auto;
    line-height: 1.6;
    font-size: 14px;
    color: var(--tm-text-dark);
}

.terms-accept {
    text-align: center;
}

.accept-btn {
    background-color: var(--tm-blue);
    color: white;
    border: none;
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.accept-btn:hover {
    background-color: var(--tm-blue-dark);
}

/* Insurance (Step 6) */
.insurance-options {
    margin-bottom: var(--space-xl);
}

.insurance-option {
    border: 2px solid var(--tm-gray-medium);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.insurance-option input[type="radio"] {
    display: none;
}

.insurance-option input[type="radio"]:checked + label {
    border-color: var(--tm-blue);
    background-color: rgba(2, 108, 223, 0.05);
}

.insurance-option label {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-lg);
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.option-header {
    flex: 1;
}

.option-title {
    margin-bottom: var(--space-sm);
}

.option-title strong {
    color: var(--tm-text-dark);
    font-size: 16px;
}

.option-description {
    color: var(--tm-text-medium);
    font-size: 14px;
    line-height: 1.4;
}

.option-price {
    margin-left: var(--space-md);
}

.price-green {
    color: var(--tm-green);
    font-weight: 600;
    font-size: 18px;
}

.price-gray {
    color: var(--tm-text-medium);
    font-weight: 600;
    font-size: 18px;
}

.action-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}

.btn-secondary, .btn-primary {
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary {
    background-color: transparent;
    color: var(--tm-text-medium);
    border: 1px solid var(--tm-gray-medium);
}

.btn-secondary:hover {
    background-color: var(--tm-gray-light);
}

.btn-primary {
    background-color: var(--tm-blue);
    color: white;
    border: 1px solid var(--tm-blue);
}

.btn-primary:hover {
    background-color: var(--tm-blue-dark);
}

/* Payment (Step 7) */
.payment-section {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.payment-header {
    margin-bottom: var(--space-lg);
}

.payment-status {
    display: inline-block;
    background-color: var(--tm-orange);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
}

.payment-content {
    margin-bottom: var(--space-xl);
}

.payment-message {
    font-size: 16px;
    color: var(--tm-text-dark);
    margin-bottom: var(--space-lg);
}

.payment-deadline {
    margin-bottom: var(--space-lg);
}

.deadline-label {
    font-size: 14px;
    color: var(--tm-text-medium);
    margin-bottom: var(--space-xs);
}

.deadline-date {
    font-size: 18px;
    font-weight: 600;
    color: var(--tm-green);
}

.pix-section {
    margin-bottom: var(--space-lg);
}

.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-md);
}

.qr-code {
    width: 200px;
    height: 200px;
    background-color: white;
    border: 2px solid var(--tm-gray-medium);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.qr-placeholder {
    text-align: center;
    color: var(--tm-text-medium);
    font-size: 14px;
}

.qr-placeholder small {
    display: block;
    margin-top: var(--space-xs);
    font-size: 12px;
}

.pix-logo {
    background-color: var(--tm-blue);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
}

.pix-code-section {
    margin-bottom: var(--space-lg);
}

.copy-code-btn {
    background-color: var(--tm-blue);
    color: white;
    border: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: var(--space-sm);
    transition: background-color 0.2s ease;
}

.copy-code-btn:hover {
    background-color: var(--tm-blue-dark);
}

.pix-code-text {
    width: 100%;
    height: 100px;
    background-color: var(--tm-gray-light);
    border: 1px solid var(--tm-gray-medium);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    font-size: 12px;
    font-family: monospace;
    resize: vertical;
}

.payment-instructions {
    margin-bottom: var(--space-lg);
}

.instruction {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    text-align: left;
}

.step-number {
    width: 24px;
    height: 24px;
    background-color: var(--tm-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.payment-actions {
    text-align: center;
}

.payment-confirm-btn {
    background-color: var(--tm-blue);
    color: white;
    border: none;
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.payment-confirm-btn:hover {
    background-color: var(--tm-blue-dark);
}

/* Success (Step 8) */
.success-section {
    text-align: center;
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xxl);
    box-shadow: var(--shadow-sm);
}

.success-icon {
    font-size: 64px;
    margin-bottom: var(--space-lg);
}

.success-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--tm-green);
    margin-bottom: var(--space-md);
}

.success-message {
    font-size: 18px;
    color: var(--tm-text-dark);
    margin-bottom: var(--space-lg);
}

.success-details {
    margin-bottom: var(--space-xl);
}

.success-details p {
    color: var(--tm-text-medium);
    margin-bottom: var(--space-sm);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 140px;
}

.summary {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.summary h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--tm-text-dark);
}

.summary-content {
    margin-bottom: var(--space-md);
}

.no-items {
    color: var(--tm-text-medium);
    font-style: italic;
    text-align: center;
    padding: var(--space-lg);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-sm);
    font-size: 14px;
}

.summary-item span:first-child {
    color: var(--tm-text-medium);
}

.summary-link {
    color: var(--tm-blue);
    text-decoration: none;
    font-weight: 500;
}

.summary-value {
    font-weight: 600;
    color: var(--tm-text-dark);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--tm-gray-medium);
    font-weight: 600;
    font-size: 16px;
}

.total-amount {
    color: var(--tm-text-dark);
    font-weight: 600;
}

.total-counter {
    width: 24px;
    height: 24px;
    background-color: var(--tm-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
}

/* Footer */
.footer {
    background-color: var(--tm-gray-dark);
    color: var(--tm-text-light);
    padding: var(--space-lg) 0;
    margin-top: var(--space-xxl);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--tm-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ticket-selection-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .order-summary {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-xs);
    }
    
    .date-selection {
        padding: var(--space-sm);
    }
    
    .ticket-row {
        grid-template-columns: 1fr auto;
        gap: var(--space-xs);
    }
    
    .ticket-controls {
        order: 2;
        grid-column: 1;
    }
    
    .ticket-price {
        order: 3;
        grid-column: 2;
        justify-self: end;
    }
    
    .date-header {
        padding: var(--space-sm);
    }
    
    .date {
        font-size: 14px;
    }
    
    .day {
        font-size: 12px;
    }
    
    .order-summary .summary {
        padding: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .ticket-option {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    
    .ticket-price {
        margin-right: 0;
    }
    
    .qr-code {
        width: 150px;
        height: 150px;
    }
    
    .success-section {
        padding: var(--space-lg);
    }
    
    .success-section h2 {
        font-size: 24px;
    }
}

/* Footer Styles - Based on provided image */
.footer {
    background-color: #1F262D;
    color: white;
    padding: var(--space-xl) 0 var(--space-lg);
    margin-top: var(--space-xxl);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: var(--space-sm);
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-logo {
    margin-bottom: var(--space-xl);
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 400;
    color: white;
    letter-spacing: -0.5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-icon.instagram {
    font-size: 18px;
}

.social-icon.facebook {
    font-size: 18px;
}

.social-icon.linkedin {
    font-size: 18px;
}

.social-icon.tiktok {
    font-size: 18px;
}

.social-icon.blog {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
}

.social-icon.blog .blog-ticketmaster {
    font-size: 8px;
    margin-bottom: 2px;
    opacity: 0.7;
}

.social-icon.blog .blog-text {
    font-size: 10px;
    font-weight: 600;
}

.footer-legal {
    text-align: right;
    font-size: 11px;
    line-height: 1.4;
}

.footer-legal .legal-links {
    margin-bottom: var(--space-sm);
}

.footer-legal .legal-links a {
    color: white;
    text-decoration: underline;
    margin-right: var(--space-sm);
}

.footer-legal .legal-links a:hover {
    opacity: 0.8;
}

.footer-legal .copyright {
    font-size: 11px;
    opacity: 0.8;
    margin-bottom: var(--space-sm);
}

.footer-legal .company-info {
    font-size: 10px;
    opacity: 0.7;
    line-height: 1.5;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-nav {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-lg);
    }
    
    .footer-legal {
        text-align: left;
    }
    
    .footer-social {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .footer {
        padding: var(--space-lg) 0;
    }
    
    .footer .container {
        padding: 0 var(--space-sm);
    }
    
    .footer-column h3 {
        font-size: 14px;
    }
    
    .footer-column ul li a {
        font-size: 13px;
    }
    
    .footer-logo-text {
        font-size: 20px;
    }
    
    .footer-legal {
        font-size: 10px;
    }
    
    .footer-legal .company-info {
        font-size: 9px;
    }
}