:root {
    --yellow: #FCD116;
    --red: #CE1126;
    --pure-black: #000000;
    --white: #FFFFFF;
    --bg-main: #F4F6F8;
    --bg-sec: #FFFFFF;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --card-bg: #FFFFFF;
    --card-border: #E0E0E0;
    --header-color: #000000;
    --input-bg: #F8F9FA;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg-main: #0D0D0D;
    --bg-sec: #151515;
    --text-main: #E0E0E0;
    --text-muted: #A0A0A0;
    --card-bg: #1A1A1A;
    --card-border: #333333;
    --header-color: #FFFFFF;
    --input-bg: #0A0A0A;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* ============ RESET & BASE ============ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ============ MATERIAL ICONS ============ */

.material-icons-outlined {
    font-family: 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'liga';
}

/* ============ BELÇİKA BAYRAĞI ============ */

.flag-strip {
    display: flex;
    height: 6px;
    width: 100%;
}

.flag-black {
    background: var(--pure-black);
    flex: 1;
}

.flag-yellow {
    background: var(--yellow);
    flex: 1;
}

.flag-red {
    background: var(--red);
    flex: 1;
}

/* ============ NAVBAR ============ */

.navbar {
    background: var(--pure-black);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.logo-icon {
    color: var(--yellow);
    font-size: 28px !important;
}

.logo span {
    color: var(--red);
}

img.logo-img {
    width: 261px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    color: #BBB;
}

.nav-links a .material-icons-outlined {
    font-size: 18px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--yellow);
}

.nav-links a:hover .material-icons-outlined,
.nav-links a.active .material-icons-outlined {
    color: var(--yellow);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #222;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #333;
}

.lang-selector .material-icons-outlined {
    font-size: 18px;
    color: var(--yellow);
}

.lang-selector select {
    background: transparent;
    color: var(--white);
    border: none;
    outline: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.lang-selector select option {
    background: var(--pure-black);
    color: var(--white);
}

.theme-btn {
    background: #222;
    border: 1px solid #333;
    color: var(--yellow);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-btn:hover {
    background: var(--yellow);
    color: var(--pure-black);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--white);
}

/* ============ STICKY SOCIAL (Sol Sabit) ============ */

.mystickyelements-lists-wrap {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 9000;
}

.mystickyelements-lists {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mystickyelements-social-icon-li {
    transition: transform 0.3s ease;
}

.mystickyelements-social-icon-li:hover {
    transform: translateX(10px);
}

.mystickyelements-social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 0 10px 10px 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.mystickyelements-social-whatsapp a {
    background: #25D366;
}

.mystickyelements-social-instagram a {
    background: #E1306C;
}

.mystickyelements-social-phone a {
    background: var(--yellow);
}

.mystickyelements-social-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.mystickyelements-social-phone img {
    filter: brightness(0);
}

/* ============ MOBILE MENU ============ */

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 80%;
    height: 100%;
    background: var(--bg-sec);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-sidebar.active {
    right: 0;
}

.sidebar-header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 15px;
}

.mobile-theme-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
}

.close-menu {
    color: var(--header-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.close-menu:hover {
    color: var(--red);
    transform: rotate(90deg);
}

.close-menu .material-icons-outlined {
    font-size: 32px;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}

.mobile-nav-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--header-color);
    font-size: 16px;
    font-weight: 600;
    padding: 15px 0;
    border-bottom: 1px solid var(--card-border);
    transition: var(--transition);
}

.mobile-nav-content a .material-icons-outlined {
    color: var(--yellow);
    font-size: 22px;
}

.mobile-nav-content a:hover {
    color: var(--yellow);
    padding-left: 8px;
}

.mobile-res-btn {
    background: var(--yellow) !important;
    color: var(--pure-black) !important;
    padding: 12px 20px !important;
    border-radius: 8px;
    margin-top: 15px;
    justify-content: center;
    border: none !important;
    font-weight: 800 !important;
}

.mobile-res-btn .material-icons-outlined {
    color: var(--pure-black) !important;
}

.mobile-contact-info {
    margin-top: auto;
    padding-top: 20px;
}

.mobile-contact-info h4 {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.mobile-contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--header-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: var(--transition);
}

.mobile-contact-info a:hover {
    color: var(--yellow);
}

.mobile-contact-info .material-icons-outlined {
    font-size: 18px;
    color: var(--yellow);
}

.mobile-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
}

