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

/* --- DESIGN SYSTEM & TOKENS --- */
:root {
    --bg-primary: #090d16;
    --bg-secondary: #111827;
    --bg-card: rgba(24, 32, 51, 0.65);
    --bg-card-hover: rgba(30, 41, 64, 0.8);
    --color-primary: #f3b000;      /* Premium taxi gold */
    --color-primary-rgb: 243, 176, 0;
    --color-primary-hover: #ffc425;
    --color-primary-light: #fff3d1;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(243, 176, 0, 0.15);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 0 25px rgba(243, 176, 0, 0.35);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}


body.light-theme {
    --bg-primary: #f1f5f9;         /* Light grey */
    --bg-secondary: #ffffff;       /* Pure white */
    --bg-card: rgba(255, 255, 255, 0.75); /* Frosty light card */
    --bg-card-hover: rgba(255, 255, 255, 0.95);
    --text-primary: #0f172a;       /* Slate 900 */
    --text-secondary: #475569;     /* Slate 600 */
    --text-muted: #94a3b8;         /* Slate 400 */
    --border-color: rgba(15, 23, 42, 0.08);
    --border-glow: rgba(243, 176, 0, 0.2);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Dynamic Radial Background Glows */
body::before, body::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 176, 0, 0.07) 0%, rgba(9, 13, 22, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

body::before {
    top: 5%;
    right: -10%;
}

body::after {
    bottom: 15%;
    left: -15%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* --- REUSABLE UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.bg-gradient-gold {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffc837 100%);
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(243, 176, 0, 0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    text-align: center;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffc425 100%);
    color: #000;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    background: linear-gradient(135deg, #ffc425 0%, var(--color-primary) 100%);
}

.btn-outline {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(243, 176, 0, 0.05);
    transform: translateY(-2px);
}

.btn-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10;
}

.btn-whatsapp {
    background: #25d366;
}
.btn-whatsapp:hover {
    background: #20ba5a;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: scale(1.05);
}

.btn-phone {
    background: var(--color-primary);
    color: #000;
}
.btn-phone:hover {
    background: var(--color-primary-hover);
    box-shadow: var(--shadow-gold);
    transform: scale(1.05);
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(243, 176, 0, 0.1);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(243, 176, 0, 0.25);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 48px;
    font-size: 1.1rem;
}

.section-header {
    margin-bottom: 40px;
}

/* --- HEADER / NAVIGATION --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img-container {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid var(--color-primary);
    box-shadow: 0 0 12px rgba(243, 176, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.42);
    transition: var(--transition-normal);
}

.logo-wrapper:hover .logo-img-container {
    box-shadow: 0 0 18px rgba(243, 176, 0, 0.65);
    border-color: var(--color-primary-hover);
}

.logo-wrapper:hover .logo-img {
    transform: scale(1.52);
}

.logo-icon {
    font-size: 2rem;
    color: var(--color-primary);
    filter: drop-shadow(0 0 8px rgba(243, 176, 0, 0.5));
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 50%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

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

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

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

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

.theme-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.theme-toggle-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(243, 176, 0, 0.05);
    transform: rotate(30deg) scale(1.05);
}

body.light-theme .theme-toggle-btn {
    background: rgba(15, 23, 42, 0.03);
}

.nav-actions {
    display: block;
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

/* Hamburger Active Animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(243, 176, 0, 0.03) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
    animation: blink 1.5s infinite;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
    width: 100%;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    width: 100%;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 4px;
    background: linear-gradient(135deg, #fff, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Giriş Ekranındaki İletişim & Rezervasyon Paneli */
.hero-booking-panel {
    padding: 35px;
    border-color: rgba(243, 176, 0, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-booking-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), #ffc425);
}

.panel-header {
    margin-bottom: 25px;
}

.panel-header h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-header p {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    background: rgba(9, 13, 22, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px 12px 45px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(243, 176, 0, 0.15);
    background: rgba(9, 13, 22, 0.85);
}

.form-group input:focus + .input-icon,
.form-group textarea:focus + .input-icon {
    color: var(--color-primary);
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    cursor: pointer;
    font-size: 1rem;
}

.form-feedback {
    font-size: 0.88rem;
    margin-top: 5px;
    border-radius: var(--radius-sm);
    display: none;
    transition: var(--transition-fast);
}

.form-feedback.success {
    display: block;
    color: #25d366;
}

.form-feedback.error {
    display: block;
    color: #ef4444;
}

/* --- STICKY QUICK ACTIONS BAR --- */
.quick-actions-bar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.quick-actions-bar .action-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-text-box {
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateX(15px);
    pointer-events: none;
    transition: var(--transition-normal);
}

.quick-actions-bar .action-item:hover .action-text-box {
    opacity: 1;
    transform: translateX(0);
}

.action-text-box span {
    font-size: 0.72rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.action-text-box strong {
    font-size: 0.88rem;
    color: var(--text-primary);
}

/* Floating animation for sticky buttons */
.btn-circle {
    animation: pulseGlow 2.5s infinite;
}

/* --- FEATURES SECTION --- */
.features {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

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

.feature-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(243, 176, 0, 0.08);
    border: 1px solid rgba(243, 176, 0, 0.2);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-box {
    background: var(--color-primary);
    color: #000;
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

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

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

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

.about-graphics::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(9, 13, 22, 0.8) 100%);
    z-index: 3;
    pointer-events: none;
}

.about-slider-container {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.about-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
}

.about-slide.active {
    opacity: 1;
    z-index: 2;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-slider-container:hover .about-slide.active img {
    transform: scale(1.05);
}

/* Slider arrows */
.about-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(9, 13, 22, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.about-slider-btn:hover {
    background: var(--color-primary);
    color: #000;
    border-color: var(--color-primary);
}

.about-slider-btn.prev-btn {
    left: 20px;
}

.about-slider-btn.next-btn {
    right: 20px;
}

/* Dots */
.about-slider-dots {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.about-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
}

.about-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.about-dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: var(--radius-full);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ffc425 100%);
    color: #000;
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 5;
    text-align: center;
}

.experience-badge h3 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge p {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.about-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bullet-item i {
    font-size: 1.1rem;
}

.bullet-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* --- GÜZERGAHLAR SECTION --- */
.routes {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.route-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--radius-md);
}

.route-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.route-icon {
    font-size: 1.8rem;
    color: var(--color-primary);
}

.route-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.route-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
}

.detail-item span {
    color: var(--text-secondary);
}

.detail-item strong {
    color: var(--text-primary);
}

.route-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.route-card .btn {
    width: 100%;
}



/* --- ARAÇLARIMIZ SECTION --- */
.vehicles {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.vehicle-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.vehicle-img-wrapper {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #090d16 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.vehicle-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-slow);
}

.vehicle-card:hover .vehicle-img-wrapper img {
    transform: scale(1.03);
}

.vehicle-info {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.vehicle-type {
    color: var(--color-primary);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.vehicle-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.vehicle-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.vehicle-specs span {
    font-size: 0.85rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.vehicle-specs i {
    color: var(--color-primary);
}

/* --- İLETİŞİM SECTION --- */
.contact {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-cards .contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    align-items: center;
}

.contact-icon-box {
    width: 55px;
    height: 55px;
    background: rgba(243, 176, 0, 0.08);
    border: 1px solid rgba(243, 176, 0, 0.2);
    border-radius: 50%;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-card:hover .contact-icon-box {
    background: var(--color-primary);
    color: #000;
    transform: scale(1.05);
}

.contact-card-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-card-content p a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-card-content p a:hover {
    color: var(--color-primary);
}

.card-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.contact-form-container {
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 25px;
}

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

.contact-form .form-group input {
    padding: 12px 16px; /* Override the icon padding since contact form doesn't use input icons */
}

.contact-form textarea {
    width: 100%;
    background: rgba(9, 13, 22, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.contact-form textarea:focus {
    border-color: var(--color-primary);
    background: rgba(9, 13, 22, 0.85);
}

/* Premium Dark Map Style */
.map-container {
    width: 100%;
    height: 400px;
    margin-top: 40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

/* Google Maps Dark-Mode Filter */
.map-container iframe {
    filter: invert(90%) hue-rotate(180deg) contrast(120%) brightness(95%);
    transition: filter 0.3s ease;
}

/* --- FOOTER --- */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 320px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--color-primary);
    color: #000;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 176, 0, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(243, 176, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(243, 176, 0, 0);
    }
}

/* --- MEDIA QUERIES (RESPONSIVENESS) --- */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    .about-grid, .calculator-wrapper {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-booking-panel {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
    
    /* Navigation Menu drawer for mobile/tablet */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(9, 13, 22, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-normal);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-actions {
        display: none; /* Hide standard nav button on smaller screens */
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid, .calculator-wrapper, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-graphics {
        order: 2;
    }
    
    .about-graphics img {
        height: 380px;
    }
    
    .about-info {
        order: 1;
    }
    
    .calc-info {
        text-align: center;
    }
    
    .presets-buttons {
        justify-content: center;
    }
    
    .calc-card {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vehicle-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto 20px auto;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .about-bullets {
        grid-template-columns: 1fr;
    }
    
    /* Sticky Actions layout optimization for mobile */
    .quick-actions-bar {
        bottom: 16px;
        right: 16px;
        gap: 12px;
    }
    
    .btn-circle {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .action-text-box {
        display: none; /* Hide tooltip style text box on small touchscreens to avoid overlap */
    }
}

/* --- GOOGLE REVIEWS SECTION --- */
.reviews {
    padding: 100px 0;
    position: relative;
}

.reviews-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.google-rating-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    margin-bottom: 50px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(243, 176, 0, 0.05) 0%, rgba(9, 13, 22, 0.6) 100%);
    border: 1px solid rgba(243, 176, 0, 0.15);
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.rating-stars-wrapper .stars {
    color: var(--color-primary);
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.rating-stars-wrapper .stars i {
    text-shadow: 0 0 10px rgba(243, 176, 0, 0.4);
}

.review-count {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.review-card {
    padding: 30px;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(243, 176, 0, 0.05);
    border-color: rgba(243, 176, 0, 0.3);
}

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

.user-info h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.user-tag {
    font-size: 0.8rem;
    color: var(--color-primary);
    background: rgba(243, 176, 0, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 500;
}

.review-stars {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 20px;
}

.review-source {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

/* Responsive styles */
@media (max-width: 992px) {
    .google-rating-card {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 30px;
    }
    
    .rating-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* --- LIGHT THEME SPECIFIC OVERRIDES --- */
body.light-theme {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

body.light-theme::before, body.light-theme::after {
    background: radial-gradient(circle, rgba(243, 176, 0, 0.04) 0%, rgba(241, 245, 249, 0) 70%);
}

body.light-theme .logo-text {
    background: linear-gradient(135deg, #0f172a 50%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-theme .header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.light-theme .nav-menu {
    background: rgba(255, 255, 255, 0.98);
}

body.light-theme .action-text-box {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.12);
}

body.light-theme .action-text-box strong {
    color: #0f172a;
}

body.light-theme .preset-btn {
    background: rgba(15, 23, 42, 0.04);
    color: var(--text-secondary);
}

body.light-theme .preset-btn:hover {
    background: rgba(243, 176, 0, 0.1);
    color: var(--color-primary-hover);
}

body.light-theme .map-container iframe {
    filter: none; /* Disable dark mode filter */
}

body.light-theme .form-group input, 
body.light-theme .form-group textarea, 
body.light-theme .form-group select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: #0f172a;
}

body.light-theme .form-group input:focus, 
body.light-theme .form-group textarea:focus {
    background: #ffffff;
    border-color: var(--color-primary);
}

body.light-theme .calc-input-wrapper input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: #0f172a;
}

body.light-theme .calc-input-wrapper input:focus {
    background: #ffffff;
    border-color: var(--color-primary);
}

body.light-theme .vehicle-option {
    background: rgba(255, 255, 255, 0.5);
}

body.light-theme .vehicle-option.active {
    background: rgba(243, 176, 0, 0.08);
}

body.light-theme .hamburger span {
    background-color: #0f172a;
}

body.light-theme .google-rating-card {
    background: linear-gradient(135deg, rgba(243, 176, 0, 0.04) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(243, 176, 0, 0.2);
}

body.light-theme .user-info h4 {
    color: #0f172a;
}

body.light-theme .review-card:hover {
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
}

