
/* =========================================================
   VIP KARGO KURYE
   GİZLİLİK POLİTİKASI CSS
========================================================= */

:root {
    --primary: #0b1f3a;
    --primary-light: #123866;
    --accent: #f5b400;
    --accent-dark: #d99c00;

    --white: #ffffff;
    --text: #1b2735;
    --muted: #687587;

    --bg: #f5f7fa;
    --border: #e4e9ef;

    --shadow: 0 18px 50px rgba(11, 31, 58, .08);

    --radius: 18px;
    --container: 1180px;
}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--bg);

    line-height: 1.7;
}

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

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

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

    margin-inline: auto;
}


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

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);

    position: sticky;
    top: 0;

    z-index: 1000;
}

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

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

    gap: 30px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 175px;
}

.logo-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

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

    border-radius: 13px;

    font-size: 22px;

    box-shadow:
        0 8px 20px rgba(11, 31, 58, .15);
}

.logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1.05;
}

.logo-text strong {
    color: var(--primary);
    font-size: 18px;
    letter-spacing: .8px;
}

.logo-text small {
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* NAV */

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

.main-nav a {
    color: #465365;
    font-size: 14px;
    font-weight: 600;

    transition:
        color .25s ease,
        transform .25s ease;
}

.main-nav a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}


/* PHONE */

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

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

    padding: 11px 16px;
    border-radius: 12px;

    font-weight: 700;
}

.header-phone > span:first-child {
    color: var(--accent);
    font-size: 20px;
}

.header-phone span:last-child {
    display: flex;
    flex-direction: column;

    line-height: 1.15;
}

.header-phone small {
    font-size: 10px;
    color: #b9c6d6;
    margin-bottom: 3px;
}


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

.page-hero {
    position: relative;

    background:
        linear-gradient(
            135deg,
            #07182e 0%,
            #0b1f3a 55%,
            #123866 100%
        );

    color: var(--white);

    padding: 82px 0 76px;

    overflow: hidden;
}

.page-hero::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -160px;
    top: -200px;

    border-radius: 50%;

    border: 70px solid
        rgba(245, 180, 0, .08);
}

.hero-kicker {
    display: inline-block;

    color: var(--accent);

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

    letter-spacing: 2px;

    margin-bottom: 13px;
}

.page-hero h1 {
    position: relative;
    z-index: 2;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.08;

    margin-bottom: 18px;

    letter-spacing: -.8px;
}

.page-hero p {
    position: relative;
    z-index: 2;

    max-width: 690px;

    color: #d1dae6;

    font-size: 17px;
}

.breadcrumb {
    position: relative;
    z-index: 2;

    margin-top: 28px;

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

    color: #aebdce;

    font-size: 13px;
}

.breadcrumb a {
    color: var(--accent);
    font-weight: 700;
}


/* =========================================================
   MAIN
========================================================= */

.privacy-page {
    padding: 70px 0 90px;
}

