/* ===== TAKSİ TEMASI (Meram Taksi referans) ===== */

body.taxi-home {
    background: #fff;
    padding-top: 0;
    overflow-x: hidden;
    --taxi-header-offset: 94px;
    --taxi-home-gap: 20px;
    --taxi-home-text-gap: 8px;
    --taxi-home-section-pad: 64px;
    --taxi-hero-step: 32px;
}

body.taxi-home .site-header {
    padding-bottom: 0;
}

body.taxi-home .navbar-wrap {
    background: rgba(17, 18, 22, 0.92);
}

body.taxi-home .navbar-wrap,
body.taxi-home .mobile-header {
    background: rgba(17, 18, 22, 0.95);
}

.taxi-main {
    padding-top: 0;
}

/* Hero */
.taxi-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--taxi-hero-bg) center/cover no-repeat;
    background-attachment: scroll;
    color: #fff;
    margin-top: calc(-1 * var(--taxi-header-offset, 94px));
    padding-top: var(--taxi-header-offset, 94px);
    box-sizing: border-box;
}

body.taxi-home .taxi-hero {
    margin-top: 0;
    padding-top: var(--taxi-header-offset, 94px);
}

@media (min-width: 1101px) {
    body.taxi-home .taxi-hero {
        min-height: calc(100svh + var(--taxi-hero-step) * 3);
        padding-bottom: calc(var(--taxi-hero-step) * 1.5);
    }

    body.taxi-home .taxi-hero-wrap {
        padding: calc(var(--taxi-hero-step) * 2) 0;
    }
}

@media (max-width: 1100px) {
    body.taxi-home .taxi-hero {
        min-height: 100svh;
        height: auto;
        padding-bottom: 0;
    }
}

.taxi-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.65) 100%);
}

.taxi-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 15px;
    background: url('../images/footer-cizgi.png') center repeat-x;
    background-size: auto 100%;
    pointer-events: none;
    z-index: 2;
}

.taxi-hero-wrap {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    align-self: center;
    padding: 48px 0;
    box-sizing: border-box;
}

.taxi-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--taxi-home-text-gap, 8px);
    width: 100%;
    max-width: 720px;
    text-align: left;
}

.taxi-hero-content h1 {
    margin: 0;
    width: 100%;
    max-width: 100%;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.25;
    font-weight: 800;
    text-transform: none;
    letter-spacing: -0.01em;
}

.taxi-hero-desc {
    margin: 0;
    width: 100%;
    max-width: 100%;
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

/* Info bar */
.taxi-info-bar {
    background: var(--primary);
    color: #111216;
    padding: 28px 0;
}

.taxi-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 0;
    min-height: 68px;
}

.taxi-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.35;
    border-right: 1px solid rgba(17, 18, 22, 0.18);
    transition: background-color 0.2s ease;
}

.taxi-info-item:first-child {
    padding-left: 0;
}

a.taxi-info-item:hover {
    background: rgba(255, 255, 255, 0.14);
}

.taxi-info-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(17, 18, 22, 0.08);
    flex-shrink: 0;
}

.taxi-info-item-icon img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    filter: brightness(0);
}

.taxi-info-item-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.taxi-info-item-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(17, 18, 22, 0.62);
}

.taxi-info-item-value {
    font-size: 15px;
    font-weight: 800;
    color: #111216;
    word-break: break-word;
}

.taxi-info-item-static {
    cursor: default;
}

.taxi-info-item:last-child {
    border-right: 0;
    padding-right: 0;
}

/* Section common */
.taxi-section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 8px;
}

.taxi-section-head {
    text-align: center;
    margin-bottom: 40px;
}

.taxi-section-head h2 {
    margin: 0;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: #111;
    letter-spacing: 0.04em;
}

.taxi-section-head p {
    margin: 12px auto 0;
    max-width: 640px;
    color: #555;
    line-height: 1.7;
}

.taxi-section-head-light h2 {
    color: #fff;
}

.taxi-section-head-light p {
    color: rgba(255, 255, 255, 0.85);
}

/* About */
.taxi-about {
    padding: 70px 0;
    background: #fff;
}

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

.taxi-about-media {
    position: relative;
}

.taxi-about-media img {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.taxi-about-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary);
    color: #111;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 14px;
}

.taxi-about-content h2 {
    font-size: clamp(28px, 3vw, 36px);
    margin: 0 0 16px;
    font-weight: 800;
}

