/**
 * Public Booking Form Styles
 * Tunjung Transport - Car Rental Booking Form
 * iOS-style Modern Design with Dark Mode Support
 */

/* ========================================
   CSS Variables / Theme
   ======================================== */
:root {
    --ios-bg: #f2f2f7;
    --ios-card: #ffffff;
    --ios-border: #e5e5ea;
    --ios-primary: #007aff;
    --ios-success: #34c759;
    --ios-danger: #ff3b30;
    --ios-muted: #8e8e93;
    --text-main: #1c1c1e;
    --text-secondary: #3a3a3c;
    --nav-bg: rgba(255,255,255,0.8);
    --radius-lg: 16px;
    --radius-md: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

[data-theme="dark"] {
    --ios-bg: #000000;
    --ios-card: #1c1c1e;
    --ios-border: #2c2c2e;
    --ios-muted: #8e8e93;
    --text-main: #f2f2f7;
    --text-secondary: #e5e5ea;
    --nav-bg: rgba(28,28,30,0.8);
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
}

/* ========================================
   Base Styles
   ======================================== */
body {
    background: var(--ios-bg);
    color: var(--text-main);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-up { 
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; 
}

/* ========================================
   Brand Navbar (Glass Effect)
   ======================================== */
.brand-navbar {
    position: sticky;
    top: 0;
    z-index: 1020;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    background: var(--nav-bg);
    border-bottom: 1px solid var(--ios-border);
    transition: all 0.3s ease;
}

.brand-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    background: #fff;
}

.brand-title {
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 18px;
    color: var(--text-main);
}

/* ========================================
   Theme Toggle Button
   ======================================== */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--ios-border);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover { 
    background: rgba(128,128,128,0.1); 
}

.theme-toggle i { 
    position: absolute; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
}

/* Light mode: Show Moon, Hide Sun */
.theme-toggle .fa-sun { transform: translateY(30px); opacity: 0; }
.theme-toggle .fa-moon { transform: translateY(0); opacity: 1; }

/* Dark mode: Show Sun, Hide Moon */
[data-theme="dark"] .theme-toggle .fa-sun { transform: translateY(0); opacity: 1; }
[data-theme="dark"] .theme-toggle .fa-moon { transform: translateY(-30px); opacity: 0; }

/* ========================================
   Container & Layout
   ======================================== */
.container-card {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ========================================
   Typography
   ======================================== */
.h4 { 
    font-weight: 700; 
    letter-spacing: -0.02em; 
    margin-bottom: 0.5rem; 
    color: var(--text-main); 
}

.text-muted { 
    color: var(--ios-muted) !important; 
    font-size: 0.95rem; 
}

/* ========================================
   Step Indicator (Progress)
   ======================================== */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    position: relative;
    padding: 0 10px;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--ios-border);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: default;
    width: 80px;
}

.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ios-card);
    border: 2px solid var(--ios-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--ios-muted);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--ios-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    text-align: center;
}

.step.active .step-icon {
    background: var(--ios-primary);
    border-color: var(--ios-primary);
    color: white;
    box-shadow: 0 0 0 4px rgba(0,122,255,0.2);
    transform: scale(1.1);
}

.step.active .step-label { 
    color: var(--ios-primary); 
}

.step.done .step-icon {
    background: var(--ios-success);
    border-color: var(--ios-success);
    color: white;
}

.step.done .step-label { 
    color: var(--ios-success); 
}

/* ========================================
   Form Sections (Cards)
   ======================================== */
