/* ==========================================================================
   ÖZDEMİR VIP TAŞIMACILIK - PREMIUM DESIGN SYSTEM
   ========================================================================== */

/* IMPORT GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* CSS VARIABLES */
:root {
    --primary: #D4AF37;          /* Classic Luxurious Gold */
    --primary-glow: rgba(212, 175, 55, 0.4);
    --primary-dark: #AA8418;
    --bg-obsidian: #080808;      /* Pure Premium Dark Black */
    --bg-dark: #121212;          /* Rich Secondary Dark Black */
    --bg-card: rgba(20, 20, 20, 0.75); /* Glassmorphism Card base */
    --text-light: #FFFFFF;
    --text-muted: #A5A5A5;
    --border-gold: rgba(212, 175, 55, 0.15);
    --border-light: rgba(255, 255, 255, 0.08);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --glass-blur: blur(16px);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.6), 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-obsidian);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 45%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

input, select, textarea, button {
    font-family: var(--font-body);
    outline: none;
}

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

/* ==========================================================================
   UTILITY CLASSES & GLASSMORPHISM
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
    display: inline-block;
}

.section-title h2 span {
    color: var(--primary);
    font-style: italic;
    font-weight: 400;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-glow);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.05), var(--shadow-premium);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-obsidian);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border-color: var(--border-gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.gold-text {
    color: var(--primary);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(8, 8, 8, 0.95);
    border-bottom: 1px solid var(--border-gold);
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--primary);
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* LANGUAGE SWITCHER */
.lang-switcher {
    position: relative;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    padding: 8px 14px;
    border-radius: 20px;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.lang-btn:hover {
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-dark);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    min-width: 100px;
    display: none;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.lang-dropdown.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.lang-opt {
    padding: 10px 16px;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.lang-opt:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary);
}

.lang-opt.active {
    color: var(--primary);
    font-weight: 600;
}

/* MOBILE NAV TOGGLE */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: zoomBackground 20s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(8, 8, 8, 0.7) 0%, 
        rgba(8, 8, 8, 0.85) 60%, 
        rgba(8, 8, 8, 1) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease forwards;
}

.tursab-badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-light);
}

.hero h1 span {
    display: block;
    color: var(--primary);
    font-style: italic;
    font-weight: 400;
    font-family: var(--font-heading);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services {
    padding: 100px 0;
    background: var(--bg-obsidian);
}

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

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-icon-box {
    background: var(--primary);
    color: var(--bg-obsidian);
    box-shadow: 0 10px 25px var(--primary-glow);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-light);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ==========================================================================
   FLEET SECTION
   ========================================================================== */
.fleet {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.fleet-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: var(--bg-obsidian);
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.fleet-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fleet-img-wrapper {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.fleet-card:hover .fleet-img {
    transform: scale(1.08);
}

.fleet-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(8, 8, 8, 0.85);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.fleet-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fleet-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.fleet-capacity {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fleet-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    margin-bottom: 30px;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.feature-item {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
}

.feature-item i {
    color: var(--primary);
}

.fleet-action {
    margin-top: auto;
    width: 100%;
}

/* ==========================================================================
   BOOKING WIZARD SECTION
   ========================================================================== */
.booking {
    padding: 100px 0;
    background: var(--bg-obsidian);
    position: relative;
}

.booking-wrapper {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px;
}

/* PROGRESS BAR */
.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 4%;
    right: 4%;
    height: 2px;
    background: var(--border-light);
    z-index: 1;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 4%;
    width: 0%;
    height: 2px;
    background: var(--primary);
    z-index: 2;
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px var(--primary-glow);
}

.step-node {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.step-node.active .step-circle {
    border-color: var(--primary);
    color: var(--bg-obsidian);
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.step-node.completed .step-circle {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-dark);
}

.step-label {
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: var(--transition-smooth);
}

.step-node.active .step-label {
    color: var(--primary);
}

/* WIZARD CONTENT */
.wizard-form-body {
    min-height: 300px;
    position: relative;
}

.wizard-step-panel {
    display: none;
}

.wizard-step-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.wizard-step-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
    font-weight: 600;
}

/* CUSTOM FIELDS FOR WIZARD */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
}

.form-group-full {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 500;
}

.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

select.form-input {
    cursor: pointer;
}

/* STEP 1: ROUTE CARDS */
.route-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.route-card {
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-smooth);
}

.route-card i {
    font-size: 2.2rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    transition: var(--transition-smooth);
}

.route-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.route-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}

