/* PERFORMANCE HINT */
html {
    scroll-behavior: smooth;
}


/* ==============================
   FONT: INTER (LOCAL)
   ============================== */

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Genel */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* HEADER */
.site-header {
    background: #111;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

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


.hero-content h1,
.section-header h2,
.why-us-content h2,
.contact-header h2 {
    letter-spacing: -0.5px;
}




body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111;
    padding-top: 80px;
}

/* Başlıklar */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.3px;
}

/* Paragraflar */
p {
    font-weight: 400;
}

/* Logo default */
.logo img {
    max-width: 250px;
    height: auto;
}

/* 486px ve altı */
@media (max-width: 486px) {
    .logo img {
        max-width: 180px; /* LOGO KÜÇÜLÜR */
    }
}

.main-nav .menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.main-nav a:hover {
    color: #ffc400;
}

.header-contact .phone {
    background: #ffc400;
    color: #000;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 486px) {
    .header-contact .phone {
        padding: 8px 12px;
        font-size: 14px;
        white-space: nowrap; /* EN KRİTİK SATIR */
    }
}

/* FOOTER */
.site-footer {
    background: #0b0b0b;
    color: #ccc;
    padding: 50px 0 0;
}

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

.site-footer h4 {
    color: #fff;
    margin-bottom: 15px;
}

.site-footer a {
    color: #ffc400;
    text-decoration: none;
}

.footer-bottom {
    background: #000;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    font-size: 14px;
}

/* MOBİL */
.mobile-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* HERO MAP */
.hero-map-section {
    background: linear-gradient(180deg, #111 0%, #0b0b0b 100%);
    padding: 70px 0;
    color: #fff;
}

.hero-map-section .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 34px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-route {
    display: inline-block;
    background: #ffc400;
    color: #000;
    padding: 15px 28px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-route:hover {
    background: #e0ac00;
    transform: translateY(-2px);
}

.hero-map {
    border: 4px solid #ffc400;
    border-radius: 8px;
    overflow: hidden;
}

.hero-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

/* MOBİL */
@media (max-width: 900px) {
    .hero-map-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-map iframe {
        height: 300px;
    }
}


/* SERVICES */
.services-section {
    background: #fff;
    padding: 80px 0;
    color: #111;
}

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

.section-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

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

.service-box {
    background: #f7f7f7;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.service-box .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-box.highlight {
    background: #111;
    color: #fff;
}

.service-box.highlight p {
    color: #ddd;
}

/* MOBİL */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 26px;
    }
}



/* WHY US */
.why-us-section {
    background: #111;
    color: #fff;
    padding: 90px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.why-us-content p {
    font-size: 17px;
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 25px;
}

.why-us-list {
    list-style: none;
    padding: 0;
}

.why-us-list li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #fff;
}

/* Stats */
.why-us-stats {
    display: grid;
    gap: 20px;
}

.stat-box {
    background: #1b1b1b;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #ffc400;
}

.stat-box strong {
    font-size: 36px;
    color: #ffc400;
}

.stat-box span {
    display: block;
    margin-top: 5px;
    font-size: 15px;
    color: #ccc;
}

/* MOBİL */
@media (max-width: 900px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-us-content h2 {
        font-size: 26px;
    }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* MOBILE BOTTOM BAR */
.mobile-bottom-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background: #111;
        z-index: 9999;
        border-top: 2px solid #ffc400;
    }

    .mobile-bottom-bar a {
        padding: 14px 5px;
        text-align: center;
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
    }

    .mobile-bottom-bar .call {
        background: #e53935;
    }

    .mobile-bottom-bar .whatsapp {
        background: #25D366;
    }

    .mobile-bottom-bar .route {
        background: #ffc400;
        color: #000;
    }

    /* WhatsApp float mobilde gizle */
    .whatsapp-float {
        display: none;
    }
}



/* CONTACT */
.contact-section {
    background: #f5f5f5;
    padding: 90px 0;
    color: #111;
}

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

.contact-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

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