.mobile-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.mobile-social-icons a:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}

.mobile-social-icons a img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

[data-theme="light"] .mobile-social-icons a img {
    filter: grayscale(100%) contrast(200%);
}

[data-theme="light"] .mobile-social-icons a:hover img {
    filter: brightness(0);
}

/* ============ GENERAL SECTION ============ */

section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-heading {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--red);
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--header-color);
    margin-bottom: 15px;
}

.header-line {
    width: 60px;
    height: 5px;
    background: var(--yellow);
    margin: 0 auto;
    border-radius: 5px;
}

.section-header p {
    color: var(--text-muted);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============ HERO SLIDER ============ */

.hero-wrapper {
    position: relative;
    height: 85vh;
    padding: 0;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg .swiper-slide {
    background-size: cover;
    background-position: center;
}

.swiper-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero-foreground {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-text-box {
    color: var(--white);
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 6px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.yellow-badge {
    background: var(--yellow);
    color: var(--pure-black);
}

.hero-text-box h1 {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
}

.highlight-yellow {
    color: var(--yellow);
}

.hero-text-box p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.hero-features .material-icons-outlined {
    color: var(--yellow);
}

/* ============ FORM BOX ============ */

.hero-form-box {
    background: var(--card-bg);
    width: 420px;
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 6px solid var(--yellow);
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
    z-index: 10;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.form-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--header-color);
}

.form-header .material-icons-outlined {
    color: var(--red);
    font-size: 28px;
}

.input-group {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
    pointer-events: none;
    user-select: none;
}

.input-group label .material-icons-outlined {
    pointer-events: none;
}

.input-group input:not([type="date"]):not([type="time"]),
.input-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--card-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    background: var(--input-bg);
    color: var(--text-main);
    transition: var(--transition);
}

.input-group input:not([type="date"]):not([type="time"]):focus,
.input-group select:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(252, 209, 22, 0.1);
}

.input-group input[type="date"],
.input-group input[type="time"] {
    display: block !important;
    width: 100% !important;
    min-height: 48px !important;
    padding: 10px 15px !important;
    border: 2px solid var(--card-border) !important;
    border-radius: 8px !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    outline: none !important;
    background-color: #ffffff !important;
    color: #000000 !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 10 !important;
    pointer-events: auto !important;
    -webkit-appearance: auto !important;
    appearance: auto !important;
    color-scheme: light !important;
}

.input-group input[type="date"]::-webkit-calendar-picker-indicator,
.input-group input[type="time"]::-webkit-calendar-picker-indicator {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    cursor: pointer !important;
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 24px !important;
    height: 24px !important;
    z-index: 999 !important;
    color-scheme: light !important;
    filter: none !important;
}

.input-group input[type="date"]::-webkit-datetime-edit,
.input-group input[type="time"]::-webkit-datetime-edit {
    color: #000000 !important;
}

.input-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%2394a3b8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.input-group select option,
.input-group select optgroup {
    background: var(--card-bg);
    color: var(--text-main);
    font-weight: 500;
}

.input-group select optgroup {
    font-weight: 700;
    color: var(--yellow);
    font-style: normal;
}

.locked-input {
    background-color: var(--card-border) !important;
    color: var(--text-muted) !important;
    font-weight: 700 !important;
    cursor: not-allowed;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-hint {
    font-size: 11px;
    color: #64748b;
}

.btn-submit-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--pure-black);
    color: var(--yellow);
    padding: 16px;
    border: 1px solid var(--yellow);
    font-weight: 800;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-submit-hero:hover {
    background: var(--yellow);
    color: var(--pure-black);
}

/* ============ FORM DARK MODE ============ */

[data-theme="dark"] .hero-form-box {
    background: var(--card-bg);
}

[data-theme="dark"] .input-group input:not([type="date"]):not([type="time"]),
[data-theme="dark"] .input-group select {
    background: var(--input-bg);
    color: var(--text-main);
    border-color: var(--card-border);
}

[data-theme="dark"] .input-group input[type="date"],
[data-theme="dark"] .input-group input[type="time"] {
    background-color: #ffffff !important;
    color: #000000 !important;
    color-scheme: light !important;
}

[data-theme="dark"] .input-group input[type="date"]::-webkit-calendar-picker-indicator,
[data-theme="dark"] .input-group input[type="time"]::-webkit-calendar-picker-indicator {
    color-scheme: light !important;
    filter: none !important;
}

[data-theme="dark"] .locked-input {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

[data-theme="dark"] .swiper-overlay {
    background: linear-gradient(105deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.85) 40%, rgba(0, 0, 0, 0.3) 100%);
}

/* ============ STATS ============ */

.stats {
    padding: 40px 0;
    border-bottom: 4px solid var(--red);
    background: #0D0D0D;
    color: #E0E0E0;
}

[data-theme="light"] .stats {
    background: #f8fafc;
    color: #1A1A1A;
    border-bottom: 4px solid #CE1126;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-item strong {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
}

[data-theme="light"] .stat-item strong {
    color: #1A1A1A;
}

[data-theme="light"] .stat-item span {
    color: #666666;
}

.stat-icon {
    font-size: 40px;
    color: #FCD116;
    margin-bottom: 10px;
}

/* ============ SERVICES ============ */

.services,
.routes {
    background: var(--bg-sec);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--red);
}