.privacy-layout {
    display: grid;

    grid-template-columns:
        285px minmax(0, 1fr);

    gap: 48px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.privacy-sidebar {
    position: sticky;
    top: 110px;
}

.sidebar-card {
    background: var(--white);

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

    border-radius: var(--radius);

    padding: 27px;

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

.sidebar-label {
    color: var(--accent-dark);

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

    letter-spacing: 1.8px;
}

.sidebar-card h2 {
    color: var(--primary);

    font-size: 21px;

    margin: 7px 0 20px;
}

.sidebar-card nav {
    display: flex;
    flex-direction: column;
}

.sidebar-card nav a {
    padding: 10px 0;

    color: var(--muted);

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

    border-bottom: 1px solid
        rgba(228, 233, 239, .7);

    transition:
        color .2s ease,
        padding-left .2s ease;
}

.sidebar-card nav a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.security-box {
    margin-top: 18px;

    padding: 23px;

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            #fffdf5,
            #fff8dc
        );

    border: 1px solid
        rgba(245, 180, 0, .25);
}

.security-icon {
    display: block;

    font-size: 25px;

    margin-bottom: 8px;
}

.security-box strong {
    display: block;

    color: var(--primary);

    margin-bottom: 7px;
}

.security-box p {
    color: #667080;

    font-size: 13px;
}


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

.privacy-content {
    min-width: 0;

    background: var(--white);

    border-radius: 22px;

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

    box-shadow: var(--shadow);

    padding: clamp(28px, 5vw, 58px);
}

.content-intro {
    padding-bottom: 35px;

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

.section-kicker {
    display: inline-block;

    color: var(--accent-dark);

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

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.content-intro h2 {
    color: var(--primary);

    font-size: clamp(28px, 3vw, 38px);

    line-height: 1.2;

    margin-bottom: 17px;
}

.content-intro p,
.privacy-section p {
    color: #596779;

    font-size: 15px;

    margin-bottom: 15px;
}


/* =========================================================
   SECTIONS
========================================================= */

.privacy-section {
    display: grid;

    grid-template-columns: 54px minmax(0, 1fr);

    gap: 23px;

    padding: 42px 0;

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

    scroll-margin-top: 110px;
}

.section-number {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    background: #f2f5f8;

    color: var(--primary);

    border-radius: 13px;

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

.privacy-section h2 {
    color: var(--primary);

    font-size: 25px;

    line-height: 1.3;

    margin-bottom: 17px;
}

.privacy-section h3 {
    color: var(--primary);

    font-size: 18px;

    margin: 25px 0 12px;
}


/* =========================================================
   LIST
========================================================= */

.privacy-list {
    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 11px;

    margin-top: 18px;
}

.privacy-list li {
    position: relative;

    padding-left: 28px;

    color: #596779;

    font-size: 14px;
}

.privacy-list li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 1px;

    width: 19px;
    height: 19px;

    display: grid;
    place-items: center;

    background: rgba(245, 180, 0, .13);

    color: var(--accent-dark);

    border-radius: 50%;

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


/* =========================================================
   NOTES
========================================================= */

.info-note,
.legal-note {
    margin-top: 24px;

    padding: 20px 22px;

    background: #f7f9fb;

    border-left: 4px solid var(--accent);

    border-radius: 0 12px 12px 0;
}

.info-note strong,
.legal-note strong {
    display: block;

    color: var(--primary);

    margin-bottom: 5px;
}

.info-note p,
.legal-note p {
    margin: 0;

    font-size: 13px;
}


/* =========================================================
   COOKIE CARDS
========================================================= */

.cookie-grid {
    display: grid;

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

    gap: 15px;

    margin: 22px 0;
}

.cookie-card {
    padding: 21px;

    background: #f8fafc;

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

    border-radius: 14px;
}

.cookie-card > span {
    display: inline-block;

    color: var(--accent-dark);

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

    margin-bottom: 9px;
}

.cookie-card h4 {
    color: var(--primary);

    font-size: 15px;

    margin-bottom: 7px;
}

.cookie-card p {
    font-size: 12px;

    margin: 0;
}


/* =========================================================
   CONTACT CARD
========================================================= */

.contact-card {
    display: grid;

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

    gap: 14px;

    margin-top: 25px;
}

.contact-item {
    display: flex;

    gap: 12px;

    padding: 18px;

    background: #f8fafc;

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

    border-radius: 14px;
}

.contact-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;
    place-items: center;

    background: var(--primary);

    color: var(--accent);

    border-radius: 10px;
}

.contact-item small {
    display: block;

    color: #7b8796;

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

    margin-bottom: 3px;
}

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

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

    word-break: break-word;
}

.contact-item a:hover {
    color: var(--accent-dark);
}


/* =========================================================
   UPDATE
========================================================= */

.policy-update {
    display: flex;

    gap: 17px;

    margin-top: 38px;

    padding: 23px;

    background:
        linear-gradient(
            135deg,
            #f7f9fc,
            #ffffff
        );

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

    border-radius: 16px;
}

.update-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;
    place-items: center;

    background: var(--primary);

    color: var(--accent);

    border-radius: 50%;

    font-weight: 900;
}

.policy-update strong {
    color: var(--primary);
}

.policy-update p {
    color: var(--muted);

    font-size: 13px;

    margin-top: 5px;
}



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

.privacy-cta {
    padding: 70px 0;

    background:
        linear-gradient(
            135deg,
            #081a31,
            #0e2e54
        );

    color: var(--white);
}

.cta-inner {
    display: flex;

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

    gap: 40px;
}

.cta-kicker {
    color: var(--accent);

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

    letter-spacing: 2px;
}

.cta-inner h2 {
    max-width: 650px;

    font-size: clamp(28px, 4vw, 42px);

    line-height: 1.2;

    margin: 8px 0 13px;
}

.cta-inner p {
    max-width: 650px;

    color: #c1ccda;

    font-size: 15px;
}

.cta-actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    min-width: 290px;
}

.btn {
    display: inline-flex;

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

    padding: 14px 20px;

    border-radius: 11px;

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

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
    color: #172334;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .15);
}

.btn-whatsapp {
    background: rgba(255,255,255,.08);

    border: 1px solid
        rgba(255,255,255,.18);

    color: var(--white);
}


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

.site-footer {
    background: #061426;

    color: #aebdce;
}

.footer-grid {
    display: grid;

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

    gap: 45px;

    padding: 65px 0 50px;
}

.footer-logo {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 17px;
}

.footer-logo .logo-icon {
    width: 42px;
    height: 42px;
}

.footer-logo span:last-child {
    display: flex;

    flex-direction: column;

    line-height: 1.1;
}

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

    font-size: 17px;
}

.footer-logo small {
    color: var(--accent);

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

    letter-spacing: 2px;
}

.footer-brand p {
    max-width: 330px;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 18px;
}

.footer-phone {
    color: var(--accent);

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

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 9px;
}

