/* =========================================================
   VIP KARGO KURYE - MOTORLU KURYE
========================================================= */

:root {
    --navy: #071a33;
    --navy-light: #0d315d;
    --blue: #1768e5;
    --blue-dark: #0e56c4;
    --orange: #f59a23;
    --text: #667085;
    --heading: #132238;
    --light: #f5f8fc;
    --white: #ffffff;
    --border: #e5eaf1;
    --shadow: 0 20px 60px rgba(7, 26, 51, 0.10);
}


/* RESET */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", Arial, sans-serif;
    background: var(--white);
    color: var(--heading);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
}

.container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   TOPBAR
========================================================= */

.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.65);
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar p,
.topbar a {
    font-size: 10px;
    font-weight: 700;
}

.topbar-links {
    display: flex;
    gap: 22px;
}

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


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.header-container {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    flex-shrink: 0;
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.desktop-nav > a,
.mega-trigger {
    border: 0;
    background: transparent;
    color: #46556b;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.desktop-nav > a:hover,
.mega-trigger:hover {
    color: var(--blue);
}


/* =========================================================
   MEGA MENU
========================================================= */

.nav-mega {
    position: relative;
}

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

.arrow {
    transition: transform 0.25s ease;
}

.nav-mega.active .arrow {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 28px);
    left: -220px;
    width: 820px;

    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 26px;

    padding: 28px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;

    box-shadow: 0 30px 80px rgba(7, 26, 51, 0.18);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(10px);
    transition: 0.25s ease;
}

.nav-mega.active .mega-menu,
.nav-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-intro {
    padding: 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
}

.mega-intro > span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.mega-intro h3 {
    margin-top: 14px;
    font-size: 20px;
    line-height: 1.3;
}

.mega-intro p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
}

.mega-intro a {
    display: inline-block;
    margin-top: 26px;

    font-size: 11px;
    font-weight: 800;
}

.mega-links h4 {
    margin-bottom: 15px;
    color: #9aa5b5;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mega-links a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 10px;
    transition: 0.2s ease;
}

.mega-links a:hover,
.mega-links a.current {
    background: #f3f7ff;
}

.mega-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 9px;
    background: #eaf2ff;
    color: var(--blue);

    font-size: 11px;
    font-weight: 800;
}

.mega-links strong {
    display: block;
    color: var(--heading);
    font-size: 11px;
}

.mega-links small {
    display: block;
    margin-top: 2px;
    color: #8994a5;
    font-size: 9px;
}


/* HEADER ACTIONS */

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

.phone-link {
    display: flex;
    flex-direction: column;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
}

.phone-link span {
    color: #8b96a5;
    font-size: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.quote-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 19px;

    border-radius: 10px;
    background: var(--blue);
    color: var(--white);

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

    transition: 0.25s ease;
}

.quote-button:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}


/* MOBILE MENU */

.mobile-menu-button {
    display: none;
    width: 45px;
    height: 45px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--navy);
}

.mobile-menu {
    display: none;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb {
    padding: 16px 0;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}

.breadcrumb .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    color: #8994a5;
    font-size: 10px;
}

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


/* =========================================================
   HERO
========================================================= */

.hero {
    padding: 90px 0 105px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(23, 104, 229, 0.09),
            transparent 30%
        ),
        var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
    gap: 80px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--blue);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
}

.hero h1 {
    max-width: 720px;
    margin-top: 22px;

    color: var(--navy);

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -2.5px;
}

.hero h1 strong {
    display: block;
    color: var(--blue);
}

.hero-content > p {
    max-width: 620px;
    margin-top: 24px;

    color: var(--text);
    font-size: 15px;
}

.hero-buttons {
    display: flex;
    gap: 13px;
    margin-top: 33px;
}

.primary-button,
.secondary-button {
    min-height: 55px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    padding: 0 23px;

    border-radius: 11px;

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

    transition: 0.25s ease;
}

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

    box-shadow:
        0 15px 35px
        rgba(23, 104, 229, 0.22);
}

.secondary-button {
    border: 1px solid var(--border);
    color: var(--navy);
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-3px);
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    margin-top: 48px;
}

.hero-points div {
    padding-left: 14px;
    border-left: 2px solid #d9e7ff;
}

.hero-points strong {
    display: block;
    color: var(--blue);
    font-size: 10px;
}