.card-icon {
    font-size: 48px;
    color: var(--header-color);
    margin-bottom: 20px;
    transition: color 0.3s;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--header-color);
}

.service-card p {
    color: var(--text-muted);
}

/* ============ PREMIUM LOYALTY ============ */

.premium-loyalty {
    background: #0D0D0D;
    color: #E0E0E0;
    padding: 90px 0;
}

[data-theme="light"] .premium-loyalty {
    background: #f8fafc;
    color: #1A1A1A;
}

.loyalty-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.vip-card-wrapper {
    perspective: 1000px;
}

.vip-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
    border: 1px solid #333;
    width: 100%;
    max-width: 450px;
    height: 260px;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.05);
    transform: rotateY(15deg);
    transition: transform 0.5s;
    overflow: hidden;
}

[data-theme="light"] .vip-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid #444;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.03);
}

.vip-card:hover {
    transform: rotateY(0deg) scale(1.02);
}

.card-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #D4AF37, #AA7700);
    border-radius: 5px;
    margin-bottom: 40px;
    position: relative;
}

.card-chip::after {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}

.card-logo {
    font-size: 18px;
    font-weight: 800;
    position: absolute;
    top: 30px;
    right: 30px;
    color: #FFFFFF;
}

.card-logo span {
    color: #CE1126;
}

.card-number {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #DDD;
}

.card-name {
    font-size: 14px;
    letter-spacing: 2px;
    color: #FCD116;
}

.card-flag {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 6px;
    background: linear-gradient(90deg, #000 33%, #FCD116 33%, #FCD116 66%, #CE1126 66%);
    border-radius: 0 0 16px 0;
}

.loyalty-details .sub-heading {
    color: #FCD116;
}

.loyalty-details h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

[data-theme="light"] .loyalty-details h2 {
    color: #1A1A1A;
}

.loyalty-desc {
    color: #AAA;
    font-size: 16px;
    margin-bottom: 40px;
}

[data-theme="light"] .loyalty-desc {
    color: #666666;
}

.loyalty-perks {
    list-style: none;
}

.loyalty-perks li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.perk-icon {
    width: 50px;
    height: 50px;
    background: rgba(252, 209, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

[data-theme="light"] .perk-icon {
    background: rgba(252, 209, 22, 0.15);
}

.perk-icon .material-icons-outlined {
    color: #FCD116;
    font-size: 24px;
}

.perk-text h4 {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 5px;
}

[data-theme="light"] .perk-text h4 {
    color: #1A1A1A;
}

.perk-text p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

[data-theme="light"] .perk-text p {
    color: #666666;
}

/* ============ UPCOMING TICKETS ============ */

.upcoming {
    background: var(--bg-main);
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.premium-ticket {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.premium-ticket:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
}

.ticket-time-date {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-sec);
    border-bottom: 1px dashed var(--card-border);
    color: var(--header-color);
}

.ticket-time-date .material-icons-outlined {
    font-size: 30px;
    color: var(--red);
}

.ticket-time-date strong {
    display: block;
    font-size: 16px;
}

.ticket-route-nodes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
}

.node .city {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--header-color);
    margin-bottom: 5px;
}

.node .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid var(--yellow);
    background: var(--card-bg);
}

