/* =========================================================
   BALATÇIK TAKSİ - MODERN MOBILE-FIRST APP UI (v3.5)
   Sleek Taxi Aesthetics | Premium Dark/Light | No Clutter
   ========================================================= */

:root {
    --primary: #FFD600;
    --primary-hover: #F5CC00;
    --primary-rgb: 255, 214, 0;
    --primary-soft: rgba(255, 214, 0, 0.12);
    --primary-text: #121316;

    --dark: #121316;
    --dark-surface: #1E2025;
    --dark-border: #2C2F36;

    --bg: #F8F9FA;
    --bg-card: #FFFFFF;
    --bg-elevated: #FFFFFF;
    --border: #E8ECEF;
    --border-subtle: rgba(0, 0, 0, 0.05);

    --text: #17181C;
    --text-secondary: #5F646D;
    --text-muted: #8A909A;
    --text-inverse: #FFFFFF;

    --whatsapp: #25D366;
    --whatsapp-hover: #20BA5A;
    --whatsapp-soft: rgba(37, 211, 102, 0.12);

    --green: #10B981;
    --green-soft: rgba(16, 185, 129, 0.12);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(18, 19, 22, 0.04);
    --shadow-md: 0 6px 20px rgba(18, 19, 22, 0.07);
    --shadow-lg: 0 14px 34px rgba(18, 19, 22, 0.10);
    --shadow-sticky: 0 10px 30px rgba(0, 0, 0, 0.20);

    --header-h: 60px;
    --transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #0C0D0F;
        --bg-card: #141518;
        --bg-elevated: #1A1B1F;
        --border: #23252A;
        --border-subtle: rgba(255, 255, 255, 0.06);

        --text: #F3F4F6;
        --text-secondary: #9CA3AF;
        --text-muted: #6B7280;
        --text-inverse: #0C0D0F;

        --primary-soft: rgba(255, 214, 0, 0.16);
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
        --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 14px 34px rgba(0, 0, 0, 0.6);
        --shadow-sticky: 0 10px 30px rgba(0, 0, 0, 0.7);
    }
}

/* === Reset & Base === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-bottom: 90px;
}

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

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

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 18px;
}

.section {
    padding: 56px 0;
}

.section-title {
    font-size: 1.65rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 8px;
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 580px;
    margin: 0 auto 36px;
}

/* === Status Bar === */
.status-bar {
    background: #0F1012;
    color: #FFF;
    padding: 7px 14px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.status-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
    animation: pulseDot 2s infinite ease-in-out;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: 0.7; }
}

#status-text {
    color: rgba(255, 255, 255, 0.85);
}

#status-text strong {
    color: var(--primary);
    font-weight: 700;
}

.status-note {
    opacity: 0.8;
    font-size: 0.85em;
    font-weight: 400;
}

.link-whatsapp-loc.is-loading {
    opacity: 0.75;
    pointer-events: none;
}

/* === Sticky Header === */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

@media (prefers-color-scheme: dark) {
    .header {
        background: rgba(18, 19, 22, 0.92);
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.header-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.header-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.header-title {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text);
    white-space: nowrap;
}

.header-subtitle {
    font-size: 0.68rem;
    font-weight: 700;
    color: #D97706;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (prefers-color-scheme: dark) {
    .header-subtitle {
        color: var(--primary);
    }
}

/* Nav links - desktop only */
.header-nav {
    display: none;
    align-items: center;
    gap: 24px;
}

.header-nav a {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.15s ease;
}

.header-nav a:hover {
    color: var(--text);
}

/* Header actions (Language switch + Call button) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .header-call-btn {
        display: none;
    }
}

.header-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: var(--dark);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    border: 1px solid rgba(255, 214, 0, 0.2);
}

@media (prefers-color-scheme: dark) {
    .header-call-btn {
        background: var(--primary);
        color: var(--dark);
        border: none;
    }
}

.header-call-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    gap: 4px;
    padding: 0;
    transition: var(--transition);
    color: var(--text);
}

.mobile-menu-toggle:hover {
    background: var(--primary-soft);
    border-color: var(--primary);
}

.hamburger-bar {
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.mobile-menu-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.is-active {
    display: block !important;
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--bg-card);
    z-index: 99999;
    flex-direction: column;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav.is-active {
    display: flex !important;
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    color: var(--text);
    border-color: var(--primary);
    background: var(--primary-soft);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 14px 16px;
    gap: 4px;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-nav-link .m-icon {
    font-size: 1.15rem;
    width: 24px;
    display: inline-flex;
    justify-content: center;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: var(--primary-soft);
    color: var(--primary-text);
    transform: translateX(4px);
}

@media (prefers-color-scheme: dark) {
    .mobile-nav-link:hover,
    .mobile-nav-link:active {
        color: var(--primary);
    }
}

.mobile-nav-footer {
    padding: 18px 16px 28px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--bg);
}

.mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-nav-cta.btn-call {
    background: var(--dark);
    color: var(--primary);
    border: 1px solid rgba(255, 214, 0, 0.3);
}

@media (prefers-color-scheme: dark) {
    .mobile-nav-cta.btn-call {
        background: var(--primary);
        color: var(--dark);
        border: none;
    }
}

.mobile-nav-cta.btn-wa {
    background: var(--whatsapp);
    color: #FFF;
}

.mobile-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* === Hero Section === */
.hero-section {
    padding: 28px 0 20px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-pill-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.pill-uni {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--primary-soft);
    color: #92400E;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 214, 0, 0.35);
}

@media (prefers-color-scheme: dark) {
    .pill-uni {
        color: var(--primary);
    }
}

.pill-official {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.04);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

@media (prefers-color-scheme: dark) {
    .pill-official {
        background: rgba(255, 255, 255, 0.08);
        color: var(--text-muted);
    }
}

.hero-main-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 12px;
}