.hero-points span {
    display: block;
    margin-top: 4px;
    color: #788496;
    font-size: 10px;
}


/* HERO IMAGE */

.hero-visual {
    position: relative;
}

.hero-image-frame {
    padding: 12px;
    border-radius: 26px;
    background: var(--white);

    box-shadow:
        0 35px 80px
        rgba(7, 26, 51, 0.14);
}

.hero-image-frame img {
    width: 100%;
    min-height: 530px;
    object-fit: cover;
    border-radius: 18px;
}

.hero-floating-card {
    position: absolute;
    left: -35px;
    bottom: 38px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 16px 20px;

    border-radius: 13px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 20px 50px
        rgba(7, 26, 51, 0.16);
}

.floating-check {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 10px;
    background: #e8f8ef;
    color: #1d9b62;
    font-weight: 800;
}

.hero-floating-card strong {
    display: block;
    color: var(--navy);
    font-size: 10px;
}

.hero-floating-card small {
    display: block;
    margin-top: 3px;
    color: #8b96a5;
    font-size: 8px;
}


/* =========================================================
   GENERAL
========================================================= */

.section {
    padding: 110px 0;
}

.section h2 {
    color: var(--navy);
    font-size: clamp(30px, 4vw, 47px);
    line-height: 1.2;
    letter-spacing: -1.5px;
}


/* INTRO */

.content-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
}

.rich-content {
    max-width: 670px;
}

.rich-content p {
    color: var(--text);
    font-size: 14px;
}

.rich-content p + p {
    margin-top: 17px;
}

.rich-content .lead {
    color: var(--heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
}


/* =========================================================
   ADVANTAGES
========================================================= */

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

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.section-header > div {
    max-width: 700px;
}

.section-header > p {
    max-width: 350px;
    color: var(--text);
    font-size: 13px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 60px;
}

.advantages-grid article {
    min-height: 260px;
    padding: 30px;

    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);

    transition: 0.25s ease;
}

.advantages-grid article:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.advantages-grid span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}

.advantages-grid h3 {
    margin-top: 42px;
    color: var(--navy);
    font-size: 17px;
}

.advantages-grid p {
    margin-top: 11px;
    color: var(--text);
    font-size: 12px;
}


/* =========================================================
   USE CASES
========================================================= */

.use-case-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}

.use-case-navigation {
    position: sticky;
    top: 130px;
    align-self: start;
}

.use-case-navigation p {
    margin-top: 20px;
    color: var(--text);
    font-size: 13px;
}

.use-case-list {
    border-top: 1px solid var(--border);
}

.use-case-list article {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;

    padding: 29px 0;

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

.use-case-list article > span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.use-case-list h3 {
    color: var(--navy);
    font-size: 19px;
}

.use-case-list p {
    margin-top: 7px;
    color: var(--text);
    font-size: 12px;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: var(--navy);
}

.process-heading {
    max-width: 680px;
}

.process-section h2 {
    color: var(--white);
}

.process-heading p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.60);
    font-size: 13px;
}

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

    margin-top: 65px;

    background: rgba(255, 255, 255, 0.08);
}

.process-grid article {
    min-height: 250px;
    padding: 30px;

    background: rgba(255, 255, 255, 0.025);
}

.step-number {
    width: 45px;
    height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.18);

    color: #78b6ff;

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

.process-grid h3 {
    margin-top: 38px;
    color: var(--white);
    font-size: 16px;
}

.process-grid p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
}


/* =========================================================
   SEO CONTENT
========================================================= */

.seo-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}

.seo-layout article + article {
    padding-left: 70px;
    border-left: 1px solid var(--border);
}

.seo-layout h2 {
    font-size: 30px;
}

.seo-layout p {
    margin-top: 17px;
    color: var(--text);
    font-size: 13px;
}


/* =========================================================
   FAQ
========================================================= */

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

.faq-container {
    max-width: 900px;
}

.faq-heading {
    max-width: 650px;
}

.faq-list {
    margin-top: 48px;
}

