/* =========================================
   VIP KARGO - ADANA UÇAK KARGO
   adana.css
========================================= */


/* RESET */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #202020;
    background: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-active {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}


/* CONTAINER */

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


/* GENERAL */

.section {
    padding: 95px 0;
}

.light-section {
    background: #f6f7f9;
}

.section-kicker {
    display: inline-block;
    color: #d71920;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 55px;
}

.section-heading.center {
    text-align: center;
}

.section-heading h2,
.content-block h2,
.route-content h2,
.contact-information h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.2;
    margin-bottom: 20px;
    color: #151515;
}

.section-heading p {
    color: #666;
    font-size: 17px;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

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

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

.menu-link,
.mega-toggle {
    background: none;
    border: 0;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.menu-link:hover,
.mega-toggle:hover {
    color: #d71920;
}

.nav-dropdown {
    position: relative;
}

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

.mega-arrow {
    transition: transform 0.25s ease;
}

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

.mega-menu {
    position: absolute;
    top: calc(100% + 25px);
    left: -180px;
    width: 760px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.14);
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eeeeee;
}

.mega-menu-head strong {
    font-size: 17px;
}

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

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.mega-menu-grid a {
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.mega-menu-grid a:hover,
.mega-menu-grid .active-city {
    background: #fff0f0;
    color: #d71920;
}

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

.header-phone {
    font-weight: 800;
    white-space: nowrap;
}

.header-whatsapp {
    background: #d71920;
    color: #ffffff;
    padding: 11px 18px;
    border-radius: 8px;
    font-weight: 700;
    white-space: nowrap;
}

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


/* HERO */

.inner-hero {
    min-height: 590px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
}

.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.78),
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.15)
        );
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    font-size: 14px;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: #ffffff;
}

.hero-kicker {
    color: #ffffff;
    border-left: 3px solid #d71920;
    padding-left: 12px;
}

.inner-hero h1 {
    font-size: clamp(45px, 7vw, 76px);
    line-height: 1.05;
    margin-bottom: 22px;
}

.inner-hero p {
    max-width: 700px;
    font-size: 19px;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}

.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 {
    background: #d71920;
    color: #ffffff;
}

.button-primary:hover {
    background: #b91117;
    transform: translateY(-2px);
}

.button-outline {
    border: 1px solid rgba(255,255,255,0.8);
    color: #ffffff;
}

.button-outline:hover {
    background: #ffffff;
    color: #151515;
}


/* INTRO */

.two-column {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 70px;
}

.content-block > p {
    color: #5f5f5f;
    margin-bottom: 18px;
}

.content-image {
    overflow: hidden;
    border-radius: 20px;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.check-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.check-list > div {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.check-list span {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background: #fff0f0;
    color: #d71920;
    border-radius: 50%;
    font-weight: 900;
}

.check-list p {
    color: #555;
}


/* ADVANTAGES */

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

.advantage-card {
    background: #ffffff;
    padding: 32px 27px;
    border-radius: 16px;
    border: 1px solid #e9e9e9;
    transition: 0.25s ease;
}

.advantage-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.advantage-number {
    color: #d71920;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 25px;
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.advantage-card p {
    color: #666;
}


/* PROCESS */

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

.process-card {
    position: relative;
    padding: 30px;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
}

.process-number {
    display: block;
    color: #d71920;
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 28px;
}

.process-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
}

.process-card p {
    color: #666;
}


/* ROUTES */

.route-section {
    background: #151515;
    color: #ffffff;
}

.route-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.route-content h2 {
    color: #ffffff;
    max-width: 850px;
    margin: 0 auto 22px;
}

.route-content > p {
    max-width: 900px;
    margin: 0 auto 15px;
    color: rgba(255,255,255,0.72);
}

.city-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 42px;
}

.city-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    padding: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    font-weight: 700;
    transition: 0.25s ease;
}

.city-links a:hover {
    background: #d71920;
    border-color: #d71920;
    transform: translateY(-4px);
}


/* CARGO TYPES */

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

.cargo-types-grid article {
    background: #ffffff;
    padding: 32px 25px;
    border-radius: 16px;
    border: 1px solid #e7e7e7;
}

.cargo-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff0f0;
    color: #d71920;
    font-size: 25px;
    margin-bottom: 23px;
}

.cargo-types-grid h3 {
    margin-bottom: 12px;
}

.cargo-types-grid p {
    color: #666;
}


/* WHY US */

.why-section {
    background: #ffffff;
}

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

.why-grid article {
    padding: 40px 32px;
    border-left: 4px solid #d71920;
    background: #f7f7f7;
}

.why-grid h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.why-grid p {
    color: #666;
}


/* REVIEWS */

.reviews-section {
    padding: 95px 0;
    background: #f6f7f9;
}

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

.review-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e8e8e8;
}

.review-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #d71920;
    color: #ffffff;
    font-weight: 800;
}

