/* ========================================
   Arabango - Landing Page Styles
   ======================================== */

:root {
    --yellow: #0245d3;
    --yellow-dark: #0136a8;
    --yellow-light: #e8effc;
    --dark: #161616;
    --dark-soft: #212121;
    --gray: #6B7280;
    --gray-light: #F8F9FA;
    --gray-border: #E5E7EB;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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

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

.hidden {
    display: none !important;
}

/* ========================================
   Header
   ======================================== */

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .navbar {
    padding: 12px 0;
}

.site-logo {
    height: 36px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.navbar-nav {
    gap: 8px;
}

.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    padding: 8px 16px !important;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}

.header-actions .btn {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    white-space: nowrap;
}

.btn-driver {
    border: 1.5px solid var(--dark) !important;
    color: var(--dark) !important;
    background: var(--white) !important;
}

.btn-driver:hover {
    background: var(--gray-light) !important;
}

.btn-primary,
.btn-download {
    background: var(--yellow) !important;
    border: none !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-download:hover {
    background: var(--yellow-dark) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(2, 69, 211, 0.35);
}

.navbar-toggler {
    border: 1.5px solid var(--gray-border);
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    position: relative;
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f0f0f0 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200'%3E%3Cpath fill='%23e0e0e0' d='M0 200V120c50-20 100-30 150-25s100 35 150 30 100-40 150-35 100 25 150 20 100-30 150-25 100 35 150 30V200z'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}

.hero-go-watermark {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(8rem, 18vw, 14rem);
    font-weight: 900;
    color: var(--yellow);
    opacity: 0.25;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -5px;
}

.hero-truck-img {
    position: relative;
    z-index: 2;
    max-height: 400px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(2, 69, 211, 0.15);
    color: var(--yellow-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-badge i {
    color: var(--yellow);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 17px;
    color: var(--gray);
    max-width: 480px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.btn-hero-call {
    padding: 14px 28px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
}

.btn-outline-hero {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border: 1.5px solid var(--gray-border);
    border-radius: 10px;
    color: var(--dark);
    background: var(--white);
}

.btn-outline-hero:hover {
    border-color: var(--dark);
    background: var(--gray-light);
}

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

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-soft);
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(2, 69, 211, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow-dark);
    font-size: 14px;
}

/* ========================================
   Section Common
   ======================================== */

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--yellow-dark);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-desc {
    font-size: 16px;
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto 48px;
}

/* ========================================
   Services Section
   ======================================== */

.services-section {
    padding: 90px 0;
    background: var(--white);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 28px 22px 32px;
    height: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(2, 69, 211, 0.3);
}

.service-icon {
    width: 100%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
}

.service-icon--img {
    height: 220px;
    padding: 0;
    margin-bottom: 16px;
    overflow: visible;
    flex-shrink: 0;
}

.service-icon-img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.service-card--soon {
    border-style: dashed;
    border-color: var(--gray-border);
    background: var(--gray-light);
    position: relative;
}

.service-card--soon:hover {
    transform: none;
    border-color: rgba(2, 69, 211, 0.45);
    box-shadow: var(--shadow-sm);
}

.service-icon--soon {
    flex-direction: column;
    gap: 14px;
}

.service-soon-circle {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--gray);
    border: 2px dashed var(--gray-border);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-soon-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--yellow-dark);
    background: rgba(2, 69, 211, 0.15);
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 0;
}

.service-card--soon h3 {
    color: var(--dark-soft);
}

.service-card--soon p {
    color: var(--gray);
    font-style: italic;
}

.service-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.3;
}

.service-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.75;
    margin: 0;
    max-width: 260px;
}

.btn-outline-yellow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    border: 2px solid var(--yellow);
    border-radius: 10px;
    transition: var(--transition);
}

.btn-outline-yellow:hover {
    background: var(--yellow);
    color: #fff;
}

/* ========================================
   How It Works
   ======================================== */

.how-section {
    padding: 90px 0;
    background: var(--gray-light);
}

.steps-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--yellow);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-body {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex: 1;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.step-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(2, 69, 211, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow-dark);
    font-size: 18px;
}

.step-body h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.step-body p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* Phone Mockup */
@keyframes phone-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 12px 0;
}

.phone-screenshot {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.12));
    animation: phone-float 3.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .phone-screenshot {
        animation: none;
    }
}

@media (min-width: 992px) {
    .how-visual {
        display: flex;
        flex-direction: column;
        padding-top: 1.5rem;
    }

    .how-content:not(:has(.section-title)) + .how-visual {
        padding-top: 0;
    }

    .how-visual .phone-mockup {
        flex: 1;
        min-height: 0;
        padding: 0;
    }

    .how-visual .phone-screenshot {
        max-height: 100%;
        width: auto;
        max-width: min(200px, 100%);
        object-fit: contain;
        object-position: bottom center;
    }
}

/* ========================================
   About Section
   ======================================== */

.about-section {
    padding: 90px 0;
    background: var(--white);
}

.about-text {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.stat-box {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--gray-border);
    transition: var(--transition);
}

.stat-box:hover {
    border-color: var(--yellow);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--yellow-dark);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
}

/* ========================================
   App Banner
   ======================================== */

.app-banner {
    padding: 60px 0 90px;
    background: var(--white);
}

.app-banner-inner {
    background: var(--yellow-light);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    border: 1px solid rgba(2, 69, 211, 0.2);
}

.app-banner-title {
    display: flex;
    flex-direction: column;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
}

.app-banner-brand {
    color: var(--dark);
}

.app-banner-tagline {
    color: var(--yellow);
}

.app-banner-text p {
    font-size: 15px;
    color: var(--gray);
    margin: 0;
    max-width: 360px;
}

.app-banner-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.store-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 10px;
    transition: var(--transition);
}

.store-badge:hover {
    background: var(--dark-soft);
    color: var(--white);
    transform: translateY(-2px);
}

.store-badge i {
    font-size: 28px;
}

.store-badge small {
    display: block;
    font-size: 10px;
    opacity: 0.8;
    line-height: 1;
}

.store-badge strong {
    display: block;
    font-size: 16px;
    line-height: 1.2;
}

