/* ===================================================================
   MoveLine Global Transport - Design System
   Premium Dark Theme with Yellow Accent
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

:root, [data-theme="dark"] {
    --primary: #fbc02d;
    --primary-light: #fff176;
    --primary-dark: #f9a825;
    --primary-glow: rgba(251,192,45,0.25);
    --bg-dark: #0a0e17;
    --bg-section: #0f1520;
    --bg-card: #141c2b;
    --bg-card-hover: #1a2438;
    --bg-glass: rgba(20,28,43,0.7);
    --text-white: #f0f2f5;
    --text-light: #c5cdd8;
    --text-muted: #6b7a8d;
    --border-color: rgba(255,255,255,0.06);
    --success: #4caf50;
    --danger: #ef5350;
    --gradient-hero: linear-gradient(135deg, #0a0e17 0%, #121a2e 40%, #0f1520 100%);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-card: 0 8px 32px rgba(0,0,0,0.25);
    --shadow-glow: 0 0 40px rgba(251,192,45,0.1);
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

[data-theme="light"] {
    --primary: #e6a800;
    --primary-light: #ffc107;
    --primary-dark: #c79100;
    --primary-glow: rgba(230,168,0,0.2);
    --bg-dark: #f5f7fa;
    --bg-section: #eef1f6;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f2f5;
    --bg-glass: rgba(255,255,255,0.85);
    --text-white: #1a1a2e;
    --text-light: #3a3a4e;
    --text-muted: #6b7280;
    --border-color: rgba(0,0,0,0.08);
    --success: #22c55e;
    --danger: #ef4444;
    --gradient-hero: linear-gradient(135deg, #f5f7fa 0%, #e8ecf2 40%, #eef1f6 100%);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-glow: 0 0 30px rgba(230,168,0,0.08);
}

/* Mode Toggle Button */
.mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}
.mode-toggle:hover {
    background: rgba(251,192,45,0.1);
    border-color: var(--primary);
    transform: rotate(30deg);
}
[data-theme="light"] .mode-toggle {
    background: rgba(0,0,0,0.04);
}
[data-theme="light"] .site-header {
    background: rgba(255,255,255,0.9);
    border-bottom-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .lang-topbar {
    background: #e8ecf2;
    border-bottom-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .ticker-bar {
    background: linear-gradient(90deg, #e8ecf2, #eef1f6, #e8ecf2);
    border-bottom-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .hero h1 span {
    color: var(--primary);
}
[data-theme="light"] .analog-clock {
    border-color: rgba(0,0,0,0.1);
    background: radial-gradient(circle, #fff 0%, #f5f7fa 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
[data-theme="light"] .interactive-map-wrapper {
    background-color: #dce4f0;
    background-blend-mode: overlay;
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
[data-theme="light"] .freight-card {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
[data-theme="light"] .gallery-item {
    border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .legislation-item {
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
[data-theme="light"] .testimonial-card {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
[data-theme="light"] .site-footer {
    background: #e0e4ea;
    border-top-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .lightbox {
    background: rgba(255,255,255,0.92);
}
[data-theme="light"] .lightbox-close {
    color: #1a1a2e;
}
[data-theme="light"] ::-webkit-scrollbar-track { background: #f5f7fa; }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: #c5cdd8; }

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TICKER BAR (Exchange Rates) ===== */
.ticker-bar {
    background: linear-gradient(90deg, #0d1117, #111927, #0d1117);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
}
.ticker-track {
    display: flex;
    gap: 48px;
    animation: tickerScroll 20s linear infinite;
    white-space: nowrap;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    flex-shrink: 0;
}
.ticker-item .code {
    color: var(--primary);
    font-weight: 700;
}
.ticker-item .rate {
    color: var(--text-white);
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
.lang-topbar {
    background: #070b12;
    border-bottom: 1px solid var(--border-color);
    padding: 6px 0;
}
.lang-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lang-topbar-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: var(--text-muted);
}
.lang-topbar-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.lang-topbar-info i {
    color: var(--primary);
    font-size: 11px;
}
@media (max-width: 768px) {
    .lang-topbar-info { display: none; }
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10,14,23,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}
.logo img { height: 48px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--text-white);
}
.logo-text span { color: var(--primary); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
    color: var(--primary);
    background: rgba(251,192,45,0.08);
}

.lang-flags {
    display: flex;
    align-items: center;
    gap: 6px;
}
.lang-flag-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: var(--transition);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
}
.lang-flag-link img {
    width: 22px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.lang-flag-link:hover {
    border-color: rgba(251,192,45,0.3);
    background: rgba(251,192,45,0.06);
    color: var(--text-white);
}
.lang-flag-link.active {
    border-color: var(--primary);
    background: rgba(251,192,45,0.1);
    color: var(--primary);
    box-shadow: 0 0 12px rgba(251,192,45,0.15);
}
@media (max-width: 768px) {
    .lang-flags { gap: 3px; }
    .lang-flag-link span { display: none; }
    .lang-flag-link { padding: 4px 6px; }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}
@media (max-width: 992px) {
    .mobile-menu-btn { display: block; }
    .main-nav {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10,14,23,0.97);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        z-index: 998;
        opacity: 0; pointer-events: none;
        transition: var(--transition);
    }
    .main-nav.open { opacity: 1; pointer-events: all; }
    .main-nav a { font-size: 18px; padding: 12px 24px; }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 80%; height: 200%;
    background: radial-gradient(ellipse, rgba(251,192,45,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content { max-width: 560px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251,192,45,0.1);
    border: 1px solid rgba(251,192,45,0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}
.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 20px;
}
.hero h1 span { color: var(--primary); }
.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; }
.btn-hero {
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #0a0e17;
    box-shadow: 0 4px 20px rgba(251,192,45,0.3);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(251,192,45,0.4);
}
.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.15);
    color: var(--text-white);
}
.btn-hero-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-map-container {
    width: 100%;
    max-width: 500px;
}
.hero-map-container svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(251,192,45,0.1));
}

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-btns { justify-content: center; }
    .hero-visual { display: none; }
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: rgba(251,192,45,0.15);
}
.service-card:hover::after { opacity: 1; }
.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.service-card:hover .service-image img { transform: scale(1.06); }
.service-content {
    padding: 24px;
    flex: 1;
}
.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(251,192,45,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 16px;
}
.service-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}
.service-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}
@media (max-width: 992px) {
    .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (min-width: 993px) and (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
.section {
    padding: 100px 0;
    position: relative;
}
.section-alt { background: var(--bg-section); }
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}
.section-header h2 span { color: var(--primary); }
.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.section-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
    margin: 0 auto 20px;
}

/* ===== WORLD CLOCKS ===== */
.clocks-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.clock-card {
    text-align: center;
    padding: 24px;
}
.analog-clock {
    width: 150px;
    height: 150px;
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    position: relative;
    margin: 0 auto 16px;
    background: radial-gradient(circle, var(--bg-card) 0%, var(--bg-dark) 100%);
    box-shadow: 0 0 40px rgba(0,0,0,0.3), inset 0 0 20px rgba(0,0,0,0.2);
}
.clock-face {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
}
.clock-number {
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}
.hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: 50% 100%;
    border-radius: 4px;
}
.hand-hour {
    width: 3px;
    height: 30%;
    background: var(--text-white);
    margin-left: -1.5px;
}
.hand-minute {
    width: 2px;
    height: 38%;
    background: var(--primary);
    margin-left: -1px;
}
.hand-second {
    width: 1px;
    height: 42%;
    background: var(--danger);
    margin-left: -0.5px;
}
.clock-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 10;
}
.clock-city {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}
.clock-time {
    font-size: 13px;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

/* ===== MAP ===== */
.map-section {
    position: relative;
}
.interactive-map-wrapper {
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(20,28,43,0.8), rgba(15,21,32,0.9));
    border: 1px solid rgba(251,192,45,0.1);
    border-radius: var(--radius);
    padding: 20px 16px;
    box-shadow: 0 0 60px rgba(251,192,45,0.05), inset 0 0 60px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}
.interactive-map-wrapper::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 70% 60%, rgba(251,192,45,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.interactive-map {
    position: relative;
}
.interactive-map svg {
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.3));
}
.map-marker {
    transition: transform 0.3s ease;
}
.map-marker:hover {
    transform: scale(1.15);
    filter: brightness(1.3);
}

.country-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}
.country-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}
.country-badge:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.country-badge img {
    width: 24px;
    border-radius: 3px;
}

/* ===== FREIGHT TABLE ===== */
.freight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}
.freight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.freight-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
}
.freight-card:hover {
    border-color: rgba(251,192,45,0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.freight-route {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.freight-route .origin, .freight-route .dest {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-white);
}
.freight-route .arrow {
    color: var(--primary);
    font-size: 18px;
}
.freight-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.freight-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.freight-info-item .label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.freight-info-item .value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}
.freight-info-item .value.time {
    color: var(--text-white);
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--border-color);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 16px 16px;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.35s;
}
.gallery-item:hover .caption { transform: translateY(0); }