.text-right {
    text-align: right;
}

.route-line {
    flex-grow: 1;
    text-align: center;
    position: relative;
    margin: 0 15px;
}

.route-line hr {
    border: none;
    border-top: 2px dashed var(--card-border);
    position: absolute;
    width: 100%;
    top: 50%;
    z-index: 1;
}

.route-line .car-icon {
    position: relative;
    z-index: 2;
    background: var(--card-bg);
    padding: 0 10px;
    color: var(--text-muted);
}

.ticket-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-top: 1px solid var(--card-border);
    background: var(--bg-main);
}

.seat-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.btn-ticket {
    background: var(--pure-black);
    color: var(--yellow);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid var(--yellow);
}

/* ============ MODERN ROUTE ============ */

.modern-route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.modern-route-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.modern-route-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--pure-black);
}

.mr-icon {
    background: var(--bg-sec);
    padding: 15px;
    border-radius: 50%;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mr-content h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--header-color);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.mr-content h4 .material-icons-outlined {
    font-size: 16px;
    color: var(--yellow);
}

.mr-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ============ LUXURY MAP ============ */

.luxury-map-section {
    background: var(--pure-black);
}

.luxury-map-section .section-header h2 {
    color: var(--white);
}

.luxury-map-wrapper {
    display: flex;
    height: 600px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 4px solid #333;
}

.map-view {
    flex: 2;
    height: 100%;
    z-index: 1;
}

.map-sidebar {
    flex: 1;
    background: #111;
    color: var(--white);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-left: 1px solid #333;
}