.qr-code {
    background: var(--white);
    padding: 8px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.qr-code img {
    width: 100px;
    height: 100px;
    display: block;
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
    background: var(--white);
    border-top: 1px solid var(--gray-border);
    padding: 60px 0 0;
}

.footer-logo {
    height: 62px;
    margin-bottom: 18px;
}

.footer-about {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 280px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--gray);
}

.footer-links a:hover {
    color: var(--yellow-dark);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--gray);
}

.contact-icon {
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow-dark);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact .contact-icon {
    background: transparent;
}

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

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--gray-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 15px;
    border: 1px solid var(--gray-border);
}

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

.footer-bottom {
    margin-top: 48px;
    padding: 20px 0;
    border-top: 1px solid var(--gray-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

.footer-col {
    margin-bottom: 32px;
}

/* ========================================
   Inner Pages
   ======================================== */

.page-hero {
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid var(--gray-border);
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

.page-hero-desc {
    font-size: 17px;
    color: var(--gray);
    max-width: 560px;
    margin: 0;
}

.page-section {
    padding: 70px 0;
}

.page-cta {
    padding: 0 0 80px;
}

.page-content-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.page-content-box p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 14px;
}

.page-feature-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.page-feature-card i {
    font-size: 32px;
    color: var(--yellow-dark);
    margin-bottom: 14px;
}

.page-feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-feature-card p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.contact-info-box,
.contact-form-box {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

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

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.contact-info-item p,
.contact-info-item a {
    font-size: 15px;
    color: var(--gray);
    margin: 0;
}

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

.contact-form-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form .form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.contact-form .form-control {
    border-radius: 8px;
    border-color: var(--gray-border);
    padding: 10px 14px;
}

.contact-form .form-control:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 0.2rem rgba(2, 69, 211, 0.2);
}

.bg-light-section {
    background: var(--gray-light);
}

.about-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text--narrow {
    max-width: 520px;
}

.about-hero-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-soft);
}

.about-highlight i {
    color: var(--yellow-dark);
    font-size: 18px;
}

.about-stats--page {
    margin-top: 0;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    height: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(2, 69, 211, 0.35);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: rgba(2, 69, 211, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--yellow-dark);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.value-card p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.7;
}

.events-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--yellow-dark);
    background: rgba(2, 69, 211, 0.12);
    padding: 10px 18px;
    border-radius: 50px;
}

.event-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.event-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--gray-light);
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-card-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(26, 26, 26, 0.85);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.event-card-body {
    padding: 22px 20px 26px;
}

.event-card-body h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.event-card-body p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.65;
}

.upcoming-events {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 28px 28px 20px;
}

.upcoming-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.upcoming-title i {
    color: var(--yellow-dark);
}

.upcoming-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--gray-light);
    border-radius: var(--radius);
    border: 1px solid var(--gray-border);
    height: 100%;
}

.upcoming-date {
    flex-shrink: 0;
    min-width: 72px;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--yellow-dark);
    background: rgba(2, 69, 211, 0.15);
    padding: 10px 8px;
    border-radius: 10px;
    line-height: 1.2;
}

.upcoming-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.upcoming-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

.upcoming-card p i {
    color: var(--yellow-dark);
    margin-right: 4px;
}

.about-cta {
    padding: 0 0 80px;
}

.about-cta-inner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.about-cta-inner h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.about-cta-inner p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 15px;
}

.about-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-cta .btn-outline-hero {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    background: transparent;
}

.about-cta .btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.contact-quick {
    padding-top: 50px;
    padding-bottom: 20px;
}

.contact-quick-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    height: 100%;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-quick-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(2, 69, 211, 0.4);
    color: inherit;
}

.contact-quick-card--static {
    cursor: default;
}

.contact-quick-card--static:hover {
    transform: translateY(-5px);
}

.contact-quick-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(2, 69, 211, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--yellow-dark);
}

.contact-quick-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.contact-quick-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
    word-break: break-word;
}

.contact-quick-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--yellow-dark);
}

.contact-main {
    padding-top: 40px;
}

.contact-side-panel {
    height: 100%;
    padding: 8px 0;
}

.contact-side-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 24px;
}

.contact-side-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.contact-side-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--dark-soft);
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-border);
}

.contact-side-list li:last-child {
    border-bottom: none;
}

.contact-side-list i {
    width: 20px;
    color: var(--yellow-dark);
    text-align: center;
}

.contact-side-cta {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
}

.contact-side-cta p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
}

.contact-phone-big {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
}

.contact-phone-big:hover {
    color: var(--yellow-dark);
}

.contact-social-block span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 12px;
}

.contact-social-links {
    display: flex;
    gap: 10px;
}

.contact-social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition);
}

.contact-social-links a:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #fff;
}

.contact-form-box--enhanced {
    border: none;
    box-shadow: var(--shadow-md);
}

.contact-form-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-border);
}

.contact-form-header h3 {
    margin-bottom: 6px;
}

.contact-form-header p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.contact-form .form-select {
    border-radius: 8px;
    border-color: var(--gray-border);
    padding: 10px 14px;
}

.contact-faq {
    padding: 60px 0 80px;
}

.faq-mini-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.faq-mini-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.faq-mini-card p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.65;
}

.about-events code {
    font-size: 13px;
    background: var(--gray-light);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--dark-soft);
}

.about-simple-content {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}

.about-simple-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-simple-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.about-simple-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--dark-soft);
}

.about-simple-list i {
    color: var(--yellow-dark);
    font-size: 14px;
}

.about-simple-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--gray-border);
}

.about-stat-item {
    text-align: center;
}

.about-stat-item strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--yellow-dark);
    line-height: 1.2;
}

.about-stat-item span {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

.about-simple-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    height: 100%;
}

.about-simple-card i {
    font-size: 28px;
    color: var(--yellow-dark);
    margin-bottom: 12px;
}

.about-simple-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.about-simple-card p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.about-gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-light);
    aspect-ratio: 4 / 3;
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-events-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--gray);
}

.about-events-note i {
    color: var(--yellow-dark);
    margin-right: 6px;
}

.about-events-simple {
    padding-bottom: 50px;
}

/* ========================================
   About Page (Hakkımızda)
   ======================================== */

.about-page {
    background: var(--white);
}

.about-top {
    padding: 32px 0 60px;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 36px;
}