/* ===== LEGISLATION ===== */
.legislation-list { max-width: 800px; margin: 0 auto; }
.legislation-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
}
.legislation-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}
.legislation-header:hover { background: var(--bg-card-hover); }
.legislation-header h4 {
    font-size: 16px;
    color: var(--text-white);
    font-weight: 600;
}
.legislation-header i {
    color: var(--primary);
    transition: transform 0.3s;
}
.legislation-header.open i { transform: rotate(180deg); }
.legislation-body {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}
.legislation-body.open {
    padding: 0 24px 24px;
    max-height: 2000px;
}
.legislation-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== TESTIMONIALS (3-column paged) ===== */
.testimonials-paged {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card-new {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    display: none;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}
.testimonial-card-new.visible {
    display: flex;
}
.testimonial-card-new:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(251,192,45,0.15);
}
.testimonial-quote-icon {
    font-size: 48px;
    line-height: 1;
    color: var(--primary);
    font-family: Georgia, serif;
    margin-bottom: 8px;
    opacity: 0.6;
}
.testimonial-quote-text {
    font-size: 15px;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 20px;
}
.testimonial-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}
.testimonial-author-name {
    font-weight: 700;
    color: var(--text-white);
    font-size: 15px;
}
.testimonial-company-name {
    color: var(--primary);
    font-size: 13px;
    margin-top: 2px;
}
.testimonial-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}
.tpag-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.tpag-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(251,192,45,0.06);
}
.tpag-dots {
    display: flex;
    gap: 8px;
}
.tpag-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}
.tpag-dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(251,192,45,0.4);
}
@media (max-width: 992px) {
    .testimonials-paged { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (min-width: 993px) and (max-width: 1200px) {
    .testimonials-paged { grid-template-columns: repeat(2, 1fr); }
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-section);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.7;
}
.footer-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 16px;
}
.footer-links a {
    display: block;
    padding: 4px 0;
    color: var(--text-muted);
    font-size: 14px;
}
.footer-links a:hover { color: var(--primary); }
.footer-bank {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    white-space: pre-line;
}
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.show { display: flex; }
.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
}
.lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #2a3444; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