.taxi-about-content > p {
    color: #444;
    line-height: 1.8;
    margin: 0 0 28px;
}

.taxi-about-features {
    display: grid;
    gap: 20px;
}

.taxi-about-features article {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.taxi-about-features img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.taxi-about-features h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
}

.taxi-about-features p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.65;
}

/* Services */
.taxi-services {
    padding: 70px 0;
    background: #111216;
    color: #fff;
}

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

.taxi-service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.taxi-service-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.taxi-service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taxi-service-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1) !important;
}

.taxi-service-card h3 {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.taxi-service-card p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Tariffs */
.taxi-tariffs {
    padding: 70px 0;
    background: #f5f5f5;
}

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

.taxi-tariff-card {
    background: #fff;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 4px solid var(--primary);
}

.taxi-tariff-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    color: #111;
}

.taxi-tariff-card p {
    margin: 0 0 16px;
    color: #666;
    font-size: 14px;
}

.taxi-tariff-price {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

/* Steps */
.taxi-steps {
    padding: 70px 0;
    background: #fff;
}

.taxi-steps-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.taxi-steps-content h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    margin: 0 0 32px;
    line-height: 1.3;
}

.taxi-steps-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 24px;
}

.taxi-steps-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.taxi-step-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    flex-shrink: 0;
}

.taxi-steps-list h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
}

.taxi-steps-list p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.65;
}

.taxi-steps-media img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* Safe travel */
.taxi-safe {
    position: relative;
    padding: 70px 0;
    background: #111216;
    color: #fff;
}

.taxi-safe::before,
.taxi-safe::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 15px;
    background: url('../images/footer-cizgi.png') center repeat-x;
    background-size: auto 100%;
    pointer-events: none;
}

.taxi-safe::before {
    top: 0;
}

.taxi-safe::after {
    bottom: 0;
}

.taxi-safe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.taxi-safe-content h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    margin: 0 0 16px;
}

.taxi-safe-content > p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin: 0 0 24px;
}

.taxi-safe-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.taxi-safe-list li {
    font-size: 14px;
    font-weight: 600;
    padding-left: 18px;
    position: relative;
}

.taxi-safe-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.taxi-safe-media img {
    width: 100%;
    border-radius: 8px;
}

/* Vehicles */
.taxi-vehicles {
    padding: 70px 0;
    background: #1a1b20;
    color: #fff;
}

.taxi-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.taxi-vehicle-card {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #222;
}

.taxi-vehicle-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.taxi-vehicle-card:hover img {
    transform: scale(1.05);
}

.taxi-vehicle-card figcaption {
    padding: 14px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

/* Reviews carousel */
.taxi-reviews {
    padding: 70px 0;
    background: #fff;
    color: #111216;
    overflow: hidden;
}

.taxi-reviews-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.taxi-reviews-head h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 36px);
    color: #111216;
    line-height: 1.2;
}

.taxi-reviews-head p {
    margin: 0;
    color: #5a6270;
    font-size: 16px;
    line-height: 1.75;
}

.taxi-reviews-carousel {
    position: relative;
    padding: 0 56px;
}

.taxi-reviews-viewport {
    overflow: hidden;
}

.taxi-reviews-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.taxi-review-slide {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    background: #f7f8fa;
    border-radius: 16px;
    padding: 28px 24px 22px;
    min-height: 280px;
    box-shadow: 0 8px 28px rgba(17, 18, 22, 0.08);
    border: 1px solid rgba(17, 18, 22, 0.08);
    position: relative;
}

.taxi-review-slide-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.taxi-review-quote {
    font-size: 52px;
    line-height: 1;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--secondary);
    opacity: 0.22;
    user-select: none;
}

.taxi-review-stars {
    color: var(--primary);
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 1;
}

.taxi-review-text {
    margin: 0;
    flex: 1 1 auto;
    color: #3d4450;
    font-size: 15px;
    line-height: 1.75;
}

.taxi-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(17, 18, 22, 0.08);
}

.taxi-review-google-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.taxi-review-google-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.taxi-review-author-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.taxi-review-author-meta strong {
    color: #111216;
    font-size: 15px;
    line-height: 1.3;
}

.taxi-review-author-meta span {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.35;
}

.taxi-reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 1px solid rgba(17, 18, 22, 0.12);
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.taxi-reviews-nav span {
    font-size: 28px;
    line-height: 1;
    margin-top: -2px;
    color: #fff;
}

.taxi-reviews-nav:hover,
.taxi-reviews-nav:focus-visible {
    background: #2a2c33;
    border-color: #2a2c33;
    transform: translateY(-50%);
}