.route-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.02);
}

.route-card.selected {
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.05);
}

.route-card.selected i {
    color: var(--primary);
    transform: scale(1.08);
}

/* STEP 3: VEHICLE RADIO TILES */
.vehicle-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vehicle-tile {
    display: flex;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
}

.vehicle-tile img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.vehicle-tile-info {
    flex-grow: 1;
}

.vehicle-tile-info h4 {
    font-size: 1rem;
    font-weight: 600;
}

.vehicle-tile-info p {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
}

.vehicle-tile:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.vehicle-tile.selected {
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.08);
}

/* EXTRAS CHECKBOXES */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 10px;
}

.extra-checkbox-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.extra-checkbox-card input {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

.extra-checkbox-card span {
    font-size: 0.9rem;
    font-weight: 400;
}

.extra-checkbox-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.extra-checkbox-card.selected {
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.05);
}

/* WIZARD ACTIONS & NAVIGATION BUTTONS */
.wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
}

/* FINAL STEP SUMMARY */
.summary-container {
    background: rgba(8, 8, 8, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dotted var(--border-light);
}

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

.summary-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.summary-val {
    font-weight: 600;
    font-size: 0.95rem;
    text-align: right;
}

.booking-channels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.btn-channel {
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
    border: none;
}

.btn-whatsapp {
    background: #25D366;
}
.btn-whatsapp:hover {
    background: #20BA5A;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-telegram {
    background: #0088CC;
}
.btn-telegram:hover {
    background: #0077B5;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
    transform: translateY(-2px);
}

.btn-email-submit {
    grid-column: span 2;
    background: var(--bg-dark);
    border: 1px solid var(--border-gold);
    color: var(--primary);
    margin-top: 8px;
}
.btn-email-submit:hover {
    background: var(--primary);
    color: var(--bg-obsidian);
    transform: translateY(-2px);
}

/* ==========================================================================
   ABOUT & ACCREDITATION SECTION
   ========================================================================== */
.about {
    padding: 100px 0;
    background: var(--bg-dark);
}

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

.about-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.25;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
    font-weight: 300;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.about-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feat-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 4px;
}

.about-feat-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-feat-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* LICENSE CONTAINER */
.tursab-badge-large {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
    border: 1px solid var(--primary);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.tursab-badge-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.tursab-logo {
    font-size: 3.5rem;
    color: #E30613; /* TÜRSAB RED */
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(227, 6, 19, 0.2);
}

.tursab-logo span {
    color: var(--text-light);
    font-size: 1.2rem;
    display: block;
    letter-spacing: 2px;
    margin-top: -8px;
    font-weight: 400;
    font-family: var(--font-body);
}

.tursab-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tursab-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    font-family: var(--font-body);
    margin-bottom: 12px;
}