.about-breadcrumb a {
    color: var(--gray);
}

.about-breadcrumb a:hover {
    color: var(--yellow-dark);
}

.about-main-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.15;
}

.about-title-line {
    display: block;
    width: 56px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
    margin-bottom: 28px;
}

.about-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--dark-soft);
    margin-bottom: 16px;
    max-width: 480px;
}

.about-lead--muted {
    color: var(--gray);
    margin-bottom: 0;
}

.about-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-values-section {
    padding: 20px 0 50px;
}

.about-value-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-value-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(2, 69, 211, 0.3);
}

.about-value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.about-value-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.about-value-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

.about-stats-section {
    padding: 0 0 70px;
}

.about-stats-bar {
    background: var(--yellow-light);
    border: 1px solid rgba(2, 69, 211, 0.2);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-stat-block {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-stat-block > i {
    font-size: 28px;
    color: var(--yellow-dark);
    flex-shrink: 0;
    width: 36px;
    text-align: center;
}

.about-stat-block strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.about-stat-block span {
    display: block;
    font-size: 12px;
    color: var(--gray);
    line-height: 1.35;
    margin-top: 2px;
}

.about-who-section {
    padding: 0 0 90px;
}

.about-team-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-team-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 320px;
}

.about-who-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-who-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-who-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-who-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dark-soft);
    font-weight: 500;
}

.about-who-list i {
    color: var(--yellow);
    font-size: 18px;
    flex-shrink: 0;
}

.about-timeline-section {
    padding: 70px 0;
}

.about-timeline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    padding-top: 20px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--gray-border) 0, var(--gray-border) 8px, transparent 8px, transparent 16px);
    z-index: 0;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

.timeline-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.timeline-year {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--yellow-dark);
    margin-bottom: 6px;
}

.timeline-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.timeline-item p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

.about-events-section {
    padding: 70px 0;
}

.about-events-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.about-events-desc {
    font-size: 15px;
    color: var(--gray);
    margin: 8px 0 0;
    max-width: 480px;
}

.events-nav {
    display: flex;
    gap: 8px;
}

.events-nav-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--gray-border);
    border-radius: 50%;
    background: var(--white);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.events-nav-btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #fff;
}

.events-track-wrap {
    overflow: hidden;
    margin: 0 -12px;
    padding: 0 12px;
}

.events-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.events-track::-webkit-scrollbar {
    display: none;
}

.event-slide-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 280px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.event-slide-card:hover {
    box-shadow: var(--shadow-md);
}

.event-slide-image {
    height: 180px;
    overflow: hidden;
    background: var(--gray-light);
}

.event-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-slide-body {
    padding: 18px 20px 22px;
}

.event-slide-date {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--yellow-dark);
    margin-bottom: 8px;
}

.event-slide-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.35;
}

.event-slide-body p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.about-team-section {
    padding: 70px 0;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 28px 16px 22px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(2, 69, 211, 0.35);
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
}

.team-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-card p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 12px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-social a {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--yellow-dark);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--yellow);
    color: #fff;
}

.about-partners-section {
    padding: 60px 0;
}

.partners-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px 48px;
}

.partner-logo {
    font-size: 15px;
    font-weight: 700;
    color: #9CA3AF;
    letter-spacing: 0.5px;
    opacity: 0.85;
    transition: var(--transition);
}

.partner-logo:hover {
    color: var(--dark-soft);
    opacity: 1;
}

.about-app-banner {
    padding-bottom: 80px;
}

.about-app-icon {
    width: 48px;
    height: 48px;
    background: rgba(2, 69, 211, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--yellow-dark);
    margin-bottom: 14px;
}

.about-breadcrumb span i {
    font-size: 10px;
    margin: 0 4px;
    color: var(--gray-border);
}

/* ========================================
   Contact Page (İletişim)
   ======================================== */

.contact-page {
    background: var(--white);
}

.contact-top {
    padding: 32px 0 50px;
}

.contact-cards-section {
    padding: 0 0 60px;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(2, 69, 211, 0.35);
}

.contact-info-card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-info-card a,
.contact-info-card p {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-soft);
    margin-bottom: 6px;
    line-height: 1.5;
    word-break: break-word;
}

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

.contact-info-card > span {
    display: block;
    font-size: 12px;
    color: var(--gray);
}

.contact-form-map-section {
    padding: 70px 0;
}

.contact-form-panel {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.contact-form-panel h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form-sub {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
}

.btn-contact-submit {
    padding: 14px 24px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
}

.contact-kvkk {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 12px;
    color: var(--gray);
    text-align: center;
}

.contact-kvkk i {
    color: var(--yellow-dark);
    margin-right: 6px;
}

.contact-map-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-map-wrap {
    position: relative;
    flex: 1;
    min-height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
}

.contact-map-google {
    width: 100%;
    height: 100%;
    min-height: 320px;
    z-index: 1;
}

.contact-map-google iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}

.contact-map-pin {
    background: transparent;
    border: 0;
}

.contact-map-google-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--yellow-dark);
}

.contact-map-google-link:hover {
    color: var(--dark);
}

.contact-office-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
}

.contact-office-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-office-info p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 6px;
    line-height: 1.5;
}

.contact-office-info span {
    font-size: 12px;
    color: var(--gray);
}

.contact-office-info span i {
    color: var(--yellow-dark);
    margin-right: 4px;
}

.contact-office-img {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-office-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.contact-support-section {
    padding: 70px 0;
}

.contact-support-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-support-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(2, 69, 211, 0.3);
}

.contact-support-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    background: rgba(2, 69, 211, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--yellow-dark);
}