.taxi-reviews-nav-prev {
    left: 0;
}

.taxi-reviews-nav-next {
    right: 0;
}

.taxi-reviews-mobile-nav {
    display: none;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.taxi-reviews-mobile-nav .taxi-reviews-nav {
    position: static;
    transform: none;
}

.taxi-reviews-mobile-nav .taxi-reviews-nav:hover,
.taxi-reviews-mobile-nav .taxi-reviews-nav:focus-visible {
    transform: none;
}

/* Districts home */
.taxi-districts-home {
    padding: 70px 0;
    background: #fff;
}

.taxi-districts-flip-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.taxi-district-flip-card {
    display: block;
    min-height: 132px;
    perspective: 1000px;
    text-decoration: none;
    color: inherit;
}

.taxi-district-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 132px;
    transform-style: preserve-3d;
    transition: transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.taxi-district-flip-card:hover .taxi-district-flip-inner,
.taxi-district-flip-card:focus-visible .taxi-district-flip-inner {
    transform: rotateY(180deg);
}

.taxi-district-flip-face {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 14px;
    border-radius: 8px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border: 1px solid #e8e8e8;
    box-sizing: border-box;
}

.taxi-district-flip-front {
    background: #f5f5f5;
}

.taxi-district-flip-back {
    background: var(--secondary);
    color: #fff;
    transform: rotateY(180deg);
    border-color: var(--secondary);
}

.taxi-district-flip-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
}

.taxi-district-flip-icon img {
    width: 36px;
    height: 36px;
    opacity: 0.45;
    filter: brightness(0) saturate(100%) !important;
}

.taxi-district-flip-icon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.taxi-district-flip-name {
    font-size: 16px;
    font-weight: 700;
    color: #111216;
    text-align: center;
    line-height: 1.3;
}

.taxi-district-flip-back p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.taxi-districts-more {
    text-align: center;
    margin-top: 28px;
}

/* Contact */
.taxi-contact {
    padding: 70px 0 80px;
    background: #ffffff;
    color: #111216;
}

.taxi-contact .taxi-section-head h2 {
    color: #111216;
}

.taxi-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

.taxi-contact-info {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.taxi-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    height: 100%;
}

.taxi-contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.taxi-contact-item img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%);
    flex-shrink: 0;
    margin-top: 4px;
}

.taxi-contact-item h4 {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.taxi-contact-item p {
    margin: 0;
    color: #444444;
    line-height: 1.6;
}

.taxi-contact-item a {
    color: #111216;
}

.taxi-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    background: #f8f8f8;
    border: 1px solid #ececec;
    border-radius: 10px;
    flex: 1;
    min-height: 0;
}

.taxi-contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.taxi-contact-card-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.taxi-contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.taxi-contact-card-body h4 {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(17, 18, 22, 0.62);
}

.taxi-contact-card-body p {
    margin: 0;
    color: #111216;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
}

.taxi-contact-card-body a {
    color: #111216;
    word-break: break-word;
}

.taxi-contact-map {
    min-height: 100%;
    height: 100%;
}

.taxi-contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 8px;
    display: block;
}

/* Buttons */
.taxi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    border: 2px solid transparent;
    transition: transform 0.2s ease;
    cursor: pointer;
    box-shadow: none;
}

.taxi-btn img {
    width: 18px;
    height: 18px;
    filter: brightness(0) !important;
}

.taxi-btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.taxi-btn-primary img {
    filter: brightness(0) invert(1) !important;
}

.taxi-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.taxi-btn-outline {
    background: transparent;
    color: #111;
    border-color: #111;
}

.taxi-btn-outline img {
    filter: brightness(0) !important;
}

.taxi-service-icon img[data-icon-themed="1"] {
    filter: brightness(0) invert(1) !important;
}

.taxi-btn img[data-icon-themed="1"] {
    filter: brightness(0) invert(1) !important;
}

.taxi-btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

.taxi-page-cta {
    text-align: center;
    margin-top: 36px;
}

.taxi-services-page,
.taxi-tariffs-page {
    padding: 40px 0 70px;
}

.taxi-services-page {
    background: #ffffff;
    color: #111216;
}

.taxi-services-page .taxi-section-head h2 {
    color: #111216;
}

.taxi-services-page .taxi-section-head p {
    color: #555555;
}

.taxi-services-page .taxi-service-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.taxi-services-page .taxi-service-card h3 {
    color: #111216;
}