.sidebar-head {
    background: var(--red);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.sidebar-head h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.sidebar-head .material-icons-outlined {
    color: var(--yellow);
    font-size: 28px;
}

.sidebar-list {
    overflow-y: auto;
    flex-grow: 1;
    padding: 0;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sidebar-item {
    padding: 20px 25px;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.sidebar-item:hover {
    background: #1A1A1A;
    border-left-color: var(--yellow);
}

.sidebar-item .material-icons-outlined {
    color: var(--yellow);
    font-size: 24px;
    margin-top: 2px;
}

.s-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.s-info p {
    margin: 0;
    font-size: 13px;
    color: #888;
}

.s-info strong {
    display: block;
    margin-top: 8px;
    color: var(--yellow);
    font-size: 12px;
}

/* ============ ABOUT ============ */

.about-section {
    background: var(--bg-main);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-box {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img-placeholder {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--yellow);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: var(--pure-black);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.experience-badge strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--header-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--header-color);
}

.about-list .material-icons-outlined {
    color: var(--red);
    font-size: 24px;
}

/* ============ REVIEWS ============ */

.premium-reviews {
    background: var(--bg-sec);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.review-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.highlight-card {
    background: var(--pure-black);
    color: var(--white);
    border-color: var(--pure-black);
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(252, 209, 22, 0.2);
}

.highlight-card .review-text {
    color: #CCC;
}

.highlight-card .reviewer-info h4 {
    color: var(--white);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-sec);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--header-color);
    border: 1px solid var(--card-border);
}

.dark-avatar {
    background: var(--yellow);
    color: var(--pure-black);
    border-color: var(--yellow);
}

.reviewer-info h4 {
    font-size: 16px;
    color: var(--header-color);
    margin-bottom: 2px;
}

.route-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    background: rgba(206, 17, 38, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.highlight-card .route-tag {
    background: rgba(252, 209, 22, 0.1);
    color: var(--yellow);
}

.stars {
    color: var(--yellow);
}

.stars .material-icons-outlined {
    font-size: 16px;
    font-variation-settings: 'FILL' 1;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    font-style: italic;
}

/* ============ FOOTER ============ */

.premium-footer {
    background: #0A0A0A;
    color: #888;
    padding: 80px 0 30px;
    border-top: 3px solid var(--pure-black);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 1.5fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand .footer-logo span {
    color: var(--red);
}

.footer-brand .footer-logo .material-icons-outlined {
    color: var(--yellow);
    font-size: 32px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #999;
    max-width: 350px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid #333;
}

.footer-socials a:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}

.footer-socials a img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.footer-socials a:hover img {
    filter: brightness(0);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    color: #999;
}

.footer-links a .material-icons-outlined {
    font-size: 16px;
    color: var(--red);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--yellow);
    transform: translateX(5px);
}

.footer-links a:hover .material-icons-outlined {
    color: var(--yellow);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #999;
}

.contact-list .material-icons-outlined {
    color: var(--yellow);
    font-size: 20px;
    margin-top: 2px;
}

.contact-list a {
    color: var(--white);
    transition: var(--transition);
    font-weight: 500;
}

.contact-list a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.footer-flag {
    display: flex;
    height: 4px;
    width: 60px;
    border-radius: 2px;
    overflow: hidden;
}

/* ============ TOAST / POPUP ============ */

.ride-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 420px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    z-index: 99999;
    opacity: 0;
    transform: translateX(120%);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
}

.ride-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.ride-toast-success {
    background: #10b981;
    color: #fff;
    border-left: 5px solid #059669;
}

.ride-toast-error {
    background: #ef4444;
    color: #fff;
    border-left: 5px solid #dc2626;
}

/* ============ BUTON AKTİF ============ */

.btn-checkout {
    background: #555 !important;
    color: #aaa !important;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

.btn-checkout.btn-active {
    background: linear-gradient(135deg, #FCD116, #e5b800) !important;
    color: #1a1a1a !important;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(252, 209, 22, 0.4);
}

.btn-checkout.btn-active:hover {
    background: linear-gradient(135deg, #e5b800, #cc9f00) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(252, 209, 22, 0.5);
}

/* ============ FOR SHARED RIDES & LOCATION PAGES (DASHBOARD) ============ */

.inline-form {
    display: inline;
}

.empty-locations {
    padding: 20px;
    color: #94a3b8;
    text-align: center;
}

.new-group-option {
    font-weight: bold;
    color: #10b981;
}

.seats-label {
    font-size: 11px;
    color: #64748b;
}

/* ============ RESPONSIVE (ALL AT THE BOTTOM) ============ */

@media (max-width: 1024px) {
    .hero-wrapper {
        height: auto;
        min-height: 100vh;
    }
    .hero-foreground {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        justify-content: center;
    }
    .hero-text-box {
        max-width: 100%;
    }
    .hero-text-box h1 {
        font-size: 38px;
    }
    .hero-features {
        justify-content: center;
    }
    .hero-form-box {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .services-grid,
    .stats-grid,
    .modern-route-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ticket-grid,
    .reviews-grid,
    .loyalty-grid,
    .about-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    .vip-card-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    .highlight-card {
        transform: none;
    }
    .luxury-map-wrapper {
        flex-direction: column;
        height: 800px;
    }
    .map-sidebar {
        border-left: none;
        border-top: 1px solid var(--card-border);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .nav-links,
    .desktop-theme-btn{
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .nav-actions {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    img.logo-img {
    width: 200px;
    }
    .hero-wrapper {
        height: auto;
        padding: 100px 0;
    }
    .hero-text-box h1 {
        font-size: 28px;
    }
    .hero-text-box p {
        font-size: 15px;
    }
    .hero-form-box {
        padding: 25px 20px;
    }
    .hero-features span {
        padding: 8px 14px;
        font-size: 13px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .services-grid,
    .stats-grid,
    .modern-route-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .ride-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: 100%;
        font-size: 14px;
        padding: 14px 18px;
    }
}

.time-opt {
    color: #000000;
    font-size: 14px;
}