.form-section {
    background: var(--ios-card);
    border: 1px solid var(--ios-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
   Form Inputs
   ======================================== */
.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-control, .form-select {
    border-radius: var(--radius-md);
    border: 1px solid var(--ios-border);
    height: 48px;
    padding: 12px 16px;
    font-size: 15px;
    background-color: rgba(128,128,128,0.05);
    color: var(--text-main);
    transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--ios-primary);
    background-color: var(--ios-card);
    box-shadow: 0 0 0 4px rgba(0,122,255,0.15);
    color: var(--text-main);
}

.form-text { 
    color: var(--ios-muted); 
    font-size: 0.85rem; 
    margin-top: 6px; 
}

.invalid { 
    border-color: var(--ios-danger) !important; 
    background-color: rgba(255,59,48,0.05) !important; 
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    border-radius: var(--radius-md);
    font-weight: 600;
    padding: 12px 24px;
    font-size: 15px;
    letter-spacing: -0.01em;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
    background: var(--ios-primary);
    border: none;
    box-shadow: 0 4px 12px rgba(0,122,255,0.3);
}

.btn-primary:hover {
    background: #0062cc;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,122,255,0.4);
}

.btn-primary:active { 
    transform: translateY(0); 
}

.btn-primary:disabled {
    background: var(--ios-muted);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.btn-success {
    background: var(--ios-success);
    border: none;
    box-shadow: 0 4px 12px rgba(52,199,89,0.3);
}

.btn-success:hover {
    background: #2da84e;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(52,199,89,0.4);
}

.btn-secondary { 
    background: var(--ios-border); 
    color: var(--text-main); 
    border: none; 
}

.btn-secondary:hover { 
    background: var(--ios-muted); 
    color: white; 
}

.btn-outline-secondary {
    color: var(--text-main);
    border-color: var(--ios-border);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: rgba(128,128,128,0.1);
    border-color: var(--ios-muted);
    color: var(--text-main);
}

.btn-field { 
    height: 48px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
}

/* ========================================
   Car Cards
   ======================================== */
.car-card {
    border: 1px solid var(--ios-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ios-card);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.car-card:hover { 
    transform: translateY(-4px); 
}

.car-card img { 
    width: 100%; 
    height: 180px; 
    object-fit: cover; 
    background: #f2f2f7; 
}

.car-card .body { 
    padding: 16px; 
}

/* ========================================
   Upload Card
   ======================================== */
.upload-card {
    background: var(--ios-bg);
    border: 1px solid var(--ios-border) !important;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.upload-hint {
    color: var(--ios-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.photo-preview {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--ios-border);
    background: var(--ios-bg);
}

/* ========================================
   Utility Classes
   ======================================== */
.hidden { 
    display: none !important; 
}

.loading { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    color: var(--ios-muted); 
    font-weight: 500; 
    font-size: 0.9rem; 
}

.loading .spinner-border { 
    width: 1.2rem; 
    height: 1.2rem; 
    border-width: 2px; 
}

.footer-actions { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 16px; 
    flex-wrap: wrap; 
    margin-top: 32px; 
    padding-top: 24px; 
    border-top: 1px solid var(--ios-border); 
}

/* ========================================
   Toast Notification
   ======================================== */
.toast-notice {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 500;
    font-size: 14px;
    min-width: 300px;
    justify-content: center;
}

.toast-notice.success { 
    color: #155724; 
    background: rgba(212, 237, 218, 0.95); 
    border-color: #c3e6cb; 
}

.toast-notice.info { 
    color: #0c5460; 
    background: rgba(209, 236, 241, 0.95); 
    border-color: #bee5eb; 
}

.toast-notice.warning { 
    color: #856404; 
    background: rgba(255, 243, 205, 0.95); 
    border-color: #ffeeba; 
}

.toast-notice.danger { 
    color: #721c24; 
    background: rgba(248, 215, 218, 0.95); 
    border-color: #f5c6cb; 
}

.toast-notice.hidden { 
    opacity: 0; 
    transform: translate(-50%, -20px); 
    pointer-events: none; 
}

/* ========================================
   iOS-style Modal (Car Selection)
   ======================================== */
.ios-modal { 
    position: fixed; 
    inset: 0; 
    z-index: 1050; 
}

.ios-modal.hidden { 
    display: none !important; 
}

.ios-modal-backdrop { 
    position: absolute; 
    inset: 0; 
    background: rgba(0,0,0,0.5); 
}

.ios-modal-sheet { 
    position: absolute; 
    left: 50%; 
    top: 50%; 
    bottom: auto; 
    transform: translate(-50%, -50%); 
    width: min(720px, 90%); 
    background: var(--ios-card); 
    color: var(--text-main); 
    border: 1px solid var(--ios-border); 
    border-radius: 24px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

.ios-modal-header { 
    padding: 16px 20px; 
    border-bottom: 1px solid var(--ios-border); 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    background: var(--nav-bg); 
    backdrop-filter: blur(10px); 
}

.ios-modal-header h6 { 
    margin: 0; 
    font-weight: 700; 
    font-size: 16px; 
    color: var(--text-main); 
}

.ios-modal-body { 
    padding: 20px; 
    max-height: 70vh; 
    overflow-y: auto; 
}

.ios-modal-actions { 
    display: flex; 
    justify-content: flex-end; 
    gap: 12px; 
    padding: 16px 20px; 
    border-top: 1px solid var(--ios-border); 
    background: var(--nav-bg); 
}

/* ========================================
   iOS Brand List (Car Selection)
   ======================================== */
.ios-list { 
    display: flex;
    flex-direction: column;
    gap: 12px; 
}

.ios-list-item { 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    gap: 16px; 
    padding: 16px; 
    border: 1px solid var(--ios-border); 
    border-radius: 14px; 
    background: var(--ios-bg); 
    width: 100%; 
    text-align: left; 
    color: var(--text-main); 
    cursor: pointer;
}

.ios-list-item:hover { 
    border-color: var(--ios-primary);
    background: var(--ios-card);
}

.ios-list-item:active {
    opacity: 0.85;
}

.ios-list-item .item-image { 
    width: 64px; 
    height: 64px; 
    min-width: 64px;
    border-radius: 12px;
    background: var(--ios-card);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--ios-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.ios-list-item .item-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain;
    padding: 6px;
}

.ios-list-item .item-image .placeholder-icon {
    font-size: 24px;
    color: var(--ios-muted);
}

.ios-list-item .item-content { 
    flex: 1;
    min-width: 0;
}

.ios-list-item .name { 
    font-weight: 600; 
    font-size: 15px; 
    line-height: 1.4;
    margin-bottom: 4px;
    color: var(--text-main);
}

.ios-list-item .price { 
    font-size: 13px; 
    color: #1D8348; 
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ios-list-item .price .price-icon {
    font-size: 11px;
}

.ios-list-item .item-arrow {
    color: var(--ios-muted);
    font-size: 14px;
}

.ios-list-item:hover .item-arrow {
    color: var(--ios-primary);
}

/* Empty state for list */
.ios-list-empty {
    text-align: center;
    padding: 32px 16px;
    color: var(--ios-muted);
}

.ios-list-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.ios-list-empty p {
    margin: 0;
    font-size: 14px;
}

/* ========================================
   Selected Brand Chip
   ======================================== */
.ios-brand-chip { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    padding: 16px; 
    border: 1px solid var(--ios-primary); 
    border-radius: 16px; 
    background: rgba(0,122,255,0.05); 
    box-shadow: 0 4px 12px rgba(0,122,255,0.1); 
}

.ios-brand-chip img { 
    width: 48px; 
    height: 48px; 
    object-fit: contain; 
    border-radius: 8px; 
    background: #fff; 
    padding: 4px; 
    box-shadow: 0 2px 6px rgba(0,0,0,0.05); 
}

.ios-brand-chip .name { 
    font-weight: 700; 
    font-size: 16px; 
    color: var(--ios-primary); 
}

.ios-brand-chip .action { 
    margin-left: auto; 
}

/* ========================================
   Site Footer
   ======================================== */
.site-footer {
    margin-top: auto;
    background: var(--nav-bg);
    border-top: 1px solid var(--ios-border);
    padding: 32px 0;
    box-shadow: var(--shadow);
    backdrop-filter: saturate(160%) blur(8px);
    -webkit-backdrop-filter: saturate(160%) blur(8px);
}

.site-footer .inner { 
    max-width: 980px; 
    margin: 0 auto; 
    padding: 12px 16px; 
}

.footer-title { 
    font-weight: 700; 
    margin-bottom: 6px; 
    font-size: 12px; 
    text-transform: uppercase; 
    letter-spacing: 0.06em; 
    color: var(--ios-muted); 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.footer-title::after { 
    content: ''; 
    flex: 1; 
    height: 1px; 
    background: var(--ios-border); 
}

/* Brand Row (Payment & Partners) */
.brand-row { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    flex-wrap: wrap; 
    overflow-x: auto; 
    padding: 12px 0; 
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.brand-row::-webkit-scrollbar { 
    display: none; 
}

.brand-item { 
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: flex-start; 
    padding: 8px;
    border: 0; 
    background: transparent;
    gap: 8px;
    flex: 0 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 95px;
}

.brand-item:hover {
    transform: translateY(-4px);
}

.brand-icon { 
    width: 60px; 
    height: 60px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 1px solid var(--ios-border); 
    background-color: var(--ios-card); 
    overflow: visible; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    padding: 6px;
    flex-shrink: 0;
}

.brand-item:hover .brand-icon { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); 
    border-color: var(--ios-primary);
}

[data-theme="dark"] .brand-item:hover .brand-icon {
    background-color: #2c2c2e;
}

.brand-icon img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    image-rendering: -webkit-optimize-contrast;
    display: block;
}

.brand-label { 
    font-weight: 600; 
    font-size: 12px; 
    line-height: 1.3;
    text-align: center;
    min-width: 80px;
    max-width: 90px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    word-break: break-word;
    white-space: normal;
}

.brand-item:hover .brand-label {
    color: var(--ios-primary);
}

/* Brand Color Accents */
.brand-mandiri:hover .brand-label { color: #013a8b; }
.brand-bca:hover .brand-label { color: #0066cc; }
.brand-bni:hover .brand-label { color: #f37021; }
.brand-qris:hover .brand-label { color: var(--ios-primary); }
.brand-traveloka:hover .brand-label { color: #00a2ff; }
.brand-tiket:hover .brand-label { color: #1e90ff; }
.brand-brn:hover .brand-label { color: #2e7d32; }

/* ========================================
   Discount Banner Styles
   ======================================== */
.discount-banner {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: 12px;
    padding: 14px 16px;
    margin: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.discount-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discount-badge i {
    font-size: 16px;
    animation: pulse-fire 1.5s ease-in-out infinite;
}

@keyframes pulse-fire {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.discount-value {
    font-weight: 800;
    font-size: 16px;
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 8px;
}

[data-theme="dark"] .discount-banner {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
}

/* ========================================
   Promo Code Input Styles
   ======================================== */
.promo-input-section {
    padding: 12px 0;
    border-top: 1px dashed var(--ios-border);
    margin-top: 8px;
}

.promo-input-section .form-label {
    color: var(--ios-muted);
    margin-bottom: 8px;
}

.promo-input-section .input-group {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.promo-input-section #promoCode {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.promo-input-section #promoCode::placeholder {
    text-transform: none;
    letter-spacing: normal;
}

.promo-input-section #promoCode.bg-light {
    background-color: var(--ios-bg) !important;
    opacity: 0.8;
}

.promo-input-section #btnApplyPromo {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    min-width: 100px;
}

#promoMessage {
    min-height: 18px;
}

#promoMessage.text-success {
    color: var(--ios-success) !important;
}

#promoMessage.text-danger {
    color: var(--ios-danger) !important;
}

#promoMessage.text-warning {
    color: #f59e0b !important;
}

/* Promo Discount Banner (Gift Style) */
.promo-discount {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%) !important;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3) !important;
}

.promo-discount .discount-badge.bg-success {
    background: transparent !important;
}

.promo-discount .discount-value.text-success {
    color: white !important;
}

[data-theme="dark"] .promo-discount {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%) !important;
}

/* Savings Note Style */
#savingsNote {
    color: #059669 !important;
    font-weight: 600;
    font-size: 0.85rem !important;
    margin-top: 4px;
    animation: fadeInUp 0.3s ease-out;
}

#savingsNote #savingsAmount {
    font-weight: 700;
    color: #047857;
}

[data-theme="dark"] #savingsNote {
    color: #34d399 !important;
}

[data-theme="dark"] #savingsNote #savingsAmount {
    color: #6ee7b7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Screen Reader Only */
.sr-only { 
    position: absolute; 
    width: 1px; 
    height: 1px; 
    padding: 0; 
    margin: -1px; 
    overflow: hidden; 
    clip: rect(0, 0, 0, 0); 
    white-space: nowrap; 
    border: 0; 
}

/* ========================================
   Mobile Responsive Footer
   ======================================== */
@media (max-width: 768px) {
    .site-footer .inner {
        padding: 16px 12px;
    }
    
    .footer-title {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .brand-row {
        gap: 12px;
        padding: 8px 0;
    }
    
    .brand-item {
        gap: 6px;
    }
    
    .brand-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }
    
    .brand-label {
        font-size: 10px;
        max-width: 60px;
    }
    
    .brand-item:hover .brand-icon {
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }
}

@media (max-width: 480px) {
    .brand-icon {
        width: 44px;
        height: 44px;
        border-radius: 8px;
    }
    
    .brand-row {
        gap: 10px;
    }
}

/* ========================================
   Reduced Motion Preference
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .brand-item:hover .brand-icon { 
        transform: none; 
        box-shadow: 0 2px 8px rgba(0,0,0,0.08); 
    }
    
    .brand-item:hover {
        transform: none;
    }
    
    .fade-in-up {
        animation: none;
    }
    
    .btn:hover {
        transform: none;
    }
}