.taxi-services-page .taxi-service-card p {
    color: #666666;
}

.taxi-districts-section,
.taxi-districts-page {
    padding: 40px 0 70px;
}

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

.taxi-district-card-link {
    display: block;
    height: 100%;
    color: inherit;
}

.taxi-district-card {
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.taxi-district-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.taxi-district-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #111;
    font-weight: 800;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 4px;
}

.taxi-district-card .blog-home-media {
    position: relative;
}

.taxi-district-read {
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    font-size: 13px;
    color: var(--primary);
}

.blog-detail-section {
    padding: 40px 0 70px;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 36px;
    align-items: start;
}

.blog-detail-hero img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 24px;
}

.blog-detail-lead {
    font-size: 18px;
    color: #444;
    line-height: 1.75;
    margin: 0 0 24px;
}

.blog-detail-article h2 {
    font-size: 22px;
    margin: 28px 0 12px;
}

.blog-detail-article p {
    color: #444;
    line-height: 1.8;
    margin: 0 0 16px;
}

.blog-detail-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.blog-detail-sidebar-box {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 24px 20px;
    position: sticky;
    top: 110px;
}

.blog-detail-sidebar-box h3 {
    margin: 0 0 16px;
    font-size: 16px;
}

.blog-detail-sidebar-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-detail-sidebar-box li + li {
    margin-top: 8px;
}

.blog-detail-sidebar-box a {
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.blog-detail-sidebar-box a:hover {
    color: var(--primary);
}

/* Footer taxi override */
body.taxi-home .footer-v2,
.site-footer.footer-v2 {
    position: relative;
    background: #14161c;
    color: rgba(255, 255, 255, 0.85);
    border-top: none;
}

.site-footer.footer-v2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: url('../images/footer-cizgi.png') center repeat-x;
    background-size: auto 100%;
    pointer-events: none;
}

.site-footer.footer-v2 .footer-v2-main {
    background: transparent;
}

/* ===== ANASAYFA — h2 (28px) + eşit boşluklar ===== */
body.taxi-home .taxi-section-tag,
body.taxi-home .taxi-about-label {
    display: none;
}

body.taxi-home .taxi-main h2 {
    font-size: 28px;
    line-height: 1.35;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0;
    text-transform: none;
}

body.taxi-home .taxi-section-head p {
    margin: 0;
    max-width: 720px;
    line-height: 1.7;
    font-size: 15px;
    color: #555;
    text-align: center;
}

body.taxi-home .taxi-main .taxi-btn {
    align-self: flex-start;
    max-width: 100%;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    min-height: 44px;
}

body.taxi-home .taxi-main .taxi-btn-lg {
    padding: 12px 24px;
    font-size: 14px;
    min-height: 44px;
}

body.taxi-home .taxi-services .taxi-btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
}

body.taxi-home .taxi-about,
body.taxi-home .taxi-services,
body.taxi-home .taxi-tariffs,
body.taxi-home .taxi-steps,
body.taxi-home .taxi-safe,
body.taxi-home .taxi-reviews,
body.taxi-home .taxi-districts-home,
body.taxi-home .taxi-contact {
    padding: var(--taxi-home-section-pad) 0;
    margin: 0;
}

body.taxi-home .taxi-steps,
body.taxi-home .taxi-safe,
body.taxi-home .taxi-reviews,
body.taxi-home .taxi-districts-home,
body.taxi-home .taxi-contact {
    content-visibility: auto;
    contain-intrinsic-size: auto 640px;
}

body.taxi-home .taxi-section-tag {
    margin: 0;
}

body.taxi-home .taxi-section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--taxi-home-text-gap);
    margin: 0;
}

body.taxi-home .taxi-services .taxi-section-head p {
    color: rgba(255, 255, 255, 0.82);
}

body.taxi-home .taxi-about-grid,
body.taxi-home .taxi-services-grid,
body.taxi-home .taxi-tariffs-grid,
body.taxi-home .taxi-steps-grid,
body.taxi-home .taxi-safe-grid,
body.taxi-home .taxi-reviews-grid,
body.taxi-home .taxi-reviews-carousel,
body.taxi-home .taxi-districts-flip-grid,
body.taxi-home .taxi-contact-grid {
    gap: var(--taxi-home-gap);
}

body.taxi-home .taxi-about-content,
body.taxi-home .taxi-steps-content,
body.taxi-home .taxi-safe-content {
    display: flex;
    flex-direction: column;
    gap: var(--taxi-home-text-gap);
}