.contact-support-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-support-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 991px) {
    .header-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--gray-border);
    }

    .header-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .hero-go-watermark {
        font-size: 8rem;
    }

    .app-banner-actions {
        justify-content: flex-start;
        margin-top: 24px;
    }

    .how-visual {
        margin-top: 48px;
    }

    .about-simple-stats {
        gap: 32px;
    }

    .about-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-timeline {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-timeline::before {
        display: none;
    }

    .timeline-item {
        flex: 0 0 calc(33.333% - 16px);
        margin-bottom: 24px;
    }

    .event-slide-card {
        flex: 0 0 calc(50% - 10px);
    }

    .contact-office-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .event-card-image {
        height: 180px;
    }

    .upcoming-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-quick-card {
        padding: 24px 18px;
    }

    .about-stats-bar {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .timeline-item {
        flex: 0 0 100%;
    }

    .event-slide-card {
        flex: 0 0 85%;
        min-width: 260px;
    }

    .about-events-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-icon-img {
        width: 180px;
        height: 180px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 16px;
    }

    .app-banner-inner {
        padding: 32px 24px;
    }

    .store-badges {
        flex-direction: column;
        width: 100%;
    }

    .store-badge {
        justify-content: center;
    }
}

/* ========================================
   Çekici Çağır — Sipariş Akışı
   ======================================== */

.order-page {
    background: var(--gray-light);
    padding: 40px 0 80px;
    min-height: calc(100vh - 72px);
}

.order-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 640px;
    margin: 0 auto 32px;
}

.order-stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    min-width: 90px;
}

.order-stepper-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 15px;
    background: var(--white);
    border: 2px solid var(--gray-border);
    color: var(--gray);
    transition: var(--transition);
}

.order-stepper-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    text-align: center;
    transition: var(--transition);
}

.order-stepper-item.active .order-stepper-circle {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #fff;
}

.order-stepper-item.active .order-stepper-label {
    color: var(--dark);
    font-weight: 700;
}

.order-stepper-item.completed .order-stepper-circle {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.order-stepper-item.completed .order-stepper-label {
    color: var(--dark);
}

.order-stepper-line {
    flex: 1;
    height: 2px;
    background: var(--gray-border);
    margin: 0 8px;
    margin-bottom: 28px;
    max-width: 120px;
}

.order-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.order-card-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--yellow);
    padding: 18px 24px;
    color: #fff;
}

.order-card-head h1 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
}

.order-card-head i {
    font-size: 1.2rem;
}

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

.order-step-panel.active {
    display: block;
}

.order-step-panel .order-card-head {
    margin: 0;
}

.order-step-panel form,
.order-step-panel .order-placeholder,
.order-step-panel .order-step-actions {
    padding: 28px 32px 32px;
}

.order-section {
    margin-bottom: 20px;
    padding: 20px 18px;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
}

.order-section--location {
    background: linear-gradient(180deg, #f0fdf4 0%, #f8fffb 100%);
    border-color: #bbf7d0;
}

.order-section--personal {
    background: linear-gradient(180deg, #fffbeb 0%, #fffdf5 100%);
    border-color: #fde68a;
}

.order-section--vehicle {
    background: linear-gradient(180deg, #eff6ff 0%, #f8fbff 100%);
    border-color: #bfdbfe;
    padding-bottom: 8px;
}

.order-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}

.order-section--location .order-section-title {
    color: #15803d;
}

.order-section--location .order-section-title i {
    color: #22c55e;
}

.order-section--personal .order-section-title {
    color: #b45309;
}

.order-section--personal .order-section-title i {
    color: var(--yellow-dark);
}

.order-section--vehicle .order-section-title {
    color: #1d4ed8;
}

.order-section--vehicle .order-section-title i {
    color: #3b82f6;
}

.order-field {
    margin-bottom: 16px;
}

.order-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.order-field label .text-yellow {
    color: var(--yellow-dark);
}

.order-input {
    width: 100%;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 14px 16px;
    font: inherit;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.order-input:focus {
    outline: none;
    border-color: var(--yellow-dark);
    background: #fffdf5;
    box-shadow: 0 0 0 3px rgba(2, 69, 211, 0.2);
}

.order-location-select {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid var(--gray-border);
    border-radius: var(--radius);
    padding: 14px 16px;
    background: var(--white);
    font: inherit;
    color: var(--gray);
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.order-location-select--pickup {
    border-color: #86efac;
    background: #fafffb;
}

.order-location-select--pickup i:first-child {
    color: #22c55e;
}

.order-location-select--dropoff {
    border-color: #fca5a5;
    background: #fffafa;
}

.order-location-select--dropoff i:first-child {
    color: #ef4444;
}

.order-location-select span {
    flex: 1;
    text-align: left;
}

.order-location-select i:first-child {
    color: var(--gray);
}

.order-location-select i:last-child {
    font-size: 12px;
    color: var(--gray);
}

.order-location-select--pickup:hover,
.order-location-select--pickup:focus {
    border-color: #22c55e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.order-location-select--dropoff:hover,
.order-location-select--dropoff:focus {
    border-color: #ef4444;
    outline: none;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.order-location-select.is-selected {
    color: var(--dark);
}

.order-location-control {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.order-location-control .order-location-select {
    flex: 1;
    min-width: 0;
}

.order-location-clear {
    flex: 0 0 44px;
    width: 44px;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.order-location-clear:hover,
.order-location-clear:focus {
    border-color: #ef4444;
    color: #ef4444;
    background: #fef2f2;
}

.order-location-clear[hidden] {
    display: none !important;
}

.order-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.order-vehicle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 120px;
    padding: 16px 10px 12px;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
    font: inherit;
    color: var(--dark);
}

.order-vehicle-card > i:first-child {
    font-size: 28px;
    color: var(--dark);
}

.order-vehicle-card span {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.35;
}

.order-vehicle-card.expanded {
    border-color: var(--yellow);
    background: var(--yellow-light);
}

.order-catalog-loading,
.order-catalog-error {
    text-align: center;
    padding: 24px 16px;
    color: var(--gray);
    font-size: 14px;
}

.order-catalog-loading i {
    display: block;
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--yellow-dark);
}

.order-catalog-error {
    color: #dc3545;
    background: #fff5f5;
    border: 1px solid #f5c2c7;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.order-condition-panel {
    margin-top: 16px;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.order-condition-panel-head {
    background: var(--yellow);
    padding: 14px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
}

.order-condition-list {
    padding: 10px;
    background: var(--white);
}

.order-condition-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 8px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    background: var(--gray-light);
    cursor: pointer;
    font: inherit;
    text-align: left;
    color: var(--dark);
    transition: border-color var(--transition), background var(--transition);
}

.order-condition-item:last-child {
    margin-bottom: 0;
}

.order-condition-item > span {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
}

.order-condition-item > i:last-child {
    color: var(--gray);
    font-size: 12px;
}

.order-condition-item.selected {
    border-color: var(--yellow);
    background: var(--yellow-light);
}

.order-extras-panel {
    margin-top: 16px;
    padding: 18px;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    background: var(--gray-light);
}

/* Kompakt araç ek bilgileri sheet */
.order-vehicle-extras-modal {
    position: fixed;
    inset: 0;
    z-index: 10100;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

.order-vehicle-extras-modal.hidden {
    display: none !important;
}

.order-vehicle-extras-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
}

.order-vehicle-extras-sheet {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    max-height: min(88vh, 640px);
    max-height: min(88dvh, 640px);
    background: var(--white);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -12px 40px rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: orderSheetUp 0.28s ease;
}

@keyframes orderSheetUp {
    from {
        transform: translateY(24px);
        opacity: 0.6;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.order-vehicle-extras-handle {
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: #d1d5db;
    margin: 10px auto 0;
    flex-shrink: 0;
}

.order-vehicle-extras-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px 12px;
    border-bottom: 1px solid var(--gray-border);
    flex-shrink: 0;
}

.order-vehicle-extras-header-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 18px;
}

.order-vehicle-extras-header-icon.is-drive {
    background: #fef9c3;
    color: #a16207;
}

.order-vehicle-extras-header-icon.is-photo {
    background: #dbeafe;
    color: #1d4ed8;
}

.order-vehicle-extras-header-icon.is-danger {
    background: #fee2e2;
    color: #dc2626;
}

.order-vehicle-extras-header-text {
    flex: 1;
    min-width: 0;
}

.order-vehicle-extras-category {
    margin: 0 0 2px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    line-height: 1.3;
}

.order-vehicle-extras-header-text h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark);
}

.order-vehicle-extras-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: var(--gray-light);
    color: var(--dark);
    cursor: pointer;
    flex-shrink: 0;
}

.order-vehicle-extras-content {
    padding: 14px 16px 8px;
    overflow-y: auto;
    flex: 1 1 auto;
}

.order-vehicle-extras-footer {
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--gray-border);
    background: var(--white);
    flex-shrink: 0;
}

.order-vehicle-extras-lead {
    margin: 0 0 14px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.45;
}

.order-extras-section-label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #64748b;
}

.order-vehicle-extras-content .order-extras-block {
    margin-top: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.order-vehicle-extras-content .order-extras-block + .order-extras-block {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-border);
}

.order-chip-row--compact {
    gap: 10px;
}

.order-chip--compact {
    padding: 12px 10px;
}

.order-chip--compact strong {
    font-size: 17px;
}

.order-photo-row--compact {
    gap: 10px;
}

.order-photo-slot--compact {
    min-height: 96px;
    border-radius: 12px;
}

.order-photo-slot--compact .order-photo-num {
    width: 36px;
    height: 36px;
    font-size: 14px;
    display: grid;
    place-items: center;
}

.order-photo-slot--compact .order-photo-label {
    font-size: 12px;
    font-weight: 600;
}

.order-vehicle-extras-confirm {
    width: 100%;
    margin-top: 0;
    border-radius: 12px;
    padding: 14px 16px;
    font-weight: 700;
}

@media (min-width: 576px) {
    .order-vehicle-extras-modal {
        align-items: center;
        padding: 20px;
    }

    .order-vehicle-extras-sheet {
        border-radius: 18px;
        max-height: min(82vh, 560px);
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
    }

    .order-vehicle-extras-handle {
        display: none;
    }
}

.order-extras-block + .order-extras-block {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-border);
}