.tursab-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact {
    padding: 100px 0;
    background: var(--bg-obsidian);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-info h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-item-info p, .contact-item-info a {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.contact-item-info a:hover {
    color: var(--primary);
}

.contact-legal-card {
    padding: 20px;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.contact-legal-card h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-legal-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: #050505;
    border-top: 1px solid var(--border-light);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-main {
    font-size: 1.4rem;
}

.footer-logo .logo-sub {
    font-size: 0.55rem;
    letter-spacing: 3px;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
}

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

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: var(--primary);
    color: var(--bg-obsidian);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* ==========================================================================
   FLOATING COMM CHANNELS (BOTTOM RIGHT)
   ========================================================================== */
.floating-comms {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
}

.float-whatsapp {
    background: #25D366;
}
.float-whatsapp:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.float-telegram {
    background: #0088CC;
}
.float-telegram:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.5);
}

/* FLOAT LABELS */
.float-btn::before {
    content: attr(data-label);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(8, 8, 8, 0.9);
    border: 1px solid var(--border-gold);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.float-btn:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomBackground {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
    header .container {
        height: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        z-index: 998;
        border-top: 1px solid var(--border-light);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 60px;
        height: auto;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-grid {
        flex-direction: column-reverse;
        display: flex;
    }
    
    .tursab-badge-large {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-info {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .route-selector {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .vehicle-tiles {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .extras-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-channels {
        grid-template-columns: 1fr;
    }
    
    .btn-email-submit {
        grid-column: span 1;
    }
    
    .booking-wrapper {
        padding: 24px 16px;
    }
    
    .booking-steps {
        margin-bottom: 30px;
    }
    
    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .step-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
    
    .floating-comms {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }
    
    .float-btn::before {
        display: none; /* Hide labels on mobile to avoid overlapping */
    }

    /* Modal Responsive adjustments */
    .modal-body-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .modal-content {
        padding: 24px;
    }
    .modal-features-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SUPER VIP PREMIUM STYLES
   ========================================================================== */

/* CURRENCY SWITCHER */
.currency-switcher {
    position: relative;
}
.currency-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    padding: 8px 14px;
    border-radius: 20px;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}
.currency-btn:hover {
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
}
.currency-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-dark);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    min-width: 100px;
    display: none;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    z-index: 1001;
}
.currency-dropdown.show {
    display: block;
    animation: fadeIn 0.3s ease;
}
.currency-opt {
    padding: 10px 16px;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}
.currency-opt:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary);
}
.currency-opt.active {
    color: var(--primary);
    font-weight: 600;
}

/* VEHICLE DETAIL MODAL OVERLAYS */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    width: 90%;
    max-width: 850px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    border: 1px solid var(--border-gold);
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-premium), 0 0 30px rgba(212, 175, 55, 0.05);
    border-radius: 16px;
    animation: modalZoomIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes modalZoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1;
}
.modal-close-btn:hover {
    color: var(--primary);
}
.modal-body-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 35px;
    align-items: center;
}
.modal-img-column img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-premium);
    display: block;
}
.modal-vehicle-capacity {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}
.modal-section-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 6px;
    margin-top: 22px;
    margin-bottom: 12px;
}
.modal-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.modal-features-list li {
    font-size: 0.88rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
}
.modal-features-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}
.modal-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.stat-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    padding: 12px;
    border-radius: 8px;
}
.stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--text-muted);
}
.stat-val {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 4px;
}

/* WELCOME BOARD TABLET SIMULATOR */
.welcome-board-tablet {
    background: #050505;
    border: 12px solid #1c1c1c;
    border-radius: 24px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15), var(--shadow-premium);
    padding: 24px;
    max-width: 440px;
    margin: 20px auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.welcome-board-tablet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.04) 0%, transparent 80%);
    pointer-events: none;
}
.welcome-board-header {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 12px;
    margin-bottom: 20px;
}
.welcome-board-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    display: block;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
.welcome-board-sub {
    font-size: 0.58rem;
    letter-spacing: 4px;
    color: var(--text-light);
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}
.welcome-board-welcome {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 6px;
}
.welcome-board-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-light);
    font-style: italic;
    padding: 10px 0;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    line-height: 1.2;
    text-transform: uppercase;
    min-height: 48px;
}
.welcome-board-footer {
    border-top: 1px solid var(--border-light);
    margin-top: 20px;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* TESTIMONIALS SLIDER */
.testimonials {
    padding: 100px 0;
    background: var(--bg-obsidian);
}
.testimonials-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.testimonials-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    text-align: center;
}
.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
    position: relative;
    font-weight: 400;
}
.testimonial-quote::before {
    content: '“';
    font-size: 5rem;
    color: var(--primary);
    position: absolute;
    top: -40px;
    left: 10px;
    opacity: 0.12;
}
.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.testimonial-company {
    font-size: 0.78rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 4px;
}
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.dot.active {
    background: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 8px var(--primary-glow);
}

