@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-main: #020203;
    --bg-card: rgba(8, 8, 10, 0.75);
    --bg-card-hover: rgba(15, 15, 18, 0.95);
    --bg-nav: rgba(2, 2, 3, 0.85);
    --bg-input: #060608;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(255, 255, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #cbd5e0;
    --text-muted: #8e9196;
    --primary: #ffffff;
    --secondary: #8e9196;
    --primary-gradient: linear-gradient(135deg, #ffffff 0%, #8e9196 100%);
    --glow-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 6px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 50% -200px, rgba(255, 255, 255, 0.03) 0%, transparent 80%),
        radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.005) 0%, transparent 40%);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.003) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.003) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #030305;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--primary);
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    animation: pulseLogo 1.5s infinite ease-in-out;
}

.loader-logo span {
    color: #00ff66;
}

.loader-bar {
    width: 160px;
    height: 3px;
    background: rgba(0, 255, 102, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #00ff66 100%);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
    animation: fillBar 1.5s ease-in-out forwards;
}

@keyframes pulseLogo {
    0%, 100% { transform: scale(0.98); opacity: 0.8; }
    50% { transform: scale(1.02); opacity: 1; }
}

@keyframes fillBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Scroll Reveal Styles */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1400px;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

header.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    background: rgba(2, 2, 3, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-area:hover .logo-img {
    transform: scale(1.05);
}

.logo-icon {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--primary);
    letter-spacing: -1px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.logo-icon span {
    color: #00ff66;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.4);
}

.logo-tagline {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff66;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: #00ff66;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    border: none;
    background: transparent;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

section {
    padding: 120px 2rem 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 140px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: 
        linear-gradient(to bottom, rgba(2, 2, 3, 0.4) 0%, rgba(2, 2, 3, 0.85) 100%), 
        url('images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(12px);
    opacity: 0.45;
    z-index: -2;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    align-items: center;
}

.hero-badge {
    align-self: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-heading span {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 800px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.stats-showcase-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.stat-card {
    flex: 1 1 180px;
    max-width: 220px;
    min-width: 170px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem 1rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #10b981 0%, #00ff66 100%);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 255, 102, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 255, 102, 0.05);
}

.stat-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.stat-card:hover .stat-card-icon {
    background: #00ff66;
    color: #000;
    transform: scale(1.05);
}

.stat-card-val {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-primary);
}

.stat-card-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.rules-container {
    max-width: 850px;
    margin: 0 auto;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.accordion-item.active {
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
    box-shadow: var(--glow-shadow);
}

.accordion-header {
    padding: 1.4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.accordion-header h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-header h3 span {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    background: var(--primary);
    color: #fff;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-inner {
    padding: 0 2rem 1.5rem 3.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: var(--text-secondary);
}

.rule-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.rule-list li {
    position: relative;
    padding-left: 18px;
    font-size: 0.9rem;
}

.rule-list li::before {
    content: '❯';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.75rem;
    top: 2px;
}

.gallery-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.gallery-slider-container {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.gallery-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.gallery-slide {
    min-width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-slide:hover img {
    transform: scale(1.03);
}

.gallery-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 4, 6, 0.85) 0%, rgba(3, 4, 6, 0.2) 65%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 3rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-slide:hover .gallery-slide-overlay {
    opacity: 1;
}

.gallery-slide-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.2rem;
}

.gallery-slide-desc {
    font-size: 0.9rem;
    color: #00ff66;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.slider-btn:hover {
    background: rgba(0, 255, 102, 0.08);
    border-color: #00ff66;
    color: #00ff66;
    transform: scale(1.05);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: #00ff66;
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(0, 255, 102, 0.5);
}

.team-hierarchy {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.team-tier {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    width: 100%;
}

.team-card {
    background: #090a0f;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    flex: 0 1 300px;
    width: 300px;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #10b981 0%, #00ff66 100%);
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    background: #0e1017;
    border-color: rgba(0, 255, 102, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 255, 102, 0.06), 0 0 25px rgba(0, 0, 0, 0.6);
}

.avatar-wrapper {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    position: relative;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin-bottom: 1.4rem;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

/* Pulsing Status Dot representing an active TrucklineMP driver */
.avatar-wrapper::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #10b981;
    border: 2px solid #090a0f;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    animation: pulseStatus 2s infinite ease-in-out;
    z-index: 5;
}

@keyframes pulseStatus {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

.team-card:hover .avatar-wrapper {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    transform: scale(1.03);
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition);
}

.team-card:hover .avatar-img img {
    transform: scale(1.08);
}

.avatar-img svg {
    width: 40px;
    height: 40px;
    color: var(--text-muted);
}

.avatar-initials {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #13141c 0%, #08090b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-role {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    color: #00ff66;
    background: rgba(0, 255, 102, 0.06);
    border: 1px solid rgba(0, 255, 102, 0.15);
    padding: 3px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    display: inline-block;
    box-shadow: inset 0 0 8px rgba(0, 255, 102, 0.03);
}

.team-meta {
    display: grid;
    grid-template-cols: 1fr 1fr;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.2rem;
    margin-top: auto;
}

.meta-col {
    display: flex;
    flex-direction: column;
}

.meta-col:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-val {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.meta-lbl {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

/* Page Transitioning Body Class */
body {
    transition: opacity 0.35s ease-in-out, filter 0.35s ease-in-out;
}
body.page-transitioning {
    opacity: 0;
    filter: blur(8px);
}

footer {
    background: #020304;
    border-top: 1px solid rgba(0, 255, 102, 0.05);
    padding: 4rem 2rem 2rem;
    color: var(--text-secondary);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1 1 350px;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 450px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-copy a {
    color: var(--primary);
    text-decoration: none;
}

.footer-copy a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: rgba(0, 255, 102, 0.08);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.18);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
    }
}

.pulse-glow {
    animation: pulseGlow 2.5s infinite;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-cols: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero-badge {
        align-self: center;
    }
    .hero-desc {
        margin: 0 auto;
    }
    .hero-stats {
        justify-content: center;
        width: 100%;
        max-width: 600px;
        margin: 3rem auto 0;
    }
    .about-grid {
        grid-template-cols: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    header {
        top: 0;
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        padding: 0.5rem 0;
    }
    .nav-container {
        padding: 0.5rem 1.5rem;
    }
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #020203;
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 0;
        transition: var(--transition);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu .btn {
        width: 80%;
        justify-content: center;
    }
    .hero-heading {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .gallery-grid {
        grid-template-cols: repeat(2, 1fr);
        gap: 1rem;
    }
    .footer-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-info {
        flex: 1 1 100%;
    }
    
    .footer-col {
        flex: 1 1 40%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* --- Language Toggle & Switcher Styling --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-toggle {
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    min-width: 46px;
    height: 38px;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.lang-toggle:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Language Switcher Display Logic */
html[lang="en"] .lang-tr {
    display: none !important;
}

html[lang="tr"] .lang-en {
    display: none !important;
}

/* --- TrucklineMP Team Profile Buttons --- */
.team-profile-btn {
    width: 100%;
    margin-top: 1.2rem;
    padding: 10px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    transition: var(--transition);
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
}

.team-profile-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* --- VTC Drivers Marquee (Şeritli) Styling --- */
.drivers-marquee-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.drivers-marquee-track {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: scrollMarquee 25s linear infinite;
}

.drivers-marquee-container:hover .drivers-marquee-track {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.driver-marquee-card {
    background: #08080a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

.driver-marquee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition);
}

.driver-marquee-card:hover::before {
    opacity: 1;
}

.driver-marquee-card:hover {
    background: #0e1017;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.03);
}

.driver-marquee-card .driver-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #13141c 0%, #08090b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    overflow: hidden; /* Ensure avatar image doesn't overflow container boundaries */
}

.driver-marquee-card .driver-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}


.driver-marquee-card .driver-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.1rem;
    text-transform: uppercase;
}

.driver-marquee-card .driver-role {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 800;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

.driver-marquee-card .driver-exp {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.8rem;
    margin-bottom: 1rem;
}

.driver-marquee-card .driver-exp-val {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.driver-marquee-card .driver-exp-lbl {
    font-size: 0.55rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.driver-marquee-card .driver-link {
    width: 100%;
    padding: 8px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    transition: var(--transition);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
}

.driver-marquee-card .driver-link:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #10b981 0%, #00ff66 100%);
    z-index: 10001;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