.review-top h3 {
    font-size: 17px;
}

.review-top span {
    font-size: 13px;
    color: #777;
}

.stars {
    color: #d71920;
    letter-spacing: 2px;
    margin: 23px 0 15px;
}

.review-card > p {
    color: #5f5f5f;
}


/* FAQ */

.faq-section {
    padding: 95px 0;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 0 24px;
    background: #ffffff;
}

.faq-card summary {
    padding: 22px 30px 22px 0;
    cursor: pointer;
    font-weight: 800;
    list-style: none;
    position: relative;
}

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

.faq-card summary::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 24px;
    color: #d71920;
}

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

.faq-card p {
    color: #666;
    padding-bottom: 22px;
}


/* CONTACT */

.contact-section {
    padding: 95px 0;
    background: #151515;
    color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.contact-information h2 {
    color: #ffffff;
}

.contact-information > p {
    color: rgba(255,255,255,0.72);
}

.contact-list {
    display: grid;
    gap: 15px;
    margin-top: 32px;
}

.contact-list a {
    display: flex;
    flex-direction: column;
    padding: 17px 20px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
}

.contact-list strong {
    color: #ffffff;
}

.contact-list span {
    color: rgba(255,255,255,0.7);
}

.contact-form {
    background: #ffffff;
    color: #222;
    padding: 38px;
    border-radius: 18px;
}

.contact-form h3 {
    font-size: 26px;
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 17px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 7px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 14px;
    outline: none;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d71920;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-submit {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 8px;
    background: #d71920;
    color: #ffffff;
    font-weight: 800;
    transition: 0.25s ease;
}

.form-submit:hover {
    background: #b91117;
}

.form-note {
    margin-top: 13px;
    text-align: center;
    color: #777;
    font-size: 13px;
}


/* FOOTER */

.site-footer {
    background: #0d0d0d;
    color: #ffffff;
}

.footer-main {
    padding: 75px 0;
}

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

.footer-logo img {
    width: 190px;
    margin-bottom: 20px;
}

.footer-brand > p {
    color: rgba(255,255,255,0.65);
    max-width: 400px;
}

.footer-contact-boxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

.footer-contact-boxes a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 10px;
    font-size: 17px;
}

.footer-column a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}

.footer-column a:hover {
    color: #d71920;
}

.footer-cta {
    background: #d71920;
    padding: 35px 0;
}

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

.footer-cta span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-cta h2 {
    font-size: 27px;
    margin-top: 5px;
}

.footer-cta-buttons {
    display: flex;
    gap: 12px;
}

.footer-call-button,
.footer-whatsapp-button {
    padding: 14px 20px;
    background: #ffffff;
    color: #222;
    border-radius: 8px;
    font-weight: 800;
    white-space: nowrap;
}

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

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
}

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


/* FLOATING WHATSAPP */

.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: #151515;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}


/* MOBILE */

@media (max-width: 1100px) {

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        border: 0;
        background: transparent;
    }

    .mobile-menu-toggle span {
        width: 27px;
        height: 2px;
        background: #222;
    }

    .header-actions {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(390px, 90vw);
        height: 100vh;
        background: #ffffff;
        z-index: 1002;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 25px;
        overflow-y: auto;
        transition: right 0.3s ease;
    }

    .main-nav.open {
        right: 0;
    }

    .mobile-nav-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .mobile-menu-close {
        border: 0;
        background: transparent;
        font-size: 30px;
    }

    .menu-link,
    .mega-toggle {
        width: 100%;
        padding: 16px 0;
        text-align: left;
        border-bottom: 1px solid #eeeeee;
    }

    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 15px 0;
    }

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

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

    .mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 25px;
    }

    .mobile-contact a:first-child {
        font-weight: 800;
        font-size: 20px;
    }

    .mobile-contact a:last-child {
        background: #d71920;
        color: #ffffff;
        padding: 13px;
        text-align: center;
        border-radius: 8px;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.55);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
    }


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

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

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

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

}


@media (max-width: 800px) {

    .section,
    .reviews-section,
    .faq-section,
    .contact-section {
        padding: 70px 0;
    }

    .two-column,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .content-image {
        order: -1;
    }

    .reviews-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

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

}


@media (max-width: 600px) {

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

    .header-inner {
        min-height: 72px;
    }

    .logo img {
        width: 150px;
    }

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

    .inner-hero-overlay {
        background: rgba(0,0,0,0.68);
    }

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

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

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

    .button {
        width: 100%;
    }

    .advantage-grid,
    .process-grid,
    .cargo-types-grid,
    .city-links {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom-inner {
        flex-direction: column;
    }

    .footer-bottom-inner > div {
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .footer-call-button,
    .footer-whatsapp-button {
        text-align: center;
    }

    .floating-whatsapp {
        width: 52px;
        height: 52px;
        right: 18px;
        bottom: 18px;
    }

    .whatsapp-tooltip {
        display: none;
    }

}