.order-extras-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.order-extras-desc {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 14px;
}

.order-chip-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.order-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 12px;
    border: 2px solid var(--gray-border);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    font: inherit;
    transition: border-color var(--transition), background var(--transition);
}

.order-chip strong {
    font-size: 18px;
    color: var(--dark);
}

.order-chip span {
    font-size: 11px;
    color: var(--gray);
    text-align: center;
}

.order-chip.selected {
    border-color: var(--yellow);
    background: var(--yellow-light);
}

.order-photo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.order-photo-slot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border: 2px dashed var(--gray-border);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    overflow: hidden;
}

.order-photo-slot.has-image {
    border-style: solid;
    border-color: var(--yellow);
}

.order-photo-num {
    font-size: 18px;
    font-weight: 700;
    color: var(--yellow-dark);
}

.order-photo-label {
    font-size: 12px;
    color: var(--gray);
    margin-top: 4px;
}

.order-photo-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-selection-summary {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: var(--radius);
    background: var(--yellow-light);
    border-left: 4px solid var(--yellow);
}

.order-selection-summary-main {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
}

.order-selection-summary-extra {
    margin-top: 8px;
    font-size: 13px;
    color: var(--gray);
}

.order-vehicle-chevron {
    font-size: 10px;
    color: var(--gray);
}

.order-vehicle-card:hover {
    border-color: var(--yellow-dark);
}

.order-vehicle-card.selected {
    border-color: var(--yellow);
    background: var(--yellow-light);
    box-shadow: inset 0 0 0 1px rgba(2, 69, 211, 0.35);
}

.order-form-error {
    color: #dc3545;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    text-align: center;
}

.order-form-error.hidden {
    display: none;
}

.order-next-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.order-step-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.order-step-actions .order-next-btn,
.order-step-actions .order-back-btn {
    flex: 1;
    margin-top: 0;
}

.order-back-btn {
    padding: 14px 20px;
    font-weight: 600;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.order-placeholder {
    text-align: center;
    padding: 32px 16px 24px;
}

.order-placeholder-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--yellow-light);
    display: grid;
    place-items: center;
    font-size: 28px;
    color: var(--yellow-dark);
}

.order-placeholder h2 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.order-placeholder p {
    color: var(--gray);
    font-size: 14px;
    max-width: 420px;
    margin: 0 auto;
}

.order-confirm-body {
    padding: 28px 32px 32px;
}

