:root {
    --primary: #d71920;
    --primary-dark: #a90f15;
    --dark: #151515;
    --text: #5f6368;
    --light: #f6f7f8;
    --white: #ffffff;
    --border: #e6e8eb;
    --container: 1240px;
    --radius: 18px;
    --shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: var(--white);

    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo img {
    width: 170px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu-link,
.mega-toggle {
    color: var(--dark);

    font-size: 14px;
    font-weight: 700;

    background: none;
    border: 0;

    transition: color 0.25s ease;
}

.menu-link:hover,
.mega-toggle:hover {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
}

.mega-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
}

.mega-menu {
    position: absolute;

    top: calc(100% + 25px);
    left: 50%;

    width: min(760px, 90vw);

    transform: translateX(-50%);

    background: var(--white);

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    border-radius: 16px;

    padding: 25px;

    opacity: 0;
    visibility: hidden;

    transition: 0.25s ease;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown.is-active .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-head {
    display: flex;
    flex-direction: column;

    gap: 4px;

    margin-bottom: 20px;
}

.mega-menu-head strong {
    color: var(--dark);
}

.mega-menu-head span {
    font-size: 13px;
}

.mega-menu-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}

.mega-menu-grid a {
    padding: 10px 12px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 600;

    transition: 0.2s ease;
}

.mega-menu-grid a:hover,
.mega-menu-grid .active-city {
    color: var(--primary);
    background: #fff1f1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone,
.header-whatsapp {
    padding: 11px 15px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;
}

.header-phone {
    color: var(--dark);
}

.header-whatsapp {
    background: var(--primary);
    color: var(--white);
}

.mobile-menu-toggle,
.mobile-nav-head,
.mobile-contact,
.mobile-overlay {
    display: none;
}

/* HERO */

.inner-hero {
    position: relative;

    min-height: 580px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.inner-hero > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.inner-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.84),
            rgba(0, 0, 0, 0.48),
            rgba(0, 0, 0, 0.2)
        );
}

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

    color: var(--white);

    max-width: 850px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 24px;


    font-size: 13px;

    color: rgba(255, 255, 255, 0.75);
}

.hero-kicker {
    color: #ffffff;
    background: var(--primary);

    display: inline-flex;

    padding: 7px 14px;

    border-radius: 6px;

    margin-bottom: 18px;
}

.section-kicker {
    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.inner-hero h1 {
    font-size: clamp(42px, 6vw, 70px);

    line-height: 1.1;

    margin-bottom: 20px;
}

.inner-hero p {
    max-width: 720px;

    font-size: 18px;

    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 8px;

    font-weight: 800;

    transition: 0.25s ease;
}

.button-primary {
    color: var(--white);
    background: var(--primary);
}

.button-primary:hover {
    background: var(--primary-dark);
}

.button-outline {
    border: 1px solid rgba(255, 255, 255, 0.7);

    color: var(--white);
}

/* SECTIONS */

.section {
    padding: 100px 0;
}

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

.two-column,
.route-grid,
.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 70px;

    align-items: center;
}

.content-block h2,
.route-grid h2,
.contact-content h2 {
    color: var(--dark);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.2;

    margin:
        12px 0
        25px;
}

.content-block p,
.route-grid p,
.contact-content p {
    margin-bottom: 18px;
}

.content-image img,
.route-image img {
    width: 100%;

    border-radius: var(--radius);
}

.check-list {
    display: grid;
    gap: 14px;

    margin-top: 28px;
}

.check-list div {
    display: flex;
    align-items: flex-start;

    gap: 12px;
}

.check-list span {
    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--primary);
    background: #fff0f1;

    font-weight: 800;
}

.check-list p {
    margin: 0;
}

/* SECTION HEADINGS */