body.taxi-home .taxi-about-content > p,
body.taxi-home .taxi-steps-content > p,
body.taxi-home .taxi-safe-content > p {
    margin: 0;
}

body.taxi-home .taxi-about-features {
    gap: var(--taxi-home-gap);
    margin: calc(var(--taxi-home-gap) - var(--taxi-home-text-gap)) 0 0;
}

body.taxi-home .taxi-about-features article > div,
body.taxi-home .taxi-steps-list li > div {
    display: flex;
    flex-direction: column;
    gap: var(--taxi-home-text-gap);
}

body.taxi-home .taxi-about-features h3,
body.taxi-home .taxi-about-features p,
body.taxi-home .taxi-steps-list h3,
body.taxi-home .taxi-steps-list p,
body.taxi-home .taxi-service-card h3,
body.taxi-home .taxi-service-card p,
body.taxi-home .taxi-tariff-card h3,
body.taxi-home .taxi-tariff-card p,
body.taxi-home .taxi-review-text,
body.taxi-home .taxi-review-card p {
    margin: 0;
}

body.taxi-home .taxi-service-card,
body.taxi-home .taxi-tariff-card,
body.taxi-home .taxi-review-slide {
    display: flex;
    flex-direction: column;
    gap: var(--taxi-home-text-gap);
}

body.taxi-home .taxi-service-card {
    align-items: center;
}

body.taxi-home .taxi-tariff-card {
    align-items: center;
}

body.taxi-home .taxi-service-icon {
    margin: 0 0 calc(var(--taxi-home-gap) - var(--taxi-home-text-gap));
}

body.taxi-home .taxi-tariff-card .taxi-tariff-price {
    margin-top: calc(var(--taxi-home-gap) - var(--taxi-home-text-gap));
}

body.taxi-home .taxi-reviews-head {
    margin-bottom: 0;
}

body.taxi-home .taxi-review-author {
    margin-top: auto;
}

body.taxi-home .taxi-steps-list {
    gap: var(--taxi-home-gap);
    margin: calc(var(--taxi-home-gap) - var(--taxi-home-text-gap)) 0 0;
}

body.taxi-home .taxi-safe-list {
    gap: var(--taxi-home-gap);
    margin: calc(var(--taxi-home-gap) - var(--taxi-home-text-gap)) 0 0;
}

body.taxi-home .taxi-safe-content > .taxi-btn,
body.taxi-home .taxi-hero-content > .taxi-btn {
    margin-top: calc(var(--taxi-home-gap) - var(--taxi-home-text-gap));
}

body.taxi-home .taxi-districts-more {
    margin: 0;
}

body.taxi-home .taxi-contact-info {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

body.taxi-home .taxi-contact-cards {
    gap: var(--taxi-home-gap);
}

body.taxi-home .taxi-contact-card-body {
    gap: var(--taxi-home-text-gap);
}

body.taxi-home .taxi-contact-card-body h4,
body.taxi-home .taxi-contact-card-body p {
    margin: 0;
}

body.taxi-home .taxi-services .container,
body.taxi-home .taxi-tariffs .container,
body.taxi-home .taxi-reviews .container,
body.taxi-home .taxi-districts-home .container,
body.taxi-home .taxi-contact .container {
    display: flex;
    flex-direction: column;
    gap: var(--taxi-home-gap);
}

/* Responsive */
@media (max-width: 1100px) {
    body.taxi-home .taxi-main h2 {
        font-size: 23px;
    }

    body.taxi-home {
        --taxi-header-offset: 73px;
        padding-top: 0;
    }

    body.taxi-home:has(.mobile-search-bar.is-open) {
        padding-top: 0;
    }

    body.taxi-home .taxi-hero {
        margin-top: 0;
        padding-top: var(--taxi-header-offset, 73px);
    }

    .taxi-services-grid,
    .taxi-tariffs-grid,
    .taxi-vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .taxi-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: 0;
    }

    .taxi-info-item {
        padding: 14px 16px;
        border-right: 0;
        border-bottom: 1px solid rgba(17, 18, 22, 0.14);
    }

    .taxi-info-item:nth-child(odd) {
        border-right: 1px solid rgba(17, 18, 22, 0.14);
    }

    .taxi-info-item:nth-child(1),
    .taxi-info-item:nth-child(2) {
        border-bottom: 1px solid rgba(17, 18, 22, 0.14);
    }

    .taxi-info-item:nth-child(3) {
        grid-column: 1 / -1;
        border-right: 0;
        border-bottom: 0;
    }

    .taxi-district-grid,
    .taxi-districts-flip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    body.taxi-home {
        --taxi-home-gap: 16px;
        --taxi-home-text-gap: 6px;
        --taxi-home-section-pad: 48px;
    }

    .taxi-info-bar {
        padding: 24px 0;
    }

    .taxi-hero-wrap {
        padding: calc(var(--taxi-hero-step) * 1.25) 0;
    }

    .taxi-about-grid,
    .taxi-steps-grid,
    .taxi-safe-grid,
    .taxi-contact-grid,
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .taxi-reviews-carousel {
        padding: 0;
    }

    .taxi-reviews-carousel > .taxi-reviews-nav {
        display: none;
    }

    .taxi-reviews-mobile-nav {
        display: flex;
    }

    .taxi-review-slide {
        min-height: 260px;
    }

    .taxi-services-grid,
    .taxi-tariffs-grid,
    .taxi-vehicles-grid,
    .taxi-district-grid,
    .taxi-info-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .taxi-districts-flip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .taxi-info-item,
    .taxi-info-item:nth-child(odd) {
        border-right: 0;
        border-bottom: 1px solid rgba(17, 18, 22, 0.14);
        padding: 14px 0;
    }

    .taxi-info-item:first-child {
        padding-left: 0;
    }

    .taxi-info-item:last-child {
        border-bottom: 0;
    }

    .taxi-contact-map iframe {
        min-height: 320px;
    }

    .taxi-safe-list {
        grid-template-columns: 1fr;
    }
}