.order-confirm-lead {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.order-summary-card {
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    background: var(--white);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.order-summary-card--compact {
    margin-top: 20px;
    margin-bottom: 24px;
}

.order-summary-row {
    display: flex;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--gray-border);
    align-items: flex-start;
}

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

.order-summary-label {
    flex: 0 0 110px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.order-summary-value {
    flex: 1;
    font-size: 14px;
    color: var(--dark);
    line-height: 1.45;
}

.order-summary-value small {
    color: var(--gray);
    font-size: 12px;
}

.order-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #fff8e1 0%, #fffdf5 100%);
    border-top: 2px solid var(--yellow);
}

.order-summary-total span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.order-summary-total strong {
    font-size: 1.35rem;
    color: var(--dark);
}

.order-summary-empty {
    padding: 24px 18px;
    text-align: center;
    color: var(--gray);
    margin: 0;
}

.order-otp-head {
    text-align: center;
    margin-bottom: 22px;
}

.order-otp-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--yellow-light);
    display: grid;
    place-items: center;
    font-size: 24px;
    color: var(--yellow-dark);
}

.order-otp-head h2 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.order-otp-head p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

.order-otp-phone {
    margin-top: 10px !important;
    font-weight: 700;
    color: var(--dark) !important;
    font-size: 15px !important;
}

.order-otp-dev,
.order-otp-user-note {
    padding: 12px 14px;
    border-radius: var(--radius);
    font-size: 13px;
    margin-bottom: 16px;
    text-align: center;
}

.order-otp-dev {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
}

.order-otp-user-note {
    background: var(--yellow-light);
    border: 1px solid #fde68a;
    color: #92400e;
}

.order-otp-input {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.35em;
    font-weight: 700;
}

.order-terms-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0;
    font-size: 13px;
    color: var(--gray);
    cursor: pointer;
}

.order-terms-check input {
    margin-top: 3px;
    flex-shrink: 0;
}

.order-terms-check a,
.order-consent-link {
    color: var(--yellow-dark);
    font-weight: 600;
}

.order-consent-link {
    display: inline;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.order-consent-block {
    margin: 16px 0;
}

.order-consent-block .order-terms-check + .order-terms-check {
    margin-top: 10px;
}

.order-legal-modal-panel {
    max-width: 640px;
}

.order-legal-modal-body {
    max-height: min(55vh, 480px);
    overflow-y: auto;
}

.order-legal-content {
    font-size: 14px;
    line-height: 1.55;
    color: var(--dark);
}

.order-legal-content h1,
.order-legal-content h2,
.order-legal-content h3 {
    font-size: 1.05rem;
    margin: 1em 0 0.5em;
}

.order-legal-modal-actions {
    padding: 12px 20px 20px;
    border-top: 1px solid #e5e7eb;
}

.order-legal-modal-actions .btn {
    width: 100%;
}

.order-otp-resend {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    border: 0;
    background: transparent;
    color: var(--gray);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.order-otp-resend:hover {
    color: var(--dark);
}

.order-success-hero {
    text-align: center;
    margin-bottom: 24px;
}

.order-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    display: grid;
    place-items: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}

#orderSuccessPhase.is-cancelled .order-success-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.28);
}

.order-live-status.is-cancelled {
    background: #fef2f2;
    color: #b91c1c;
}

.order-timeline-item.is-cancelled .order-timeline-dot {
    border-color: #ef4444;
    background: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.order-success-hero h2 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.order-success-hero p {
    color: var(--gray);
    margin: 0;
}

.order-success-hero strong {
    color: var(--dark);
    font-size: 1.1rem;
}

.order-timeline {
    position: relative;
    padding-left: 8px;
    margin-bottom: 8px;
}

.order-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: var(--gray-border);
}

.order-timeline-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 10px 0 10px 0;
    position: relative;
    opacity: 0.45;
}

.order-timeline-item.is-done,
.order-timeline-item.is-active {
    opacity: 1;
}

.order-timeline-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--gray-border);
    background: var(--white);
    flex-shrink: 0;
    z-index: 1;
    margin-top: 2px;
}

.order-timeline-item.is-done .order-timeline-dot {
    border-color: #22c55e;
    background: #22c55e;
    box-shadow: inset 0 0 0 3px var(--white);
}

.order-timeline-item.is-active .order-timeline-dot {
    border-color: var(--yellow);
    background: var(--yellow);
    box-shadow: 0 0 0 4px rgba(2, 69, 211, 0.25);
}

.order-timeline-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.order-timeline-item small {
    color: var(--gray);
    font-size: 12px;
}

.text-success {
    color: #22c55e !important;
}

.text-danger {
    color: #ef4444 !important;
}

.order-live-status {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin: -8px 0 18px;
    padding: 10px 14px;
    background: var(--yellow-light);
    border-radius: var(--radius);
}

.order-payment-card {
    margin-bottom: 20px;
    padding: 18px;
    border-radius: var(--radius-lg);
    border: 1.5px solid rgba(2, 69, 211, 0.45);
    background: linear-gradient(135deg, rgba(2, 69, 211, 0.18) 0%, #fff 100%);
    box-shadow: 0 6px 16px rgba(2, 69, 211, 0.12);
}

.order-payment-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.order-payment-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--yellow);
    display: grid;
    place-items: center;
    font-size: 18px;
    color: var(--dark);
    flex-shrink: 0;
}

.order-payment-card-head strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.order-payment-card-head small {
    color: var(--gray);
    font-size: 12px;
}

.order-payment-card-desc {
    font-size: 14px;
    line-height: 1.45;
    color: #64748b;
    margin-bottom: 14px;
}

.order-payment-card-amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 14px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.order-payment-card-amount span {
    font-size: 13px;
    color: #64748b;
}

.order-payment-card-amount strong {
    font-size: 1.25rem;
    color: var(--dark);
}

.order-payment-btn {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.order-payment-card-note {
    margin: 10px 0 0;
    text-align: center;
    font-size: 11px;
    color: var(--gray);
}

.order-paid-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 12px 16px;
    border-radius: var(--radius);
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #15803d;
    font-weight: 700;
    font-size: 14px;
}

.order-driver-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.order-driver-actions.hidden {
    display: none !important;
}

.order-driver-actions-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
}

.order-driver-actions-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.order-driver-actions-info strong {
    display: block;
    font-size: 15px;
    color: #0f172a;
}

.order-driver-actions-info small {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 12px;
}

.order-driver-actions-info small.hidden {
    display: none;
}