.text-highlight {
    color: #D97706;
    position: relative;
    display: inline-block;
}

@media (prefers-color-scheme: dark) {
    .text-highlight {
        color: var(--primary);
    }
}

.hero-desc {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 22px;
}

.hero-desc strong {
    color: var(--text);
}

/* === Quick Ride Card (App-style) === */
.quick-call-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: var(--shadow-md);
    margin-bottom: 10px;
}

.quick-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.quick-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text);
}

.quick-card-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green);
    background: var(--green-soft);
    padding: 3px 9px;
    border-radius: var(--radius-full);
}

.quick-card-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 16px;
}

.chip-item {
    display: inline-flex;
    align-items: center;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.chip-item:hover, .chip-item:active {
    background: var(--primary-soft);
    border-color: var(--primary);
    color: var(--text);
}

.quick-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-main-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--primary);
    color: #111;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px 20px;
    border-radius: var(--radius);
    box-shadow: 0 4px 14px rgba(255, 214, 0, 0.35);
    transition: var(--transition);
}

.btn-main-call:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.link-whatsapp-loc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #059669;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 12px;
    background: var(--whatsapp-soft);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

@media (prefers-color-scheme: dark) {
    .link-whatsapp-loc {
        color: var(--whatsapp);
    }
}

.link-whatsapp-loc:hover {
    background: rgba(37, 211, 102, 0.2);
}

/* Durak Photo Card */
.durak-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    background: #000;
}

.durak-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.durak-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.overlay-badge {
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

/* === Highlights Strip === */
.highlights-strip {
    padding: 18px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.highlight-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 11px;
    box-shadow: var(--shadow-sm);
}

.hl-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.25;
}

.highlight-item p {
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* === Cards (Why Us) === */
.why-us-section {
    background: var(--bg);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 214, 0, 0.5);
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.card h3 {
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text);
}

.card p {
    font-size: 0.74rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* === Services Section === */
.services-section {
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(255, 214, 0, 0.12) 0%, var(--bg-card) 100%);
    border: 2px solid var(--primary);
    flex-direction: column;
}

.service-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 0.94rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text);
}

.service-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.service-tag {
    display: inline-block;
    background: var(--primary);
    color: #111;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-top: 8px;
}

/* === Fare Calculator === */
.fare-section {
    background: var(--bg);
}

.calculator-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    max-width: 620px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.calc-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.calc-field select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    background: var(--bg);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    transition: var(--transition);
}

.calc-field select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

.calc-swap {
    width: 38px;
    height: 38px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--bg);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
}

.calc-swap:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #111;
    transform: rotate(180deg);
}

.cta-calc {
    background: var(--dark);
    color: var(--primary);
    padding: 13px 20px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 214, 0, 0.2);
}

@media (prefers-color-scheme: dark) {
    .cta-calc {
        background: var(--primary);
        color: var(--dark);
        border: none;
    }
}

.cta-calc:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.calc-result {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    animation: fadeIn 0.3s ease;
}

.result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.result-item {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
}

.result-item.result-price {
    grid-column: 1 / -1;
    background: var(--primary-soft);
    border: 1.5px solid var(--primary);
}

.result-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.result-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
}

.result-price .result-value {
    font-size: 1.7rem;
    color: #D97706;
}

@media (prefers-color-scheme: dark) {
    .result-price .result-value {
        color: var(--primary);
    }
}