.section-heading {
    max-width: 780px;

    margin-bottom: 50px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-heading h2 {
    color: var(--dark);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.2;

    margin:
        12px 0
        15px;
}

/* ADVANTAGES */

.advantage-grid,
.process-grid,
.cargo-types-grid,
.review-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.advantage-card,
.process-card,
.cargo-types-grid article {
    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 14px;

    padding: 30px;

    transition: 0.25s ease;
}

.advantage-card:hover,
.process-card:hover,
.cargo-types-grid article:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

.advantage-number {
    color: var(--primary);

    font-size: 28px;
    font-weight: 900;

    margin-bottom: 18px;
}

.advantage-card h3,
.process-card h3,
.cargo-types-grid h3 {
    color: var(--dark);

    font-size: 20px;

    margin-bottom: 12px;
}

.advantage-card p,
.process-card p,
.cargo-types-grid p {
    font-size: 14px;
}

/* PROCESS */

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

.process-card {
    text-align: center;
}

.process-number {
    display: inline-grid;
    place-items: center;

    width: 56px;
    height: 56px;

    border-radius: 50%;

    background: var(--primary);
    color: var(--white);

    font-weight: 900;

    margin-bottom: 20px;
}

/* ROUTES */

.route-section {
    background: #171717;
}

.route-section h2,
.route-section p {
    color: var(--white);
}

.route-section p {
    color: rgba(255, 255, 255, 0.7);
}

.city-links {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-top: 30px;
}

.city-links a {
    border: 1px solid rgba(255, 255, 255, 0.16);

    color: var(--white);

    padding: 13px 15px;

    border-radius: 8px;

    font-size: 14px;

    transition: 0.25s ease;
}

.city-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* CARGO TYPES */

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

.cargo-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--primary);
    background: #fff0f1;

    font-size: 24px;

    margin-bottom: 20px;
}

/* =========================================
   PROFESYONEL MÜŞTERİ GÖRÜŞLERİ
========================================= */

.reviews-section {
    position: relative;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f8fa 100%
        );

    overflow: hidden;
}

.reviews-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -180px;
    left: -180px;

    border-radius: 50%;

    background:
        rgba(215, 25, 32, 0.04);
}

.reviews-section .container {
    position: relative;
    z-index: 1;
}


.review-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


.review-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 390px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e8eaed;

    border-radius: 18px;

    box-shadow:
        0 12px 35px
        rgba(20, 25, 35, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.review-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(215, 25, 32, 0.25);

    box-shadow:
        0 22px 50px
        rgba(20, 25, 35, 0.10);
}


/* ÜST BÖLÜM */

.review-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 28px;
}


.review-stars {
    color: #f2a900;

    font-size: 17px;

    letter-spacing: 2px;

    line-height: 1;
}


.review-label {
    display: inline-flex;

    align-items: center;

    padding: 7px 11px;

    border-radius: 50px;

    background: #fff1f2;

    color: #c9161d;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.8px;
}


/* YORUM METNİ */

.review-card blockquote {
    position: relative;

    flex: 1;

    margin: 0;

    padding-top: 20px;

    color: #4d545c;

    font-size: 15px;

    line-height: 1.85;
}


.review-card blockquote::before {
    content: "“";

    position: absolute;

    top: -20px;
    left: -4px;

    color:
        rgba(215, 25, 32, 0.16);

    font-size: 70px;

    font-family:
        Georgia,
        serif;

    line-height: 1;
}


/* MÜŞTERİ BİLGİSİ */

.review-user {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 28px;

    padding-top: 22px;

    border-top:
        1px solid #edf0f2;
}


.review-avatar {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #d71920,
            #a90f15
        );

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.5px;
}


.review-user strong {
    display: block;

    color: #20242a !important;

    font-size: 15px;

    line-height: 1.3;

    margin-bottom: 3px;
}


.review-user span {
    display: block;

    color: #747a82 !important;

    font-size: 12px;

    line-height: 1.5;
}


/* TABLET */

@media (max-width: 900px) {

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

}


/* MOBİL */

@media (max-width: 650px) {

    .review-grid {
        grid-template-columns: 1fr;
    }


    .review-card {
        min-height: auto;

        padding: 25px;
    }


    .review-card blockquote {
        font-size: 14px;
    }


    .review-top {
        margin-bottom: 22px;
    }

}

/* FAQ */

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

