:root {
    --taxi-yellow: #ffcc00;
    --taxi-dark: #1a1a1a;
}

/* ===================================
   RESET & BASE
   =================================== */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

.fw-black { font-weight: 800; font-family: 'Montserrat', sans-serif; }
.ls-2 { letter-spacing: 2px; }

/* ===================================
   HERO
   =================================== */
.taxi-slide {
    -webkit-animation: taxiDrive 1.2s ease-out forwards;
    -moz-animation: taxiDrive 1.2s ease-out forwards;
    animation: taxiDrive 1.2s ease-out forwards;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.2));
    filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.2));
}

@-webkit-keyframes taxiDrive { to { -webkit-transform: translateX(0); transform: translateX(0); } }
@-moz-keyframes taxiDrive { to { -moz-transform: translateX(0); transform: translateX(0); } }
@keyframes taxiDrive { to { transform: translateX(0); } }

/* Hero butonlar - yan yana */
.hero-buttons {
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-buttons .btn {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    white-space: nowrap;
}

/* ===================================
   SERVICE CARDS
   =================================== */
.service-card {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.service-card:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.icon-box {
    width: 60px;
    height: 60px;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-radius: 12px;
}

/* ===================================
   NAVBAR
   =================================== */
.nav-link:hover { color: var(--taxi-yellow) !important; }

.navbar-logo {
    height: 40px;
    width: auto;
}

/* Mobil menu - kompakt */
@media (max-width: 991px) {
    .navbar-collapse {
        padding: 8px 0;
    }
    .navbar-nav .nav-item {
        padding: 2px 0;
    }
    .navbar-nav .nav-link {
        padding: 10px 12px !important;
        font-size: 0.9rem;
        color: #fff !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:active {
        color: var(--taxi-yellow) !important;
    }
    .navbar-collapse {
        padding: 4px 0 !important;
    }
    .navbar-nav .btn.btn-warning {
        display: inline-block;
        width: auto;
        margin-top: 8px;
        margin-bottom: 8px;
        padding: 8px 16px !important;
    }
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 30px;
    }
}

/* ===================================
   MOBIL BOTTOM BAR
   =================================== */
.mobile-bottom-bar {
    z-index: 1050;
}

.mobile-bottom-bar .d-flex {
    min-height: 60px;
}

.mobile-bottom-item {
    -webkit-flex: 1;
    flex: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0 8px 2px;
    font-size: 1.1em;
}

.mobile-bottom-item i.fs-3 {
    font-size: 1.6rem !important;
}

.mobile-bottom-item:first-child {
    margin-left: -8px;
    margin-right: 50px;
}

.mobile-bottom-item:last-child {
    margin-right: -8px;
    margin-left: 50px;
}

.call-circle {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: var(--taxi-yellow);
    border-radius: 50%;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: -30px;
    border: 4px solid #fff;
    font-size: 1.4rem;
    color: var(--taxi-dark);
    text-decoration: none;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
    z-index: 2;
}

/* iOS safe area */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-bottom-bar {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ===================================
   NEDEN BIZ (6 NEDEN)
   =================================== */
.reasons .reason-card {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    -webkit-transition: transform .25s ease, box-shadow .25s ease;
    -moz-transition: transform .25s ease, box-shadow .25s ease;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
    min-height: 110px;
}

.reasons .reason-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,204,0,0.22), transparent 55%);
    pointer-events: none;
}

.reasons .reason-card:hover {
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.10);
}

.reasons .reason-no {
    color: var(--taxi-yellow);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 44px;
    line-height: 1;
    min-width: 72px;
    text-align: left;
    z-index: 1;
}

.reasons .reason-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    background: rgba(255,204,0,0.16);
    border: 1px solid rgba(255,204,0,0.35);
    color: var(--taxi-dark);
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    z-index: 1;
}

.reasons .reason-icon i { font-size: 18px; }

.reasons .reason-body {
    text-align: left;
    z-index: 1;
}

@media (min-width: 768px) {
    .reasons .reason-card {
        min-height: 120px;
    }
}

@media (min-width: 992px) {
    .reasons .reason-card {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        aspect-ratio: 1 / 1;
        padding: 16px;
        min-height: auto;
    }
    .reasons .reason-no {
        min-width: auto;
        text-align: center;
        font-size: 46px;
    }
    .reasons .reason-body {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .reasons .reason-card { padding: 14px; }
    .reasons .reason-no { font-size: 42px; }
    .reasons .reason-icon { width: 44px; height: 44px; border-radius: 14px; }
    .reasons .reason-icon i { font-size: 18px; }
}

/* ===================================
   BOLGELER LISTESI
   =================================== */
.region-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.region-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.region-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
    color: var(--taxi-yellow);
}

/* ===================================
   FAQ (SSS) - PC'de max-width sinirli
   =================================== */
.faq .accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq .accordion-item {
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    background: #141414;
}

.faq .accordion-button {
    font-weight: 700;
    padding: 16px 18px;
    background: #141414;
    color: #fff;
}

.faq .accordion-button:not(.collapsed) {
    background: rgba(255,204,0,0.12);
    color: #fff;
}

.faq .accordion-button:focus { box-shadow: none; }

.faq .accordion-button::after {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.faq .accordion-body {
    color: rgba(255,255,255,0.85);
}

/* ===================================
   FOOTER
   =================================== */
.footer-desc {
    max-width: 560px;
    line-height: 1.55;
}

.footer-cta .btn {
    border-radius: 999px;
    padding: 8px 14px;
}

footer .d-flex.gap-3.fs-4 a {
    width: 44px;
    height: 44px;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    -webkit-transition: transform .2s ease, background .2s ease;
    -moz-transition: transform .2s ease, background .2s ease;
    transition: transform .2s ease, background .2s ease;
    text-decoration: none;
}

footer .d-flex.gap-3.fs-4 a:hover {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    transform: translateY(-2px);
    background: rgba(255,255,255,0.10);
}

/* Footer alt bar */
.footer-bottombar {
    font-size: 12px;
    opacity: 0.92;
}

.footer-bottombar .footer-left,
.footer-bottombar .footer-right {
    color: rgba(255,255,255,0.75);
}

.footer-bottombar a {
    font-size: 12px;
    text-decoration: none;
    color: var(--taxi-yellow);
    font-weight: 700;
}

.footer-heart {
    color: var(--taxi-yellow);
    margin: 0 6px;
}

footer hr {
    margin: 18px 0;
    border-color: rgba(255,255,255,0.12);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 991px) {
    .hero { text-align: center; }
    .hero img { margin-top: 30px; }
    .hero-buttons {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .faq {
        padding-bottom: 1rem !important;
    }
    footer {
        padding-top: 1.5rem !important;
    }
    footer .col-lg-8 {
        margin-top: 80px !important;
    }
}

@media (max-width: 575px) {
    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 12px 20px !important;
    }
    .hero .display-4 {
        font-size: 1.75rem;
    }
}

/* iOS momentum scroll fix */
.navbar-collapse {
    -webkit-overflow-scrolling: touch;
}

/* Samsung Internet & Firefox touch fix */
a, button {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* iOS input zoom fix */
@media (max-width: 768px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}