.contact-info {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info a {
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

.btn-contact-route {
    display: inline-block;
    margin-top: 15px;
    background: #ffc400;
    color: #000;
    padding: 14px 25px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    border: 4px solid #ffc400;
}

.contact-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

/* MOBİL */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-map iframe {
        height: 300px;
    }
}


/* MOBILE MENU FIX */
@media (max-width: 768px) {

    .main-nav {
        position: fixed;
        top: 80px;
        left: -75%;            /* MENÜ KAPALIYKEN */
        width: 75%;            /* SAYFANIN %25’İ GÖRÜNÜR */
        height: calc(100vh - 80px);
        background: #111;
        transition: left 0.3s ease;
        padding: 30px 20px;
        z-index: 9999;
        display: block;
    }

    .main-nav.active {
        left: 0;              /* AÇIK HAL */
    }

    .main-nav .menu {
        flex-direction: column;
        gap: 20px;
    }

    body.menu-open {
        overflow: hidden;
    }
}


/* MENU OVERLAY */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* TOGGLE ICON */
.mobile-toggle {
    font-size: 30px;
    cursor: pointer;
    user-select: none;
}

/* MOBILE TOGGLE FIX */
.mobile-toggle {
    position: relative;
    z-index: 10001; /* HER ŞEYİN ÜSTÜNDE */
}


/* GOOGLE REVIEWS */
.google-reviews-section {
    background: #fff;
    padding: 90px 0;
    color: #111;
}

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

.reviews-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.reviews-header p {
    font-size: 17px;
    color: #555;
}

.reviews-embed {
    border: 4px solid #ffc400;
    border-radius: 10px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.reviews-embed iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.reviews-cta {
    text-align: center;
    margin-top: 25px;
}

.btn-review {
    background: #ffc400;
    color: #000;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
}

/* MOBİL */
@media (max-width: 768px) {
    .reviews-embed iframe {
        height: 300px;
    }

    .reviews-header h2 {
        font-size: 26px;
    }
}


/* HERO BACKGROUND IMAGE */
.hero-bg {
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url('../images/trucks/kamyon-lastik-bakimi-havalimani.webp') center / cover no-repeat;
}

.services-image {
    max-width: 900px;
    margin: 0 auto 50px;
}

.services-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.why-us-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* STICKY HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

/* Normal durum */
.header-inner {
    height: 80px;
    transition: height 0.3s ease;
}

.logo img {
    max-width: 250px;
    transition: max-width 0.3s ease;
}

/* SHRINK DURUMU */
.site-header.shrink {
    background: #0d0d0d;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.site-header.shrink .header-inner {
    height: 60px;
}

.site-header.shrink .logo img {
    max-width: 180px;
}

.site-header.shrink .header-contact .phone {
    padding: 6px 12px;
    font-size: 14px;
}

/* MOBİLDE DE ÇALIŞSIN */
@media (max-width: 768px) {
    .header-inner {
        height: 70px;
    }

    .site-header.shrink .header-inner {
        height: 55px;
    }
}

/* STICKY HEADER – FIX */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    transform: none !important;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Normal */
.header-inner {
    height: 80px;
    transition: height 0.3s ease;
}

/* Shrink */
.site-header.shrink .header-inner {
    height: 60px;
}

/* STICKY FIX – OVERFLOW SORUNU */
body,
html {
    overflow-x: visible;
}

.site-header {
    overflow: visible !important;
}


/* HEADER FINAL FIX */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}

.site-header.shrink ~ * {
    scroll-margin-top: 60px;
}


@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .site-header.shrink .header-inner {
        height: 55px;
    }
}






/* ==============================
   SERVICES SLIDER – CLEAN BASE
   ============================== */

.services-slider {
    max-width: 1000px;
    margin: 0 auto 60px;
    overflow: hidden;
}

.services-slider-inner {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.services-slider-inner::-webkit-scrollbar {
    display: none;
}

.services-slider-inner img {
    flex: 0 0 100%;
    max-width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* MOBİL */
@media (max-width: 768px) {
    .services-slider-inner img {
        height: 260px;
    }
}


/* ZEN / FIREFOX DARK MODE FIX */
.page-content {
    background: #fff;
    color: #111;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content p,
.page-content li {
    color: #111;
}

/* ANA SAYFA SEO METNİ – CARD TASARIM */
.page-content {
    padding: 80px 0;
    background: #f5f5f5; /* kartın dışı */
}

.page-content .container {
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Yazı okunurluğu */
.page-content h1,
.page-content h2,
.page-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content p {
    margin-bottom: 18px;
    line-height: 1.75;
    font-size: 17px;
    color: #333;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.page-content li {
    margin-bottom: 8px;
}


@media (max-width: 768px) {
    .page-content {
        padding: 50px 0;
    }

    .page-content .container {
        padding: 30px 20px;
        border-radius: 10px;
    }

    .page-content p {
        font-size: 16px;
    }
}




.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.logo,
.main-nav,
.header-contact {
    min-width: 0;
}

.header-contact {
    white-space: nowrap;
    max-width: max-content;
}

.phone {
    display: flex;
    align-items: center;
    gap: 6px;
}




@media (max-width: 768px) {

    .site-header {
        height: 70px;
    }

    .header-inner {
        height: 70px !important;
        overflow: hidden;
    }

    .site-header.shrink .header-inner {
        height: 70px !important;
    }

    .header-contact {
        flex-shrink: 0;
    }

    body {
        padding-top: 70px;
    }
}