.faq-page-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.faq-page-list .faq-item summary h3 {
    padding-left: 0;
}

/* District article content */
.district-article-content ul {
    margin: 0 0 16px;
    padding-left: 20px;
    color: #4f5d75;
}

.district-article-content li {
    margin: 0 0 8px;
    font-size: 15.4px;
    line-height: 1.7;
}

.district-article-hero {
    margin: 0 0 24px;
}

.district-article-hero img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
    display: block;
}

@media (min-width: 1101px) {
    .district-article-hero,
    .blog-detail-hero {
        margin: 0 0 32px;
    }

    .district-article-hero img,
    .blog-detail-hero img {
        width: 100%;
        max-height: 480px;
        object-fit: cover;
        object-position: center 82%;
    }
}

.district-article-lead {
    font-size: 16px;
    font-weight: 500;
    color: #111216;
    margin: 0 0 24px;
}

.district-article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 18px;
    font-size: 14px;
}

.district-article-table th,
.district-article-table td {
    border: 1px solid #e7ebf2;
    padding: 10px 12px;
    text-align: left;
    color: #4f5d75;
}

.district-article-table th {
    background: #f6f8fb;
    color: #111216;
    font-weight: 700;
}

.district-article-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.district-article-quote {
    margin: 0 0 18px;
    padding: 14px 16px 14px 18px;
    border-left: 4px solid var(--primary);
    background: #fafafa;
    border-radius: 0 6px 6px 0;
}

.district-article-quote p {
    margin: 0;
    font-style: italic;
    color: #4f5d75;
}

.district-article-content a {
    color: #111216;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.district-article-content a:hover {
    color: var(--primary);
}

.district-article-content strong {
    color: #111216;
    font-weight: 700;
}

/* Anasayfa scroll reveal — yalnızca .taxi-main; açılışta içerik görünür kalır */
@media (prefers-reduced-motion: no-preference) {
    body.taxi-home.reveal-ready .taxi-main .reveal:not(.is-visible) {
        opacity: 0;
        transform: translate3d(0, 32px, 0);
        transition:
            opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: var(--reveal-delay, 0s);
    }

    body.taxi-home.reveal-ready .taxi-main .reveal.reveal-left:not(.is-visible) {
        transform: translate3d(-36px, 0, 0);
    }

    body.taxi-home.reveal-ready .taxi-main .reveal.reveal-right:not(.is-visible) {
        transform: translate3d(36px, 0, 0);
    }

    body.taxi-home.reveal-ready .taxi-main .reveal.reveal-scale:not(.is-visible) {
        transform: translate3d(0, 24px, 0) scale(0.96);
    }

    body.taxi-home.reveal-ready .taxi-main .reveal.is-visible {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.taxi-home .taxi-main .reveal {
        opacity: 1;
        transform: none;
    }
}