.result-disclaimer {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

.tariff-info {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.tariff-info h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

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

.tariff-item {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 8px 6px;
    text-align: center;
}

.tariff-item span {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.tariff-item strong {
    font-size: 0.86rem;
    color: var(--text);
}

/* === Trust Section === */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.trust-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.trust-photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 14px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #FFF;
    font-size: 0.78rem;
    font-weight: 600;
}

.trust-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.trust-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-soft);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trust-item h3 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.trust-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* === FAQ === */
.faq-list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(255, 214, 0, 0.6);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: left;
    color: var(--text);
}

.faq-chevron {
    color: var(--text-muted);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--text);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-answer p {
    padding: 0 16px 14px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === Map Section === */
.map-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.map-info-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.map-info-item svg {
    color: #D97706;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (prefers-color-scheme: dark) {
    .map-info-item svg {
        color: var(--primary);
    }
}

.map-info-item strong {
    display: block;
    font-size: 0.78rem;
    margin-bottom: 2px;
}

.map-info-item p {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.map-info-item a {
    font-weight: 700;
    color: var(--text);
}

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    aspect-ratio: 16 / 10;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* === Footer === */
.footer {
    background: #0E0F12;
    color: #FFF;
    padding: 42px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 28px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-brand img {
    border-radius: 8px;
}

.footer-brand strong {
    font-size: 0.92rem;
}

.footer-brand span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-col a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-kvkk {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-kvkk h4 {
    font-size: 0.84rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.footer-kvkk p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-official {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 600;
}

/* === Floating Mobile Bottom Dock === */
.mobile-sticky-cta {
    position: fixed;
    bottom: 12px;
    left: 14px;
    right: 14px;
    z-index: 9999;
    display: flex;
    gap: 8px;
    padding: 6px;
    background: rgba(18, 19, 22, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sticky);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 48px;
    border-radius: var(--radius);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.sticky-call {
    background: var(--primary);
    color: #111;
}

.sticky-call:active {
    background: var(--primary-hover);
}

.sticky-whatsapp {
    background: #22C55E;
    color: #FFF;
}

.sticky-whatsapp:active {
    background: #16A34A;
}

/* === PWA Install Banner === */
.pwa-banner {
    position: fixed;
    bottom: 78px;
    left: 14px;
    right: 14px;
    z-index: 10000;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 14px;
    box-shadow: var(--shadow-lg);
}

.pwa-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pwa-banner-text strong {
    display: block;
    font-size: 0.82rem;
}

.pwa-banner-text span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.pwa-banner-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pwa-btn-install {
    background: var(--primary);
    color: #111;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.pwa-btn-dismiss {
    font-size: 1.2rem;
    color: var(--text-muted);
    padding: 4px;
}

/* === Desktop Responsive (768px+) === */
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .mobile-sticky-cta {
        display: none;
    }

    .header-nav {
        display: flex;
    }

    .header-actions {
        display: flex;
    }

    .mobile-menu-toggle,
    .mobile-nav-backdrop,
    .mobile-nav {
        display: none !important;
    }

    .hero-container {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .hero-content {
        flex: 1;
    }

    .hero-image-col {
        flex: 0 0 42%;
    }

    .durak-card img {
        height: 380px;
    }

    .hero-main-title {
        font-size: 3rem;
    }

    .highlights-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-card.featured {
        grid-column: 1 / -1;
        flex-direction: row;
    }

    .calc-form {
        flex-direction: row;
        align-items: flex-end;
    }

    .calc-field {
        flex: 1;
    }

    .cta-calc {
        width: auto;
        white-space: nowrap;
        height: 46px;
    }

    .map-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* Ripple effect */
.ripple-btn {
    position: relative;
    overflow: hidden;
}

.ripple-btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-anim {
    to { transform: scale(4); opacity: 0; }
}

/* Print */
@media print {
    .status-bar, .header, .mobile-sticky-cta, .pwa-banner, .map-embed {
        display: none !important;
    }
}

/* === Social Proof Badges in Hero === */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 16px 0 24px;
    flex-wrap: wrap;
}

.proof-badge {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.proof-stars {
    color: #F59E0B;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.proof-score {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
}

.proof-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.proof-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* === Header Language Switcher (EN / TR Toggle) === */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    padding: 3px 5px;
    gap: 3px;
    box-shadow: var(--shadow-sm);
    user-select: none;
    flex-shrink: 0;
}

.lang-switcher .lang-opt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 9px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.lang-switcher .lang-opt:hover {
    color: var(--text);
}

.lang-switcher .lang-opt.active {
    background: var(--primary);
    color: #121316;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
    cursor: default;
}

.lang-switcher .lang-sep {
    color: var(--border);
    font-size: 0.72rem;
    padding: 0 1px;
}

.header-lang-btn {
    display: none;
}

/* === Fare Result Actions === */
.result-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.btn-fare-whatsapp {
    flex: 1;
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--whatsapp);
    color: #FFF;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-fare-whatsapp:hover {
    background: var(--whatsapp-hover);
}

.btn-fare-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.btn-fare-call:hover {
    background: var(--bg-elevated);
    border-color: var(--primary);
    color: var(--primary);
}

/* === Reservation Form Section === */
.reservation-section {
    background: var(--bg);
    padding: 60px 0;
}

.reservation-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    max-width: 860px;
    margin: 0 auto;
}

.reservation-header {
    text-align: center;
    margin-bottom: 28px;
}

.reservation-header .section-title {
    color: var(--text);
    margin: 8px 0;
}

.reservation-header .section-desc {
    color: var(--text-secondary);
}

.section-pill {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    border: 1px solid rgba(255, 214, 0, 0.25);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

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

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--bg-elevated);
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

.reservation-actions {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.btn-reservation-submit {
    flex: 1;
    min-width: 250px;
    background: var(--whatsapp);
    color: #FFF;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s;
}

.btn-reservation-submit:hover {
    background: var(--whatsapp-hover);
}

.btn-reservation-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.btn-reservation-call:hover {
    background: var(--bg-elevated);
    border-color: var(--primary);
    color: var(--primary);
}

.reservation-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 14px;
    text-align: center;
}

/* === Google Reviews Section === */
.reviews-section {
    background: var(--bg);
    padding: 60px 0;
}

.section-header-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px;
}

.section-header-center .section-title {
    color: var(--text);
    margin: 8px 0;
}

.section-header-center .section-desc {
    color: var(--text-secondary);
}

.google-badge-summary {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 50px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.gb-score {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text);
}

.gb-details {
    text-align: left;
}

.gb-stars {
    color: #F59E0B;
    letter-spacing: 2px;
}

.gb-count {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.btn-google-review {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: underline;
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.reviewer-meta strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
}

.reviewer-meta span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-stars {
    margin-left: auto;
    color: #F59E0B;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 14px;
    font-style: italic;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* === Guides / Blog Section === */
.guides-section {
    background: var(--bg);
    padding: 60px 0;
}

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

.guide-card {
    background: var(--bg-card);
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.guide-badge {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    border: 1px solid rgba(255, 214, 0, 0.25);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    align-self: flex-start;
    margin-bottom: 12px;
}

.guide-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.guide-card h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.guide-card h3 a:hover {
    color: var(--primary);
}

.guide-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 18px;
    flex-grow: 1;
}

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

.guide-link {
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

/* === Guide Article Standalone Page === */
.guide-article-page {
    padding: 40px 0 80px;
    background-color: var(--bg);
    color: var(--text);
    min-height: 80vh;
}

.guide-container {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--text);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.article-header {
    margin-bottom: 30px;
}

.article-header h1 {
    font-size: 1.85rem;
    color: var(--text);
    line-height: 1.3;
    margin: 14px 0;
    font-weight: 800;
}

.article-lead {
    font-size: 1.08rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.route-summary-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 22px;
    border-radius: 14px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.summary-item .label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.summary-item .val {
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 700;
}

.summary-item.highlight .val {
    color: var(--green);
}

.article-body h2 {
    font-size: 1.35rem;
    margin: 36px 0 16px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    font-weight: 700;
}

.article-body p, .article-body li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.article-body strong {
    color: var(--text);
    font-weight: 700;
}

.article-body a {
    color: var(--primary);
    text-decoration: underline;
}

.article-body ul, .article-body ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.article-cta-box {
    background: var(--bg-card);
    border: 1.5px solid var(--primary);
    border-radius: 14px;
    padding: 28px;
    margin: 36px 0;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.article-cta-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text);
}

.article-cta-box p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
    flex-wrap: wrap;
}

.btn-secondary-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: var(--bg-elevated);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.btn-secondary-call:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* === 404 Error Page === */
.error-page-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--bg);
    color: var(--text);
}

.error-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.error-card {
    text-align: center;
    max-width: 540px;
}

.error-code {
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.error-icon {
    font-size: 3rem;
    margin: 10px 0;
}

.error-card h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text);
}

.error-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.error-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .reservation-card {
        padding: 24px 18px;
    }
    .hero-social-proof {
        gap: 12px;
    }
    .proof-divider {
        display: none;
    }
}