.faq-list {
    max-width: 900px;

    margin: 0 auto;

    display: grid;
    gap: 12px;
}

.faq-list details {
    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 20px 24px;
}

.faq-list summary {
    color: var(--dark);

    cursor: pointer;

    font-weight: 800;
}

.faq-list p {
    padding-top: 15px;

    font-size: 14px;
}

/* CONTACT */

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

.contact-content {
    max-width: 580px;
}

.contact-phone {
    display: flex;
    flex-direction: column;

    margin-top: 28px;
}

.contact-phone span {
    font-size: 13px;
}

.contact-phone a {
    color: var(--primary);

    font-size: 28px;
    font-weight: 900;
}

.cargo-form {
    background: var(--light);

    padding: 35px;

    border-radius: var(--radius);
}

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 7px;

    margin-bottom: 16px;
}

.form-group label {
    color: var(--dark);

    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;

    border: 1px solid var(--border);

    background: var(--white);

    border-radius: 8px;

    padding: 13px 14px;

    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-button {
    width: 100%;

    border: 0;
}

/* FOOTER */

.site-footer {
    background: #111;

    color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 40px;

    padding: 70px 0;
}

.footer-logo {
    color: var(--white);

    font-size: 24px;
    font-weight: 900;
}

.footer-about p {
    margin-top: 18px;

    max-width: 330px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--white);

    margin-bottom: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);

    padding: 20px 0;

    text-align: center;

    font-size: 13px;
}

/* FLOATING WHATSAPP */

.floating-whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    padding: 14px 20px;

    border-radius: 50px;

    background: #25d366;
    color: var(--white);

    font-size: 14px;
    font-weight: 800;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */

@media (max-width: 1100px) {

    .main-nav {
        gap: 15px;
    }

    .menu-link,
    .mega-toggle {
        font-size: 12px;
    }

    .advantage-grid,
    .process-grid,
    .cargo-types-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}

@media (max-width: 900px) {

    .mobile-menu-toggle {
        display: flex;

        flex-direction: column;

        gap: 5px;

        border: 0;
        background: transparent;
    }

    .mobile-menu-toggle span {
        width: 27px;
        height: 2px;

        background: var(--dark);
    }

    .header-actions {
        display: none;
    }

    .main-nav {
        position: fixed;

        top: 0;
        right: 0;

        width: min(360px, 90vw);
        height: 100vh;

        background: var(--white);

        display: flex;

        flex-direction: column;

        align-items: stretch;

        padding: 25px;

        transform: translateX(110%);

        transition: transform 0.3s ease;

        overflow-y: auto;

        z-index: 1002;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .mobile-nav-head {
        display: flex;

        align-items: center;
        justify-content: space-between;

        margin-bottom: 20px;

        color: var(--dark);
    }

    .mobile-menu-close {
        border: 0;
        background: none;

        font-size: 34px;
    }

    .menu-link,
    .mega-toggle {
        width: 100%;

        padding: 13px 0;

        text-align: left;

        font-size: 15px;
    }

    .mega-menu {
        position: static;

        width: 100%;

        transform: none;

        display: none;

        opacity: 1;
        visibility: visible;

        box-shadow: none;

        margin-top: 5px;
    }

    .nav-dropdown.is-active .mega-menu {
        display: block;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
    }

    .mobile-contact {
        display: grid;

        gap: 10px;

        margin-top: auto;

        padding-top: 20px;
    }

    .mobile-contact a {
        padding: 13px;

        text-align: center;

        border-radius: 8px;

        background: var(--light);

        font-weight: 800;
    }

    .mobile-contact a:last-child {
        color: var(--white);
        background: var(--primary);
    }

    .mobile-overlay {
        position: fixed;

        inset: 0;

        z-index: 1001;

        background: rgba(0, 0, 0, 0.55);

        opacity: 0;
        visibility: hidden;

        transition: 0.25s ease;
    }

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

    .two-column,
    .route-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-card > p {
        min-height: auto;
    }

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

}

@media (max-width: 600px) {

    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }

    .section {
        padding: 70px 0;
    }

    .inner-hero {
        min-height: 620px;
    }

    .inner-hero h1 {
        font-size: 44px;
    }

    .inner-hero p {
        font-size: 16px;
    }

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

    .button {
        width: 100%;
    }

    .advantage-grid,
    .process-grid,
    .cargo-types-grid,
    .city-links,

    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cargo-form {
        padding: 25px;
    }

    .footer-grid {
        gap: 30px;
    }

}
/* =========================================
   DALAMAN SAYFASI YAZI OKUNURLUK DÜZELTMESİ
========================================= */