.order-driver-actions-btns {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.order-driver-action-btn {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 58px;
    padding: 0;
    border: none;
    background: transparent;
    color: #334155;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.order-driver-action-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: background 0.15s ease, color 0.15s ease;
}

.order-driver-action-btn:hover .order-driver-action-icon,
.order-driver-action-btn.is-active .order-driver-action-icon {
    background: var(--yellow-light);
    color: var(--yellow);
}

.order-driver-action-btn.hidden {
    display: none !important;
}

.order-driver-badge {
    position: absolute;
    top: -2px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
}

.order-driver-badge.hidden {
    display: none !important;
}

.order-chat-card {
    margin-top: 16px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.order-chat-card.hidden {
    display: none !important;
}

.order-chat-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.order-chat-head-text {
    flex: 1;
    min-width: 0;
}

.order-chat-close {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
    flex-shrink: 0;
}

.order-chat-head-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.order-chat-head strong {
    display: block;
    font-size: 15px;
    color: #0f172a;
}

.order-chat-head small {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 12px;
}

.order-chat-messages {
    max-height: 240px;
    min-height: 120px;
    overflow-y: auto;
    padding: 10px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-chat-loading,
.order-chat-empty {
    text-align: center;
    color: #64748b;
    font-size: 13px;
    padding: 24px 8px;
}

.order-chat-bubble {
    max-width: 82%;
    display: flex;
}

.order-chat-bubble.is-mine {
    align-self: flex-end;
}

.order-chat-bubble.is-theirs {
    align-self: flex-start;
}

.order-chat-bubble-text {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.45;
    white-space: pre-wrap;
    word-break: break-word;
}

.order-chat-bubble.is-mine .order-chat-bubble-text {
    background: #dbeafe;
    color: #0f172a;
    border-bottom-right-radius: 4px;
}

.order-chat-bubble.is-theirs .order-chat-bubble-text {
    background: #e2e8f0;
    color: #0f172a;
    border-bottom-left-radius: 4px;
}

.order-chat-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    align-items: center;
}

.order-chat-form input {
    flex: 1;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: 12px 16px;
    font-size: 14px;
    background: #fff;
}

.order-chat-form input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.order-chat-send {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--yellow);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.order-chat-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.order-tracking-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.order-tracking-actions .order-next-btn,
.order-tracking-actions .order-cancel-btn {
    margin-top: 0;
    width: 100%;
}

.order-cancel-btn {
    padding: 14px 20px;
    font-weight: 700;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.order-payment-modal {
    position: fixed;
    inset: 0;
    z-index: 10100;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    background: rgba(0, 0, 0, 0.55);
}

.order-payment-modal.hidden {
    display: none !important;
}

body.order-payment-open {
    overflow: hidden;
}

.order-payment-modal-panel {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: none;
}

.order-payment-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: var(--yellow);
}

.order-payment-modal-head h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.order-payment-modal-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.order-payment-modal-body {
    position: relative;
    flex: 1;
    min-height: 0;
    background: #f8fafc;
}

.order-payment-modal-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gray);
    font-size: 14px;
}

.order-payment-frame {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: 0;
    background: var(--white);
}

.order-billing-modal-panel {
    max-height: min(92vh, 820px);
}

.order-billing-modal-body {
    min-height: auto;
    padding: 16px;
    overflow-y: auto;
}

.order-billing-intro {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--gray-dark, #334155);
}

.order-billing-saved-hint {
    margin-bottom: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(2, 69, 211, 0.12);
    border: 1px solid rgba(2, 69, 211, 0.35);
    font-size: 13px;
    line-height: 1.4;
}

.order-billing-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.order-billing-type-btn {
    border: 1px solid #dbe3ee;
    border-radius: 10px;
    padding: 10px 12px;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
}

.order-billing-type-btn.active {
    border-color: var(--yellow);
    background: rgba(2, 69, 211, 0.15);
}

.order-billing-fields {
    display: grid;
    gap: 10px;
    margin-bottom: 10px;
}

.order-billing-field {
    display: grid;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}

.order-billing-field input,
.order-billing-field textarea {
    width: 100%;
    border: 1px solid #dbe3ee;
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    font-weight: 400;
    resize: vertical;
}

.order-billing-error {
    margin: 10px 0 0;
    color: #dc2626;
    font-size: 13px;
}

.order-billing-submit {
    width: 100%;
    margin-top: 14px;
}

@media (max-width: 767px) {
    .order-page {
        padding: 24px 0 56px;
    }

    .order-stepper {
        margin-bottom: 24px;
    }

    .order-stepper-circle {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .order-stepper-label {
        font-size: 11px;
    }

    .order-stepper-line {
        max-width: 40px;
        margin-bottom: 24px;
    }

    .order-step-panel form,
    .order-step-panel .order-placeholder,
    .order-step-panel .order-step-actions,
    .order-confirm-body {
        padding: 20px 18px 24px;
    }

    .order-summary-label {
        flex: 0 0 90px;
        font-size: 11px;
    }

    .order-vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .order-step-actions {
        flex-direction: column;
    }

    .order-payment-modal {
        padding: 0;
        align-items: stretch;
    }

    .order-payment-modal-panel {
        width: 100%;
        max-height: none;
        height: 100%;
        border-radius: 0;
    }

    .order-payment-modal-body {
        min-height: 0;
    }

    .order-payment-frame {
        min-height: calc(100vh - 56px);
    }
}

/* Konum modal */
body.order-modal-open {
    overflow: hidden;
}

body.order-flow-map-mode .site-footer {
    display: none;
}

body.order-flow-map-mode .site-header {
    display: none;
}

body.order-flow-map-mode {
    overflow: hidden;
}

body.order-flow-map-mode main {
    padding: 0;
    margin: 0;
}

body.order-flow-map-mode .order-page {
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--white);
}

body.order-flow-map-mode .widget-visible,
body.order-flow-map-mode #tawkchat-container {
    display: none !important;
}

body.order-modal-open .site-header {
    display: none;
}

.pac-container {
    z-index: 3000 !important;
}

.order-location-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    background: var(--white);
}

.order-location-modal.hidden {
    display: none !important;
}

.order-location-modal-panel--fullscreen {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    overflow: hidden;
}

.order-location-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: var(--yellow);
    flex-shrink: 0;
    z-index: 5;
}

.order-location-modal-head h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.order-location-modal-close {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--dark);
}