.faq-list details {
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.faq-list summary {
    position: relative;
    padding-right: 35px;

    list-style: none;

    color: var(--navy);

    cursor: pointer;

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

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";

    position: absolute;
    right: 0;

    color: var(--blue);

    font-size: 23px;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list p {
    max-width: 760px;
    margin-top: 15px;
    color: var(--text);
    font-size: 12px;
}


/* =========================================================
   CTA
========================================================= */

.final-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            #0a56cf
        );

    color: var(--white);
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.final-cta-inner > div:first-child {
    max-width: 720px;
}

.final-cta-inner span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.final-cta h2 {
    margin-top: 12px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.2;
}

.final-cta p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

.final-cta-actions {
    min-width: 230px;

    display: flex;
    flex-direction: column;
    gap: 13px;
}

.final-cta-actions a:first-child {
    min-height: 54px;

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

    border-radius: 10px;

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

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

.final-cta-actions a:last-child {
    text-align: center;
    font-size: 17px;
    font-weight: 800;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding-top: 80px;
    background: #05152b;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 55px;

    padding-bottom: 70px;
}

.footer-logo img {
    width: 190px;
    height: auto;
}

.footer-brand > p {
    max-width: 350px;
    margin-top: 25px;

    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
}

.footer-contact {
    margin-top: 30px;
    padding-left: 16px;
    border-left: 2px solid var(--blue);
}

.footer-contact span {
    display: block;

    color: rgba(255, 255, 255, 0.40);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-contact a {
    display: inline-block;
    margin-top: 4px;

    font-size: 17px;
    font-weight: 800;
}

.footer-column h3 {
    margin-bottom: 21px;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column li a {
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
    transition: 0.2s ease;
}

.footer-column li a:hover {
    color: var(--white);
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.footer-tags a {
    padding: 6px 9px;
    border-radius: 6px;

    background: rgba(255, 255, 255, 0.05);

    color: rgba(255, 255, 255, 0.58);

    font-size: 9px;
}


/* FOOTER SEO */

.footer-seo {
    padding: 25px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.footer-seo p {
    max-width: 1100px;

    color: rgba(255, 255, 255, 0.42);

    font-size: 10px;
}

.footer-seo strong {
    color: rgba(255, 255, 255, 0.75);
}


/* FOOTER BOTTOM */

.footer-bottom {
    padding: 25px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.42);
    font-size: 9px;
}

.footer-bottom-inner > div {
    display: flex;
    gap: 20px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1150px) {

    .desktop-nav {
        gap: 18px;
    }

    .phone-link {
        display: none;
    }

    .hero-grid,
    .content-grid,
    .use-case-layout {
        gap: 60px;
    }

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

}


@media (max-width: 900px) {

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-button {
        display: block;
        margin-left: auto;
    }

    .mobile-menu.active {
        display: flex;
        flex-direction: column;

        padding: 10px 24px 25px;

        border-top: 1px solid var(--border);
        background: var(--white);
    }

    .mobile-menu > a,
    .mobile-services {
        width: 100%;

        padding: 14px 0;

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

        background: transparent;

        text-align: left;

        color: var(--navy);

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

    .mobile-services {
        display: flex;
        justify-content: space-between;
        cursor: pointer;
    }

    .mobile-services-links {
        display: none;
        padding-left: 15px;
    }

    .mobile-services-links.active {
        display: flex;
        flex-direction: column;
    }

    .mobile-services-links a {
        padding: 10px 0;
        color: var(--text);
        font-size: 12px;
    }

    .mobile-quote {
        margin-top: 18px;
        padding: 15px !important;

        border-radius: 9px;
        background: var(--blue) !important;

        color: var(--white) !important;
        text-align: center !important;
    }

    .hero-grid,
    .content-grid,
    .use-case-layout,
    .seo-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 70px 0 85px;
    }

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

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

    .use-case-navigation {
        position: static;
    }

    .seo-layout article + article {
        padding-left: 0;
        padding-top: 60px;

        border-left: 0;
        border-top: 1px solid var(--border);
    }

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

}


@media (max-width: 600px) {

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

    .topbar p {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }

    .logo img {
        width: 160px;
    }

    .hero h1 {
        font-size: 39px;
        letter-spacing: -1.5px;
    }

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

    .hero-buttons a {
        width: 100%;
    }

    .hero-points {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-image-frame img {
        min-height: 350px;
    }

    .hero-floating-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 15px;
    }

    .section {
        padding: 75px 0;
    }

    .advantages-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .final-cta-actions {
        width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

}