/* GENEL BAŞLIK RENKLERİ */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark);
}


/* HERO YAZILARI */

.inner-hero {
    color: #ffffff;
}

.inner-hero h1 {
    color: #ffffff !important;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.45);
}

.inner-hero p {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.inner-hero .breadcrumb,
.inner-hero .breadcrumb a,
.inner-hero .breadcrumb strong,
.inner-hero .breadcrumb span {
    color: #ffffff !important;
}

.inner-hero .section-kicker {
    color: #ffffff !important;
}


/* HERO ARKA PLANINI KOYULAŞTIR */

.inner-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.90) 0%,
            rgba(0, 0, 0, 0.70) 50%,
            rgba(0, 0, 0, 0.40) 100%
        ) !important;
}


/* KOYU DALAMAN ROTA BÖLÜMÜ */

.route-section {
    color: #ffffff;
}

.route-section h2,
.route-section h3,
.route-section h4 {
    color: #ffffff !important;
}

.route-section p {
    color: rgba(255, 255, 255, 0.88) !important;
}

.route-section .section-kicker {
    color: #ff6b70 !important;
}

.route-section .city-links a {
    color: #ffffff !important;
}

.route-section .city-links a:hover {
    color: #ffffff !important;
}


/* ROUTE RESMİ */

.route-image {
    position: relative;
}

.route-image img {
    filter: brightness(0.92);
}


/* FOOTER OKUNURLUK */

.site-footer {
    color: rgba(255, 255, 255, 0.82);
}

.site-footer h2,
.site-footer h3,
.site-footer h4 {
    color: #ffffff !important;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.75);
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}


/* KARTLAR */

.advantage-card,
.process-card,
.cargo-types-grid article,
.review-card {
    color: #555b63;
}

.advantage-card h3,
.process-card h3,
.cargo-types-grid article h3,
.review-card h3 {
    color: #171717 !important;
}

.advantage-card p,
.process-card p,
.cargo-types-grid article p,
.review-card p {
    color: #555b63 !important;
}


/* YORUM BÖLÜMÜ */

.review-user strong {
    color: #171717 !important;
}

.review-user span {
    color: #6b7078 !important;
}


/* SSS */

.faq-list summary {
    color: #171717 !important;
}

.faq-list p {
    color: #555b63 !important;
}


/* FORM */

.contact-content h2 {
    color: #171717 !important;
}

.contact-content p {
    color: #555b63 !important;
}

.form-group label {
    color: #171717 !important;
}

.form-group input,
.form-group textarea {
    color: #171717;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7b8188;
    opacity: 1;
}


/* AÇIK ARKA PLANLI BÖLÜMLER */

.section:not(.route-section) p {
    color: #555b63;
}


/* CHECK LIST */

.check-list p,
.check-list strong {
    color: #34383d;
}


/* MOBİL MENÜ YAZILARI */

@media (max-width: 900px) {

    .main-nav {
        color: #171717;
    }

    .main-nav .menu-link,
    .main-nav .mega-toggle {
        color: #171717 !important;
    }

    .mega-menu-grid a {
        color: #34383d !important;
    }

    .mega-menu-grid a.active-city {
        color: var(--primary) !important;
    }

}


/* MOBİL HERO OKUNURLUK */

@media (max-width: 600px) {

    .inner-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.88),
                rgba(0, 0, 0, 0.72)
            ) !important;
    }

    .inner-hero h1 {
        font-size: 42px;
        line-height: 1.12;
    }

    .inner-hero p {
        font-size: 16px;
        line-height: 1.7;
    }

}