.order-location-search-float {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 6;
}

.order-location-search-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-border);
}

.order-location-search-inner i {
    color: var(--gray);
    flex-shrink: 0;
}

.order-location-search {
    flex: 1;
    border: 0;
    padding: 14px 0;
    font: inherit;
    outline: none;
    background: transparent;
    min-width: 0;
}

.order-location-search-clear {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.order-location-search-clear:hover,
.order-location-search-clear:focus {
    color: #ef4444;
    background: #fef2f2;
}

.order-location-search-clear[hidden] {
    display: none !important;
}

.order-location-search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: 240px;
    overflow-y: auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-border);
}

.order-location-search-results.hidden {
    display: none !important;
}

.order-location-search-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 0;
    border-bottom: 1px solid var(--gray-border);
    background: var(--white);
    text-align: left;
    font: inherit;
    cursor: pointer;
    color: var(--dark);
}

.order-location-search-item:last-child {
    border-bottom: 0;
}

.order-location-search-item:hover {
    background: var(--yellow-light);
}

.order-location-search-item i {
    color: var(--yellow-dark);
    margin-top: 3px;
}

.order-location-search-item span {
    font-size: 14px;
    line-height: 1.4;
}

.order-location-search-empty {
    padding: 14px;
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

.order-location-floating-actions {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-location-gps,
.order-location-confirm {
    padding: 14px 20px;
    font-weight: 700;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    font-size: 14px;
}

.order-location-gps {
    background: var(--dark);
    color: var(--white);
}

.order-location-gps.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.order-location-confirm {
    background: var(--yellow);
    color: var(--dark);
    min-width: 110px;
}

.order-location-map-stage {
    position: relative;
    flex: 1;
    min-height: 0;
}

.order-location-picker-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--gray-light);
    touch-action: none;
}

.order-location-center-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -100%);
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}

.order-location-map-status {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    text-align: center;
    font-size: 14px;
    color: var(--gray);
    background: rgba(248, 249, 250, 0.92);
}

.order-location-map-status.is-error {
    color: #dc3545;
}

/* Adım 2 — harita + fiyat */
.order-page--map-mode {
    padding: 0;
    background: var(--white);
}

.order-page--map-mode .container {
    max-width: none;
    padding: 0;
}

.order-page--map-mode .order-card {
    max-width: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

.order-map-stage {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
}

.order-route-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    touch-action: none;
}

.order-route-bar {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}

.order-route-close {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    color: var(--dark);
}

.order-route-addresses {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
    font-size: 13px;
    font-weight: 600;
}

.order-route-pickup {
    color: #16a34a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 42%;
}

.order-route-dropoff {
    color: #dc2626;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 42%;
}

.order-route-arrow {
    flex: 0 0 auto;
    font-size: 11px;
    color: var(--gray);
}

.order-price-sheet {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: var(--white);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
    padding: 18px 20px calc(18px + env(safe-area-inset-bottom));
}

.order-price-sheet-loading,
.order-price-sheet-error {
    text-align: center;
    padding: 24px 12px;
    font-size: 14px;
}

.order-price-sheet-error {
    color: #dc3545;
}

.order-price-payments {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--gray);
    text-align: center;
}

.order-pay-icons {
    height: 18px;
    width: auto;
    flex-shrink: 0;
}

.order-pay-note {
    margin: 0;
    line-height: 1.3;
    color: #666;
}

.order-pay-note strong {
    color: #333;
    font-weight: 700;
}

.order-price-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

.order-price-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: var(--gray-light);
    border-radius: var(--radius);
}

.order-price-stat i {
    font-size: 18px;
    color: var(--gray);
}

.order-price-stat small {
    display: block;
    font-size: 12px;
    color: var(--gray);
}

.order-price-stat strong {
    font-size: 15px;
    color: var(--dark);
}

.order-price-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.order-price-amount strong {
    display: block;
    font-size: 1.75rem;
    line-height: 1.1;
    color: var(--dark);
}

.order-price-amount span {
    font-size: 12px;
    color: var(--gray);
}

.order-price-next {
    flex: 0 0 auto;
    min-width: 160px;
    padding: 16px 24px;
    border: 0;
    border-radius: 999px;
    background: #22c55e;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition);
}

.order-price-next:hover {
    background: #16a34a;
}

@media (min-width: 768px) {
    .order-map-stage {
        height: 100vh;
    }

    .order-route-bar {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: min(720px, calc(100% - 32px));
    }

    .order-price-sheet {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: min(720px, calc(100% - 32px));
        border-radius: 20px;
        bottom: 20px;
    }
}

@media (max-width: 767px) {
    .order-location-gps {
        min-width: 0;
        font-size: 13px;
        padding: 14px 12px;
    }

    .order-route-addresses {
        font-size: 11px;
    }

    .order-price-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .order-price-next {
        width: 100%;
    }
}

.seo-landing-section {
    background: #f8f9fa;
}

.seo-content {
    line-height: 1.8;
    color: #333;
}

.seo-content h2 {
    color: #1a1a1a;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.seo-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.seo-content .lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.faq-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #fdca12;
    color: #1a1a1a;
}

.city-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.city-link-item {
    display: block;
    padding: 8px 10px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
}

.city-link-item:hover {
    background: #fff4c2;
    border-color: #fdca12;
    color: #1a1a1a;
}

/* Dönüşe Uygun fotoğraf alanı */
.rt-photo-dropzone {
    border: 1.5px dashed var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 22px 16px;
    text-align: center;
    cursor: pointer;
    background: var(--gray-light);
    transition: border-color var(--transition), background var(--transition);
}

.rt-photo-dropzone:hover,
.rt-photo-dropzone:focus {
    border-color: var(--yellow);
    background: var(--yellow-light);
}

.rt-photo-dropzone-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    color: var(--gray);
    font-size: 13px;
}

.rt-photo-dropzone-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e8eefc;
    color: #0245d3;
    font-size: 18px;
}

.rt-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.rt-photo-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #eef1f4;
}

.rt-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rt-photo-item button {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    cursor: pointer;
}

.order-success-head {
    text-align: center;
    padding: 12px 8px 20px;
}

.order-success-head .order-success-icon {
    margin: 0 auto 12px;
}