.footer-column h3 {
    color: var(--white);

    font-size: 15px;

    margin-bottom: 8px;
}

.footer-column a,
.footer-column p {
    color: #9eafc1;

    font-size: 13px;

    transition: color .2s ease;
}

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

.footer-whatsapp {
    color: var(--accent) !important;

    font-weight: 800;
}

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

.footer-bottom-inner {
    min-height: 75px;

    display: flex;

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

    gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
    color: #778a9f;

    font-size: 11px;
}

.footer-bottom-inner > div {
    display: flex;

    gap: 18px;
}


/* =========================================================
   WHATSAPP FLOAT
========================================================= */

.whatsapp-float {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 2000;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px 15px;

    background: #168b57;

    color: var(--white);

    border-radius: 50px;

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

.whatsapp-float span {
    font-size: 20px;
}

.whatsapp-float small {
    font-size: 11px;
    font-weight: 800;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
}


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

@media (max-width: 1050px) {

    .main-nav {
        gap: 13px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .privacy-layout {
        grid-template-columns:
            240px minmax(0, 1fr);

        gap: 28px;
    }

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


@media (max-width: 850px) {

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

    .main-nav {
        display: none;
    }

    .privacy-layout {
        display: block;
    }

    .privacy-sidebar {
        position: static;

        margin-bottom: 25px;
    }

    .sidebar-card nav {
        display: grid;

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

        column-gap: 20px;
    }

    .security-box {
        display: none;
    }

    .cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .cta-actions {
        min-width: 0;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

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


@media (max-width: 600px) {

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

    .header-phone {
        padding: 9px 11px;
    }

    .header-phone span:last-child {
        font-size: 11px;
    }

    .header-phone small {
        display: none;
    }

    .page-hero {
        padding: 55px 0 52px;
    }

    .page-hero h1 {
        font-size: 39px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .privacy-page {
        padding: 35px 0 55px;
    }

    .privacy-content {
        padding: 25px 19px;
        border-radius: 17px;
    }

    .sidebar-card {
        padding: 20px;
    }

    .sidebar-card nav {
        grid-template-columns: 1fr;
    }

    .privacy-section {
        grid-template-columns: 1fr;

        gap: 13px;

        padding: 32px 0;
    }

    .section-number {
        width: 42px;
        height: 42px;
    }

    .privacy-section h2 {
        font-size: 22px;
    }

    .content-intro h2 {
        font-size: 28px;
    }

    .privacy-section p {
        font-size: 14px;
    }

    .cta-actions {
        width: 100%;

        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 32px;

        padding: 45px 0;
    }

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

        justify-content: center;

        text-align: center;

        padding: 18px 0;
    }

    .footer-bottom-inner > div {
        flex-wrap: wrap;

        justify-content: center;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
    }
}


@media (max-width: 400px) {

    .logo-text {
        display: none;
    }

    .header-phone {
        margin-left: auto;
    }

    .page-hero h1 {
        font-size: 34px;
    }
}

/* =========================================================
   MOBİL MENÜ
========================================================= */

.mobile-menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    border-radius: 11px;

    background: var(--primary);

    cursor: pointer;

    padding: 10px;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;

    z-index: 1100;
}

.mobile-menu-btn span {
    display: block;

    width: 22px;
    height: 2px;

    background: var(--white);

    border-radius: 3px;

    transition:
        transform .25s ease,
        opacity .25s ease;
}


/* MENÜ AÇILDIĞINDA */

.mobile-menu-btn.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* MOBİL MENÜ */

.mobile-menu {
    display: none;

    background: var(--white);

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

    box-shadow:
        0 15px 30px rgba(0,0,0,.10);

    position: absolute;

    left: 0;
    right: 0;
    top: 100%;

    z-index: 1050;
}

.mobile-menu nav {
    width: min(
        calc(100% - 28px),
        600px
    );

    margin: auto;

    padding: 12px 0 18px;

    display: flex;

    flex-direction: column;
}

.mobile-menu nav a {
    padding: 14px 8px;

    color: var(--primary);

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

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

    transition:
        background .2s ease,
        padding-left .2s ease;
}

.mobile-menu nav a:hover {
    background: #f5f7fa;

    padding-left: 14px;
}

.mobile-menu .mobile-phone {
    margin-top: 12px;

    text-align: center;

    background: var(--accent);

    color: #172334;

    border: 0;

    border-radius: 10px;

    font-weight: 900;
}


/* AÇIK */

.mobile-menu.open {
    display: block;
}


/* =========================================================
   TABLET / MOBİL
========================================================= */

@media (max-width: 850px) {

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-inner {
        position: relative;
    }

    .header-phone {
        margin-left: auto;
    }

}


/* =========================================================
   KÜÇÜK EKRAN
========================================================= */

@media (max-width: 600px) {

    .header-inner {
        gap: 9px;
    }

    .logo {
        min-width: auto;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
    }

    .header-phone {
        padding: 9px 10px;
    }

}