/* FAQ ACCORDION */
.faq {
    padding: 100px 0;
    background: var(--bg-dark);
}
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: var(--bg-card);
    overflow: hidden;
    transition: var(--transition-smooth);
}
.faq-item:hover {
    border-color: var(--border-gold);
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.03);
}
.faq-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition-smooth);
    padding-right: 15px;
}
.faq-item.active .faq-question {
    color: var(--primary);
}
.faq-toggle-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}
.faq-toggle-icon::before, .faq-toggle-icon::after {
    content: '';
    position: absolute;
    background: var(--text-muted);
    transition: var(--transition-smooth);
}
.faq-toggle-icon::before {
    width: 14px;
    height: 2px;
    top: 11px;
    left: 5px;
}
.faq-toggle-icon::after {
    width: 2px;
    height: 14px;
    top: 5px;
    left: 11px;
}
.faq-item.active .faq-toggle-icon::before, .faq-item.active .faq-toggle-icon::after {
    background: var(--primary);
}
.faq-item.active .faq-toggle-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-content {
    padding: 0 30px 30px 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
}

@keyframes radarPulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* AUTOCOMPLETE SUGGESTIONS */
.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    margin-top: 5px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
}
.autocomplete-suggestion-group {
    padding: 8px 16px;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(212, 175, 55, 0.04);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.autocomplete-suggestion-item {
    padding: 12px 18px;
    font-size: 0.88rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.autocomplete-suggestion-item:hover {
    background: rgba(212, 175, 55, 0.08);
    color: #FFF;
    padding-left: 24px;
}

/* VEHICLE DYNAMIC ESTIMATES TILES IN STEP 2 */
.calc-vehicle-tile {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    user-select: none;
}
.calc-vehicle-tile:hover {
    background: rgba(212, 175, 55, 0.04) !important;
    border-color: rgba(212, 175, 55, 0.35) !important;
    transform: translateY(-2px);
}
.calc-vehicle-tile.active {
    background: rgba(212, 175, 55, 0.08) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15) !important;
}

/* PREMIUM UPGRADE ADDITIONS (TIMELINE & INTERACTIVE SWATCHES) */

@media (min-width: 992px) {
    .timeline-line-glow {
        display: block !important;
    }
}

.timeline-item-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.timeline-item-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.45) !important;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18) !important;
    background: rgba(212, 175, 55, 0.02) !important;
}

.ambient-btn {
    transition: all 0.25s ease !important;
}

.ambient-btn:hover {
    transform: scale(1.15);
}

.ambient-btn.active {
    transform: scale(1.2);
}

/* Glowing selector for VIP Service class cards */
#vip-package-selector .extra-checkbox-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#vip-package-selector .extra-checkbox-card:hover {
    border-color: rgba(212, 175, 55, 0.3) !important;
    transform: translateY(-2px);
}

#vip-package-selector .extra-checkbox-card.selected {
    border-color: var(--primary) !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1) !important;
}

/* Canlı VIP OCC Panel Styles */
@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    70% { transform: scale(1.15); opacity: 0.8; box-shadow: 0 0 0 8px rgba(37,211,102,0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.telemetry-row {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.telemetry-row:hover {
    border-color: rgba(212,175,55,0.45) !important;
    background: rgba(212,175,55,0.03) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transform: translateX(4px);
}

/* Cabin Amenities Styles */
.amenity-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.amenity-card:hover {
    border-color: rgba(212, 175, 55, 0.3) !important;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.03) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.amenity-card.selected {
    border-color: var(--primary) !important;
    background: rgba(212, 175, 55, 0.04) !important;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.12) !important;
}
