@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&family=Quicksand:wght@500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

:root {
    --ink: #101820;
    --muted: #5f6b74;
    --line: rgba(255,255,255,.22);
    --teal: #0a2f67;
    --teal-2: #1c458b;
    --gold: #063a771c;
    --paper: #ffffff;
    --white: #fff;
}

.floating-contact-widget {
    position: fixed;
    top: 48%;
    left: 0;
    z-index: 120;
    font-family: "Quicksand", Arial, sans-serif;
    transform: translateY(-50%);
}

.fc-rail {
    width: 48px;
    display: grid;
    overflow: visible;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 12px 34px rgba(12, 25, 54, .16);
}

.fc-tab {
    width: 48px;
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    transition: width .22s ease, box-shadow .22s ease;
}

.fc-tab span {
    width: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    font-size: 18px;
    /* font-weight: 900; */
}

.fc-tab img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.fc-tab i {
    font-size: 21px;
    line-height: 1;
}

.fc-tab b {
    padding-right: 20px;
    font-size: 14px;
    font-weight: 800;
}

.fc-close-mini {
    width: 48px;
    height: 30px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #060606;
    cursor: pointer;
    border-radius: 0 8px 0 0;
    font-size: 15px;
}

.fc-contact-tab {
    min-height: 148px;
    display: grid;
    grid-template-rows: 28px 1fr;
    gap: 0;
    background: var(--fc-contact);
}

.fc-contact-tab span {
    width: 48px;
    height: 28px;
    align-self: end;
    font-size: 14px;
}

.fc-contact-tab b {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 0;
    place-self: center;
    font-size: 13px;
}

.fc-phone-tab {
    background: var(--fc-phone);
}

.fc-whatsapp-tab {
    background: var(--fc-whatsapp);
    border-radius: 0 0 8px 0;
}

.fc-phone-tab:hover,
.fc-whatsapp-tab:hover {
    width: 170px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .18);
}

.fc-panel {
    position: absolute;
    top: 0;
    left: 48px;
    width: min(396px, calc(100vw - 64px));
    padding: 22px 14px 18px;
    background: #fff;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 20px 58px rgba(15, 23, 42, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-14px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.fc-toggle:checked ~ .fc-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.floating-contact-widget:has(.fc-contact-tab:hover) .fc-panel,
.floating-contact-widget:focus-within .fc-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.fc-panel h3 {
    margin: 0 0 26px;
    padding-right: 32px;
    color: var(--fc-contact);
    font-size: 18px;
    font-weight: 700;
}

.fc-panel-close {
    position: absolute;
    top: 12px;
    right: 16px;
    color: #c9bdb6;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
}

.fc-panel form {
    display: grid;
    gap: 16px;
}

.fc-panel input,
.fc-panel textarea {
    width: 100%;
    border: 1px solid #d9e2e7;
    border-radius: 22px;
    padding: 0 15px;
    color: #374151;
    background: #fff;
    font: 600 13px "Quicksand", Arial, sans-serif;
    outline: 0;
}

.fc-panel input {
    height: 36px;
}

.fc-panel textarea {
    min-height: 90px;
    padding-top: 15px;
    resize: vertical;
}

.fc-panel button {
    min-height: 34px;
    margin-top: 40px;
    border: 0;
    border-radius: 20px;
    background: var(--fc-contact);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.fc-panel .contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

@media (max-width: 760px) {
    .floating-contact-widget {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        transform: none;
    }

    .fc-rail {
        width: 100%;
        display: flex;
        border-radius: 0;
        box-shadow: 0 -10px 28px rgba(12, 25, 54, .16);
    }

    .fc-close-mini {
        width: 40px;
        height: 44px;
        flex: 0 0 40px;
        border-radius: 0;
    }

    .fc-contact-tab {
        display: none;
    }

    .fc-phone-tab,
    .fc-whatsapp-tab,
    .fc-phone-tab:hover,
    .fc-whatsapp-tab:hover {
        width: auto;
        min-height: 44px;
        flex: 1 1 0;
        justify-content: center;
        border-radius: 0;
        box-shadow: none;
    }

    .fc-phone-tab b,
    .fc-whatsapp-tab b {
        display: none;
    }

    .fc-tab span {
        width: auto;
        flex: 0 0 auto;
    }

    .fc-panel {
        left: 0;
        top: auto;
        bottom: 44px;
        width: min(420px, calc(100vw - 16px));
        max-height: calc(100vh - 110px);
        margin-left: 8px;
        overflow-y: auto;
        border-radius: 12px 12px 0 0;
    }

    .floating-contact-widget:has(.fc-contact-tab:hover) .fc-panel {
        opacity: 0;
        visibility: hidden;
        transform: translateX(-14px);
    }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Quicksand", Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
}

body > .skiptranslate,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#google_translate_element,
.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}

body {
    top: 0 !important;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(8px);
    opacity: 1;
    visibility: visible;
    transition: opacity .45s ease, visibility .45s ease;
}

.site-loader img {
    display: block;
    width: min(420px, 86vw);
    height: auto;
    border-radius: 0;
}

body.is-loaded .site-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.goog-text-highlight {
    background: transparent !important;
    box-shadow: none !important;
}

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

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px clamp(20px, 6.6vw, 104px);
    color: var(--white);
    transition: background .25s ease, padding .25s ease;
}

.site-header.is-scrolled {
    background: rgba(10, 47, 103, .94);
    padding-top: 12px;
    padding-bottom: 12px;
    backdrop-filter: blur(14px);
}

.logo {
    width: auto;
    min-height: 0;
    display: grid;
    place-items: center;
    background: transparent;
    color: #fff;
    text-align: center;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.logo.has-image {
    display: inline-flex;
    width: auto;
    min-width: 0;
    min-height: 0;
    padding: 0;
    background: transparent !important;
    box-shadow: none;
}

.logo img {
    display: block;
    width: auto;
    max-width: 240px;
    max-height: 80px;
    object-fit: contain;
}

.logo span { display: block; font-size: 24px; line-height: 1; }
.logo small { display: block; margin-top: 4px; font-size: 11px; letter-spacing: 0; font-weight: 800; }

.main-nav {
    display: flex;
    gap: clamp(18px, 2.2vw, 30px);
    align-items: center;
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.main-nav a {
    position: relative;
    padding: 10px 0;
    white-space: nowrap;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.main-nav a:hover::after { transform: scaleX(1); }

.nav-item {
    position: relative;
}

.nav-item.has-children::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 16px;
}

.nav-item.has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-item.has-children > a::before {
    content: "";
    order: 2;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: .78;
}

.nav-submenu {
    margin-top: 42px;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    display: grid;
    min-width: 176px;
    padding: 0;
    background: #0f336a;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 14px 24px rgba(7, 22, 49, .22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 80;
}

.site-header .nav-submenu {
    margin-top: 22px;
}

.nav-submenu::before {
    display: none;
}

.nav-item:hover > .nav-submenu,
.nav-item:focus-within > .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-submenu a {
    min-height: 39px;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 8px 18px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
    text-shadow: none;
    text-transform: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.nav-submenu a::after {
    display: none;
}

.nav-submenu a::before {
    display: none;
}

.nav-submenu a:hover,
.nav-submenu a.is-current {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.inner-header .nav-submenu a:hover,
.inner-header .nav-submenu a.is-current {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.nav-submenu a:hover::before,
.nav-submenu a.is-current::before {
    display: none;
}

.nav-mega-menu {
    left: -30px;
    width: min(760px, calc(100vw - 44px));
    min-width: 620px;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 22px;
    padding: 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 24px 54px rgba(7, 22, 49, .16);
    transform: translateY(8px);
}

.nav-item:hover > .nav-mega-menu,
.nav-item:focus-within > .nav-mega-menu {
    transform: translateY(0);
}

.nav-mega-card {
    position: relative;
    display: block !important;
    min-height: 190px !important;
    padding: 0 !important;
    overflow: hidden;
    border: 0 !important;
    border-radius: 7px;
    background: #0a2f67;
}

.nav-submenu .nav-mega-card::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 47, 103, .06), rgba(10, 47, 103, .78));
    z-index: 1;
}

.nav-mega-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
}

.nav-mega-card span {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.nav-mega-columns {
    display: grid;
    grid-template-columns: minmax(180px, .85fr) minmax(220px, 1.15fr);
    gap: 18px;
}

.nav-mega-type2:has(.nav-mega-column:nth-child(2)) {
    width: min(800px, calc(100vw - 44px));
}

.nav-mega-type2 .nav-mega-columns {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.nav-mega-type2 .nav-mega-columns.has-side-text {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.nav-mega-column {
    min-width: 0;
    padding: 8px 12px 4px 0;
    border-right: 3px solid #d8e2ee;
}

.nav-mega-column:last-child {
    border-right: 0;
}

.nav-mega-side-text {
    min-width: 0;
    padding: 5px 14px 10px 1px;
    color: #111827;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    text-transform: none;
}

.nav-mega-column h3 {
    margin: 0 0 12px;
    color: #0a2f67;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
}

.nav-mega-sections .nav-mega-columns {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.nav-mega-column h3 a {
    display: block;
    min-height: 0;
    padding: 0 0 14px;
    color: #0a2f67;
    border: 0;
    font-size: inherit;
    font-weight: 900;
}

.nav-mega-column h3 a::before {
    display: none;
}

.nav-mega-column a {
    min-height: 34px;
    padding: 0;
    color: #16468b;
    border-top: 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 12px;
    font-weight: 700;
}

.nav-submenu .nav-mega-column a::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    margin-right: 8px;
    border-radius: 50%;
    background: #9db6d9;
}

.nav-mega-column a:hover,
.nav-mega-column a.is-current,
.inner-header .nav-mega-column a:hover,
.inner-header .nav-mega-column a.is-current {
    background: transparent;
    color: #0a2f67;
}

.lang-switcher {
    position: relative;
    margin-left: 10px;
    flex: 0 0 auto;
    z-index: 120;
}

.lang-switcher summary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 94px;
    min-height: 42px;
    padding: 0 14px 0 12px;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 10px;
    background: rgba(6, 24, 55, .38);
    color: #fff;
    cursor: pointer;
    list-style: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.lang-switcher summary::-webkit-details-marker {
    display: none;
}

.lang-switcher[open] summary {
    background: rgba(8, 31, 71, .82);
    border-color: rgba(255,255,255,.4);
}

.lang-flag {
    position: relative;
    width: 28px;
    height: 20px;
    flex: 0 0 28px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0,0,0,.15);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang-flag.is-tr {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 20'%3E%3Crect width='28' height='20' rx='2' fill='%23E11D2E'/%3E%3Ccircle cx='11' cy='10' r='5' fill='%23fff'/%3E%3Ccircle cx='12.3' cy='10' r='4' fill='%23E11D2E'/%3E%3Cpath d='M16.8 10l4.03-1.31-2.49 3.43v-4.24l2.49 3.43z' fill='%23fff'/%3E%3C/svg%3E");
}

.lang-flag.is-en {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 20'%3E%3Crect width='28' height='20' rx='2' fill='%230B3A82'/%3E%3Cpath d='M0 0l28 20M28 0L0 20' stroke='%23fff' stroke-width='4'/%3E%3Cpath d='M0 0l28 20M28 0L0 20' stroke='%23D91F26' stroke-width='2'/%3E%3Cpath d='M14 0v20M0 10h28' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M14 0v20M0 10h28' stroke='%23D91F26' stroke-width='3'/%3E%3C/svg%3E");
}

.lang-code,
.lang-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
}

.lang-arrow {
    margin-left: auto;
    font-size: 11px;
    opacity: .9;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 102px;
    display: grid;
    gap: 2px;
    padding: 8px 0;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 12px;
    box-shadow: 0 18px 34px rgba(2, 16, 38, .16);
    z-index: 140;
}

.lang-menu a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 0;
    color: #0f172a;
    text-shadow: none;
}

.lang-menu a::after {
    display: none;
}

.lang-menu a:hover,
.lang-menu a.is-active {
    background: #f8fafc;
}

.lang-menu a + a {
    border-top: 1px solid #eef2f7;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: rgba(0,0,0,.18);
    color: var(--white);
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

.hero {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    background: #092533;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s ease;
    background-image:
        linear-gradient(90deg, rgba(8, 25, 58, .86), rgba(10, 47, 103, .45) 46%, rgba(9, 19, 34, .68)),
        linear-gradient(0deg, rgba(0,0,0,.54), rgba(0,0,0,.08) 44%),
        var(--bg);
    background-size: cover;
    background-position: center;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide.has-video {
    background-color: #08193a;
    background-image:
        linear-gradient(90deg, rgba(8, 25, 58, .86), rgba(10, 47, 103, .45) 46%, rgba(9, 19, 34, .68)),
        url('/assets/img/hero-customs.png');
    background-size: cover;
    background-position: center;
}

.hero-slide.has-video::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 25, 58, .86), rgba(10, 47, 103, .45) 46%, rgba(9, 19, 34, .68)),
        linear-gradient(0deg, rgba(0,0,0,.54), rgba(0,0,0,.08) 44%);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-copy {
    position: absolute;
    z-index: 2;
    left: clamp(24px, 12vw, 155px);
    bottom: clamp(132px, 16vh, 200px);
    max-width: 720px;
    color: var(--white);
}

.hero-copy p {
    margin: 0 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
}

.hero-copy p::before {
    content: "";
    width: 38px;
    height: 3px;
    background: currentColor;
}

.hero-copy h1 {
    margin: 0;
    max-width: 700px;
    font-family: "Quicksand", Arial, sans-serif;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1;
    letter-spacing: 0;
    font-weight: 900;
    text-shadow: 0 8px 26px rgba(0,0,0,.34);
}

.hero-copy span {
    display: block;
    margin-top: 22px;
    max-width: 640px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(16px, 1.55vw, 20px);
    line-height: 1.45;
    font-weight: 600;
    color: rgba(255,255,255,.88);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 28px;
    padding: 0 24px;
    background: var(--gold);
    color: #ffffff;
    font-family: "Quicksand", Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 14px 38px rgba(0,0,0,.22);
}

.slide-dots {
    position: absolute;
    z-index: 4;
    right: clamp(18px, 3vw, 42px);
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    gap: 11px;
}

.slide-dots button {
    width: 54px;
    height: 54px;
    padding: 4px;
    border: 2px solid rgba(255,255,255,.66);
    border-radius: 50%;
    background: rgba(10,47,103,.42);
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.slide-dots button.is-active {
    border-color: var(--gold);
    background: rgba(255,255,255,.24);
    transform: scale(1.08);
}
.slide-dots span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.slide-dots .is-video-thumb {
    position: relative;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #102a34, #1c458b);
}

.slide-dots .is-video-thumb::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid #fff;
    margin-left: 3px;
}

.quick-menu {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(1080px, calc(100% - 40px));
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(10, 47, 103, .96);
    box-shadow: 0 -12px 34px rgba(0,0,0,.16);
}

.quick-menu a {
    min-height: 76px;
    display: grid;
    place-items: center;
    gap: 6px;
    color: var(--white);
    border-left: 1px solid rgba(255,255,255,.28);
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}
.quick-menu a:first-child { border-left: 0; }
.quick-menu svg { width: 24px; height: 24px; }

.section {
    padding: clamp(60px, 8vw, 1px) clamp(3px, 8vw, 116px);
}

.split {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(280px, 1.2fr);
    gap: clamp(28px, 6vw, 90px);
    align-items: start;
    background: var(--white);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--teal-2);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

h2 {
    margin: 0;
    font-family: "Quicksand", Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(31px, 4vw, 54px);
    line-height: 1.05;
}

.split > p,
.section-lead,
.contact p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.7;
}

.about-home {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(300px, 522px);
    gap: clamp(34px, 7vw, 96px);
    align-items: center;
    min-height: 0;
    background:
        radial-gradient(ellipse at -9% 88%, rgb(115 120 164 / 12%) 0 28%, transparent 29%),
        radial-gradient(ellipse at 110% 18%, rgba(196, 173, 100, .11) 0 24%, transparent 25%),
        #faf8f5;
    overflow: hidden;
}

.about-home::before,
.about-home::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 620px;
    pointer-events: none;
    opacity: .44;
    background: repeating-radial-gradient(ellipse at center, transparent 0 9px, rgba(196, 173, 100, .52) 10px 12px, transparent 13px 18px);
}

.about-home::before {
    left: -240px;
    bottom: -260px;
}

.about-home::after {
    right: -230px;
    top: 44px;
}

.about-copy,
.about-media {
    position: relative;
    z-index: 1;
}

.about-copy {
    max-width: 760px;
}

.about-copy h2 {
    margin: 0 0 42px;
    color: #241b17;
    font-family: "Quicksand", Arial, sans-serif;
    font-size: clamp(44px, 6vw, 72px);
    line-height: .95;
    font-weight: 900;
}

.about-copy h3 {
    margin: 22px 0 8px;
    color: #3b322d;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.25;
    font-weight: 500;
}

.about-copy p {
    margin: 0;
    color: #5e5b58;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    line-height: 2.05;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-width: 226px;
    min-height: 56px;
    margin-top: 24px;
    padding: 0 30px;
    background: rgb(20 74 155);
    color: #fff;
    font-family: "Quicksand", Arial, sans-serif;
    font-weight: 900;
}

.about-cta span {
    font-size: 26px;
    line-height: 1;
}

.about-media {
    justify-self: end;
    width: min(100%, 522px);
}

.about-media::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    height: 18px;
    background: #d8843f;
    transform: skewY(9deg);
    transform-origin: left top;
    z-index: 2;
}

.about-media img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 22px 46px rgba(38, 30, 20, .13);
}

.about-home-card {
    width: min(1400px, calc(100% - 40px));
    grid-template-columns: minmax(420px, 1.22fr) minmax(320px, 430px);
    gap: clamp(32px, 5vw, 78px);
    margin: clamp(22px, 3.2vw, 34px) auto clamp(18px, 3vw, 28px);
    padding: clamp(34px, 4.5vw, 46px) clamp(30px, 4vw, 42px);
    border-radius: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,252,255,.98));
    box-shadow: none;
}

.about-home-card::before,
.about-home-card::after {
    width: 260px;
    height: 430px;
    opacity: .1;
    background: repeating-linear-gradient(135deg, transparent 0 12px, rgba(21, 89, 164, .18) 13px 14px, transparent 15px 22px);
}

.about-home-card::before {
    left: -175px;
    bottom: -150px;
}

.about-home-card::after {
    right: -190px;
    top: -96px;
}

.about-home-card .about-copy {
    max-width: 100%;
    padding-top: 8px;
}

.about-home-card .about-copy h2 {
    margin: 0 0 14px;
    color: #173f7b;
    font-size: clamp(42px, 5.3vw, 40px);
    line-height: 1;
    letter-spacing: 0;
}

.about-home-card .about-copy > p:first-of-type {
    max-width: 720px;
    margin: 0 0 28px;
    color: #2a3948;
    font-size: 15px;
    line-height: 1.48;
    font-weight: 800;
}

.about-home-card .about-copy h3 {
    position: relative;
    margin: 0;
    padding-left: 60px;
    color: #1f2937;
    font-size: clamp(18px, 2.2vw, 1px);
    line-height: 1.22;
    font-weight: 600;
}

.about-home-card .about-copy h3::before,
.about-home-card .about-copy h3::after {
    content: "";
    position: absolute;
    left: 0;
}

.about-home-card .about-copy h3::before {
    top: 0;
    width: 36px;
    height: 36px;
    border: 2px solid #2d5b97;
    border-radius: 9px;
    opacity: .95;
}

.about-home-card .about-copy h3::after {
    top: 10px;
    width: 20px;
    height: 2px;
    left: 8px;
    background: #2d5b97;
    box-shadow: 0 -6px 0 #2d5b97, 0 6px 0 #2d5b97;
}

.about-home-card .about-copy h3:nth-of-type(2)::before {
    border-radius: 50%;
}

.about-home-card .about-copy h3:nth-of-type(2)::after {
    width: 18px;
    height: 18px;
    left: 9px;
    top: 9px;
    border: 2px solid #2d5b97;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
}

.about-home-card .about-copy h3:nth-of-type(3)::after {
    width: 20px;
    height: 16px;
    left: 8px;
    top: 10px;
    background: transparent;
    border-left: 2px solid #2d5b97;
    border-right: 2px solid #2d5b97;
    box-shadow: 6px -4px 0 -4px #2d5b97, -6px -4px 0 -4px #2d5b97;
}

.about-home-card .about-copy h3 + p {
    margin: 7px 0 18px 60px;
    max-width: 620px;
    color: #3e4955;
    font-size: 15px;
    line-height: 1.48;
}

.about-home-card .about-cta {
    min-width: 194px;
    min-height: 48px;
    margin-top: 14px;
    padding: 0 24px;
    border-radius: 8px;
    background: #1f63b0;
    box-shadow: 0 14px 28px rgba(31, 99, 176, .18);
}

.about-home-card .about-media {
    align-self: center;
    justify-self: end;
    width: min(100%, 430px);
    padding: 10px;
    border: 3px solid rgba(199, 167, 102, .84);
    background: #fff;
    box-shadow: inset 0 0 0 2px rgba(199, 167, 102, .34);
}

.about-home-card .about-media::before {
    display: none;
}

.about-home-card .about-media img {
    aspect-ratio: 4 / 5;
    border-radius: 0;
    box-shadow: none;
}

.services {
    width: min(1400px, calc(100% - 40px));
    margin-inline: auto;
    padding-inline: 0;
    background: #fff;
    overflow: hidden;
}

.services-head {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 42px;
}

.section-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.services h2 {
    color: #0a2f67;
    font-size: clamp(28px, 3vw, 42px);
    text-transform: uppercase;
}

.services-head p {
    max-width: 620px;
    margin: 12px 0 0;
    color: #0a2f67;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.service-arrows {
    display: inline-flex;
    gap: 8px;
}

.service-arrows button,
.services-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    font-family: "Quicksand", Arial, sans-serif;
    font-weight: 900;
    cursor: pointer;
}

.service-arrows button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #144a9b;
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

.service-arrows button + button {
    background: #91a8cd;
}

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

.services-actions a {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 7px;
    border: 1px solid #144a9b;
    color: #144a9b;
    text-transform: uppercase;
    font-size: 12px;
}

.services-actions a:last-child {
    background: #144a9b;
    color: #fff;
}

.services-stage {
    position: relative;
    margin-inline: 0;
    padding-inline: 0;
}

.services-carousel {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 0 18px;
}

.services-carousel::-webkit-scrollbar {
    height: 8px;
}

.services-carousel::-webkit-scrollbar-thumb {
    background: #c7d5e6;
}

.service-card {
    flex: 0 0 clamp(292px, 30vw, 354px);
    scroll-snap-align: start;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 34px rgba(11, 38, 74, .18);
}

.service-card-media {
    position: relative;
    display: block;
    height: clamp(295px, 31vw, 372px);
    overflow: hidden;
    background: #cfe3f4;
}

.service-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.service-card-media:hover img,
.service-card-media:focus-visible img {
    transform: scale(1.025);
}

.service-card-media span {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.service-card-body {
    min-height: 126px;
    display: grid;
    align-content: start;
    padding: 18px 20px 16px;
    background: #fff;
}

.service-card-body h3 {
    margin: 0;
    color: #0a2f67;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
}

.service-card-body h3 a {
    color: inherit;
    text-decoration: none;
}

.service-card-body h3 a:hover,
.service-card-body h3 a:focus-visible {
    color: #1559a4;
}

.service-card-body p {
    margin: 9px 0 16px;
    color: #53626f;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.45;
}

.service-card-body a {
    align-self: end;
    justify-self: end;
    color: #0a2f67;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.service-side-arrow {
    position: absolute;
    z-index: 3;
    top: 47%;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 6px;
    background: #144a9b;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(10, 47, 103, .24);
    cursor: pointer;
}

.service-side-arrow.is-prev {
    left: 0;
}

.service-side-arrow.is-next {
    right: 0;
}

.service-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.service-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c6d0dc;
    cursor: pointer;
}

.service-dots button.is-active {
    width: 28px;
    border-radius: 20px;
    background: #8799ad;
}

.news-band {
    background: #102a34;
    color: var(--white);
}
.news-band .eyebrow { color: var(--gold); }
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}
.news-grid article {
    min-height: 190px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
}
.news-grid time { color: var(--gold); font-weight: 800; }
.news-grid h3 { margin: 14px 0 10px; font-size: 22px; }
.news-grid p { margin: 0; line-height: 1.55; color: rgba(255,255,255,.76); }
.news-grid article > a { display: inline-block; margin-top: 18px; color: var(--gold); font-weight: 900; }

.news-page { min-height: 100svh; display: flex; flex-direction: column; background: #edf4fa; color: #25364a; }
.inner-header {
    position: relative;
    z-index: 110;
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px clamp(20px, 6.6vw, 104px);
    background: rgba(10, 47, 103, .98);
    color: #fff;
}
.inner-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.inner-logo img { display: block; width: auto; max-width: 240px; max-height: 80px; object-fit: contain; }

.inner-header nav,
.inner-header .inner-nav {
    display: flex;
    gap: clamp(18px, 2.2vw, 30px);
    align-items: center;
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.inner-header .inner-nav a {
    position: relative;
    /* padding: 10px 0; */
    white-space: nowrap;
}

header .inner-nav a {
    position: relative;
    white-space: nowrap;
}

.inner-header .inner-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.inner-header .inner-nav a:hover::after {
    transform: scaleX(1);
}

.inner-header .nav-item {
    position: relative;
}

.inner-header .nav-submenu {
    top: calc(100% + 0px);
}

.inner-header .nav-item.has-children::after {
    height: 18px;
}

.inner-header .lang-switcher summary {
    min-height: 42px;
    background: rgba(6, 24, 55, .38);
}
.inner-header .lang-menu {
    right: 0;
}
.news-hero {
    min-height: 215px;
    display: flex;
    align-items: end;
    padding: 40px clamp(22px, 12vw, 190px);
    background: linear-gradient(rgba(3,28,58,.72), rgba(3,28,58,.92)), url('/assets/img/hero-customs.png') center/cover;
    color: #fff;
}
.news-hero p { margin: 0 0 8px; color: #73b8f4; font-size: 12px; font-weight: 900; letter-spacing: 1px; }
.news-hero h1 { max-width: 950px; margin: 0 0 0 165px; gap: 200px; font-size: clamp(30px, 4vw, 32px); line-height: 1.1; }
.news-breadcrumb {
    width: min(1220px, calc(100% - 40px));
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 24px auto 0;
    padding: 0 18px;
    background: #fff;
    border-radius: 6px;
    color: #718096;
    font-size: 15px;
}
.news-breadcrumb a { color: #2877bb; }
.news-layout {
    width: min(1380px, calc(100% - 36px));
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin: 18px auto 52px;
    flex: 1;
}

.news-page:not(.service-page) .news-layout {
    width: min(1220px, calc(100% - 40px));
}

.news-page:not(.service-page) .news-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
}

.news-page:not(.service-page) .news-detail,
.news-page:not(.service-page) .news-list-page {
    padding: clamp(25px, 3.5vw, 42px);
}

.news-page:not(.service-page) .news-content {
    max-width: 860px;
    color: #405166;
    font-size: 16px;
    line-height: 1.9;
}

.news-page:not(.service-page) .news-summary {
    max-width: 890px;
}

.news-page:not(.service-page) .news-list-rows article {
    grid-template-columns: 190px minmax(0, 1fr);
}
.news-sidebar { display: grid; gap: 24px; }
.news-sidebar section { overflow: hidden; background: #fff; border-radius: 7px; }
.news-sidebar h3 { margin: 0; padding: 16px; background: #1559a4; color: #fff; font-size: 16px; }
.news-sidebar section > a { display: block; padding: 15px 15px; border-bottom: 1px solid #e2eaf1; color: #475569; font-size: 13px; font-weight: 800; }
.other-news { background: transparent !important; }
.other-news h3 { padding-left: 0; background: transparent; color: #164e83; }
.other-news > a {
    display: grid !important;
    grid-template-columns: 90px 1fr;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px !important;
    background: #fff;
    border: 0 !important;
    border-radius: 7px;
}
.other-news img { width: 96px; height: 78px; object-fit: cover; border-radius: 5px; }
.other-news span { display: grid; gap: 5px; }
.other-news strong { font-size: 13px; line-height: 1.3; }
.other-news small { color: #124f99; font-size: 12px; }
.news-detail, .news-list-page { padding: clamp(24px, 4vw, 50px); background: #fff; border-radius: 8px; }
.news-category { margin: 0 0 8px; color: #e38b13; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.news-detail h2, .news-list-page h2 { margin: 0; color: #0d4e92; font-size: clamp(25px, 3vw, 18px); line-height: 1.18; }
.news-meta { display: flex; gap: 12px; margin: 16px 0 24px; color: #8794a4; font-size: 11px; }
.news-cover { display: block; width: 100%; max-height: 520px; object-fit: cover; border-radius: 8px; }
.news-summary { margin: 26px 0; padding: 18px 20px; background: #f2f7fb; border-left: 4px solid #e38b13; font-weight: 700; line-height: 1.75; }
.news-content { color: #465568; font-size: 15px; line-height: 1.85; }
.news-content img { max-width: 100%; height: auto; }
.news-content::after { content: ""; display: table; clear: both; }
.faq-block {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}
.faq-item {
    overflow: hidden;
    border: 1px solid #dbe7f3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 51, 106, .08);
}
.faq-item summary {
    position: relative;
    display: block;
    padding: 17px 52px 17px 20px;
    color: #0d4f92;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e8f3ff;
    color: #0d5ba5;
    transform: translateY(-50%);
    font-size: 18px;
    line-height: 1;
}
.faq-item[open] summary {
    background: #f4f9ff;
}
.faq-item[open] summary::after {
    content: "-";
}
.faq-answer {
    padding: 0 20px 18px;
    color: #516174;
}
.faq-answer p:last-child {
    margin-bottom: 0;
}
.news-list-grid { display: grid; gap: 18px; margin-top: 28px; }
.news-list-grid article { display: grid; grid-template-columns: 220px 1fr; overflow: hidden; border: 1px solid #e2eaf1; border-radius: 7px; }
.news-list-grid img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; }
.news-list-grid article > div { padding: 22px; }
.news-list-grid time { color: #e38b13; font-size: 11px; font-weight: 900; }
.news-list-grid h3 { margin: 9px 0; color: #164e83; }
.news-list-grid p { color: #667588; line-height: 1.6; }
.news-list-grid a { color: #1559a4; font-weight: 900; }
.news-list-page { padding: 28px; min-height: 420px; }
.news-list-page > h2 {
    margin-bottom: 22px;
    font-size: 17px;
    text-transform: uppercase;
}

.news-page > .site-footer {
    margin-top: 0;
}

.service-hero {
    background: linear-gradient(rgba(3,28,58,.72), rgba(3,28,58,.92)), url('/assets/img/service-import.png') center/cover;
}

.service-page .news-layout {
    width: min(1220px, calc(100% - 40px));
}

.service-page .news-breadcrumb {
    width: min(1220px, calc(100% - 40px));
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 24px auto 0;
    padding: 0 18px;
    background: #fff;
    border-radius: 6px;
    color: #718096;
    font-size: 15px;
}

.service-page .news-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
}

.service-page .news-detail,
.service-page .news-list-page {
    padding: clamp(25px, 3.5vw, 42px);
}

.service-page .news-content {
    max-width: 820px;
    color: #405166;
    font-size: 16px;
    line-height: 1.9;
}

.service-page .news-summary {
    max-width: 850px;
}

.service-page .news-list-rows article {
    grid-template-columns: 190px minmax(0, 1fr);
}

.service-page .news-row-copy h3 {
    max-width: calc(100% - 130px);
    margin: 0 0 7px;
    color: #0e4d8d;
    font-size: 18px;
    line-height: 1.3;
}

.service-page .news-row-category {
    position: absolute;
    top: 10px;
    right: 0;
    min-width: 112px;
    padding: 7px 12px;
    border-radius: 18px 0 0 18px;
    background: #1559a4;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.service-page .news-row-bottom a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border: 1px solid #1559a4;
    border-radius: 16px;
    color: #1559a4;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.service-page .news-sidebar h3 {
    margin: 0;
    padding: 16px;
    background: #1559a4;
    color: #fff;
    font-size: 16px;
}

.service-page .other-news > a {
    display: grid !important;
    grid-template-columns: 90px 1fr;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px !important;
    background: #fff;
    border: 0 !important;
    border-radius: 7px;
}

.service-page .other-news img {
    width: 96px;
    height: 78px;
    object-fit: cover;
    border-radius: 5px;
}

.service-page .other-news strong {
    font-size: 13px;
    line-height: 1.3;
}

.service-page .other-news small {
    color: #124f99;
    font-size: 12px;
}

.service-page .news-filter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 10px;
    margin-bottom: 20px;
}

.service-page .news-filter button {
    border: 0;
    border-radius: 6px;
    background: #1559a4;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.service-filter {
    grid-template-columns: minmax(0, 1fr) 72px;
}

.content-hero {
    background: linear-gradient(rgba(3,28,58,.72), rgba(3,28,58,.92)), url('/assets/img/hero-customs.png') center/cover;
}

.content-page-layout,
.content-page-layout.without-menu {
    width: min(1220px, calc(100% - 40px));
}

.content-page-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    flex: 1;
    margin: 18px auto 52px;
}

.content-page-layout.without-menu {
    display: block;
}

.content-page-layout.without-menu .content-detail {
    width: 100%;
}

.content-detail {
    padding: clamp(28px, 4vw, 48px);
}

.content-detail .news-content {
    max-width: 860px;
    color: #405166;
    font-size: 16px;
    line-height: 1.9;
}

.without-menu .content-detail .news-content {
    max-width: 1300px;
}

.content-page-gumruk-islemleri .content-hero {
    min-height: 350px;
    padding-top: 46px;
    background:
        linear-gradient(rgba(7, 34, 68, .56), rgba(7, 34, 68, .42)),
        url('/assets/img/hero-customs.png') center/cover;
}

.content-page-gumruk-islemleri .news-hero h1 {
    margin-left: 0;
    color: #ffc61a;
    font-size: clamp(48px, 5.2vw, 68px);
    font-weight: 900;
    letter-spacing: 0;
}

.content-page-gumruk-islemleri .news-breadcrumb {
    display: none;
}

.content-page-gumruk-islemleri .content-page-layout.without-menu {
    width: min(1170px, calc(100% - 40px));
    margin: -74px auto 52px;
}

.content-page-gumruk-islemleri .content-detail {
    position: relative;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.content-page-gumruk-islemleri .content-detail::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 205px;
    width: 100vw;
    height: 70px;
    margin-left: -50vw;
    background: #ffc61a;
    z-index: 0;
}

.content-page-gumruk-islemleri .content-detail > h2,
.content-page-gumruk-islemleri .content-detail > .news-summary,
.content-page-gumruk-islemleri .content-detail > .news-cover {
    display: none;
}

.content-page-gumruk-islemleri .content-detail .news-content {
    position: relative;
    z-index: 1;
    max-width: none;
}

.customs-landing {
    display: grid;
    gap: 34px;
}

.customs-landing-intro {
    width: min(1170px, 100%);
    margin: 0 auto 28px;
    padding: 24px 26px;
    background: #fff;
    border: 1px solid #e3eaf2;
    border-radius: 6px;
    color: #334155;
    font-size: 15px;
    line-height: 1.75;
}

.customs-landing-intro > :first-child {
    margin-top: 0;
}

.customs-landing-intro > :last-child {
    margin-bottom: 0;
}

.customs-top-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.customs-mini-card {
    min-height: 100px;
    display: grid;
    align-content: start;
    gap: 7px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .14);
    color: #22364d;
    text-decoration: none;
}

.customs-mini-card h3 {
    margin: 0;
    color: #f0b400;
    font-size: 15px;
    line-height: 1.3;
}

.customs-mini-card p {
    margin: 0;
    color: #465568;
    font-size: 12px;
    line-height: 1.55;
}

.customs-resource-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 40px 20px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .12);
}

.customs-resource-card {
    position: relative;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: center;
    min-height: 120px;
    overflow: hidden;
    border: 1px solid #dce6f0;
    border-radius: 5px;
    background: linear-gradient(90deg, #ffe38c 0 118px, #f4f4f4 118px 100%);
    text-decoration: none;
}

.customs-resource-media {
    position: relative;
    z-index: 1;
    width: 104px;
    height: 104px;
    margin-left: 10px;
    border: 5px solid #fff;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
}

.customs-resource-media.is-doc {
    background-image: url('/assets/img/service-import.png');
}

.customs-resource-media.is-knowledge {
    background-image: url('/assets/img/service-legal.png');
}

.customs-resource-media.is-digital {
    background-image: url('/assets/img/service-logistics.png');
}

.customs-resource-media.is-aeo {
    background-image: url('/assets/img/service-export.png');
}

.customs-resource-copy {
    display: grid;
    gap: 8px;
    padding: 18px 22px 18px 0;
}

.customs-resource-copy strong {
    color: #17457d;
    font-size: 15px;
    line-height: 1.35;
}

.customs-resource-copy small {
    color: #556578;
    font-size: 12px;
    line-height: 1.55;
}

.content-page-gumruk-mevzuat .content-page-layout.without-menu,
.content-page-gumruk-mevzuat-uluslararasi-sozlesmeler .content-page-layout.without-menu,
.content-page-gumruk-mevzuat-kanun .content-page-layout.without-menu,
.content-page-gumruk-mevzuat-cumhurbaskanligi-karari-bkk .content-page-layout.without-menu,
.content-page-gumruk-mevzuat-yonetmelik .content-page-layout.without-menu,
.content-page-gumruk-mevzuat-tebligler .content-page-layout.without-menu,
.content-page-gumruk-mevzuat-genelge .content-page-layout.without-menu,
.content-page-gumruk-mevzuat-tasarruflu-yazilar .content-page-layout.without-menu,
.content-page-gumruk-idareleri .content-page-layout.without-menu,
.content-page-gumruk-sss .content-page-layout.without-menu,
.content-page-gumruk-ebilgi .content-page-layout.without-menu,
.content-page-gumruk-belgeler .content-page-layout.without-menu,
.content-page-gumruk-bilgi-bankasi .content-page-layout.without-menu,
.content-page-gumruk-dijital .content-page-layout.without-menu,
.content-page-gumruk-yys .content-page-layout.without-menu {
    width: min(1120px, calc(100% - 40px));
}

.customs-detail-page {
    display: grid;
    gap: 18px;
    padding: 6px 0 12px;
}

.customs-detail-page > p {
    margin: 0;
    max-width: 760px;
    color: #123f7d;
    font-size: 16px;
    line-height: 1.7;
}

.customs-divider {
    width: 140px;
    height: 4px;
    margin: 10px 0 18px;
    background: linear-gradient(90deg, #765b2f 0%, #927644 100%);
}

.customs-list-links {
    display: grid;
    gap: 10px;
}

.customs-list-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 12px 16px;
    background: #f2f2f2;
    border-right: 2px solid #0e4d8d;
    color: #0d447e;
    font-size: 16px;
    font-weight: 700;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.customs-list-links a:hover {
    background: #e8eef6;
    color: #0a3870;
    transform: translateX(2px);
}

.customs-link-panel {
    padding: 10px 0 18px;
}

.customs-link-panel a {
    display: grid;
    gap: 12px;
    padding: 28px 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbe7f3;
    border-radius: 8px;
    box-shadow: 0 18px 34px rgba(15, 51, 106, .08);
}

.customs-link-panel strong {
    color: #0e4d8d;
    font-size: 28px;
    line-height: 1.18;
}

.customs-link-panel small {
    display: block;
    max-width: 720px;
    color: #516173;
    font-size: 15px;
    line-height: 1.75;
}

.customs-link-panel span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: #0e4d8d;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.customs-embed {
    display: block;
    padding: 0 0 18px;
}

.customs-embed-frame-wrap {
    overflow: hidden;
    background: #fff;
    border: 1px solid #dbe7f3;
    border-radius: 8px;
    box-shadow: 0 18px 34px rgba(15, 51, 106, .08);
}

.customs-embed-frame {
    display: block;
    width: 100%;
    min-height: 2050px;
    border: 0;
    background: #fff;
}

.page-sidebar a.is-active {
    background: #eef7fb;
    color: #1559a4;
    border-left: 3px solid #1559a4;
}

.customs-sidebar .customs-menu-card {
    overflow: hidden;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(15, 51, 106, .14);
}

.customs-sidebar .customs-menu-card h3 {
    margin: 0 0 16px;
    padding: 28px 24px;
    background: linear-gradient(135deg, #0d5ba5, #07376f);
    color: #fff;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: 0;
}

.customs-sidebar .customs-parent-link,
.news-sidebar .customs-sidebar-children a {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 0;
    color: #111827;
    font-size: 16px;
    line-height: 1.2;
}

.customs-sidebar .customs-parent-link {
    margin: 0 16px 8px;
    padding: 15px 17px;
    border-radius: 8px;
    font-weight: 900;
}

.customs-sidebar .customs-parent-link.is-active {
    background: #dff1ff;
    color: #111827;
    border-left: 0;
}

.customs-sidebar-children {
    display: grid;
    padding: 0 18px 20px 35px;
    background: #fff;
    border-bottom: 0;
}

.news-sidebar .customs-sidebar-children a {
    min-height: 38px;
    padding: 4px 0;
    font-size: 14px;
    font-weight: 700;
    background: transparent;
    border-radius: 7px;
}

.news-sidebar .customs-sidebar-children a.is-active {
    background: #e8f3ff;
    color: #0d4f92;
    font-weight: 950;
    border-left: 4px solid #0d5ba5;
    padding-left: 10px;
}

.customs-menu-icon {
    position: relative;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    color: #0d5ba5;
}

.customs-menu-icon::before {
    content: "";
    position: absolute;
    inset: 3px;
    border: 2px solid currentColor;
    border-radius: 3px;
}

.customs-menu-icon::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    width: 8px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 5px 0 currentColor;
}

.customs-menu-icon.is-child::before {
    inset: 3px;
    border-radius: 50%;
}

.customs-menu-icon.is-child::after {
    left: 5px;
    top: 11px;
    width: 14px;
    height: 2px;
    box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}

.news-filter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px 72px;
    gap: 10px;
    margin-bottom: 20px;
}
.news-filter input,
.news-filter select {
    width: 100%;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid #cfe0ef;
    border-radius: 18px;
    background: #fff;
    color: #64748b;
    font-size: 12px;
}
.news-filter button {
    border: 0;
    border-radius: 6px;
    background: #1559a4;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
.news-list-rows {
    display: grid;
    gap: 13px;
}
.news-list-rows article {
    position: relative;
    display: grid;
    grid-template-columns: 205px minmax(0, 1fr);
    gap: 18px;
    min-height: 148px;
    padding: 10px 14px 10px 10px;
    border: 1px solid #dce8f2;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 6px 16px rgba(31, 77, 120, .07);
}
.news-row-image img {
    display: block;
    width: 100%;
    height: 128px;
    object-fit: cover;
    border-radius: 7px;
}
.news-row-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-top: 5px;
}
.news-row-copy h3 {
    max-width: calc(100% - 130px);
    margin: 0 0 7px;
    color: #0e4d8d;
    font-size: 18px;
    line-height: 1.3;
}
.news-row-copy p {
    max-width: 680px;
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}
.news-row-category {
    position: absolute;
    top: 10px;
    right: 0;
    min-width: 112px;
    padding: 7px 12px;
    border-radius: 18px 0 0 18px;
    background: #1559a4;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}
.news-row-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}
.news-row-bottom a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border: 1px solid #1559a4;
    border-radius: 16px;
    color: #1559a4;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.news-row-bottom time {
    color: #74879b;
    font-size: 9px;
}
.news-empty {
    padding: 22px;
    border: 1px solid #dce8f2;
    background: #fff;
    color: #64748b;
    text-align: center;
}

.contact {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 440px);
    gap: 42px;
    background: var(--white);
}
.contact-panel {
    display: grid;
    gap: 14px;
    padding: 28px;
    background: #edf2f1;
    border-left: 5px solid var(--gold);
    align-self: start;
    font-size: 18px;
    font-weight: 800;
}

.contact-page-main {
    width: min(1320px, calc(100% - 120px));
    margin: 54px auto 70px;
    flex: 1;
}

.hr-page {
    background:
        linear-gradient(180deg, #f4f8fc 0, #fff 420px),
        #fff;
}

.hr-hero {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(7, 38, 78, .96), rgba(8, 57, 113, .82)),
        url('/assets/img/hero-customs.png') center/cover;
    color: #fff;
    overflow: hidden;
}

.hr-hero::after {
    content: "";
    position: absolute;
    inset: auto -90px -160px auto;
    width: 380px;
    height: 380px;
    border: 72px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
}

.hr-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1220px, calc(100% - 40px));
    margin: 0 auto;
}

.hr-hero-inner span,
.hr-kicker,
.hr-form-head span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #d7e9ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hr-hero-inner h1 {
    max-width: 760px;
    margin: 18px 0 12px;
    color: #fff;
    font-size: clamp(38px, 4.8vw, 64px);
    line-height: 1.02;
    font-weight: 900;
}

.hr-hero-inner p {
    max-width: 760px;
    /* margin: 0; */
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 600;
}

.hr-page-main {
    width: min(1220px, calc(100% - 40px));
    margin: -44px auto 80px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.hr-layout {
    display: grid;
    grid-template-columns: minmax(320px, .92fr) minmax(520px, 1.22fr);
    gap: 34px;
    align-items: stretch;
}

.hr-copy {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 34px;
    border: 1px solid #e3edf6;
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 55px rgba(13, 42, 76, .09);
}

.hr-kicker {
    align-self: flex-start;
    background: #eaf3ff;
    color: #1559a4;
}

.hr-copy h2 {
    margin: 22px 0 14px;
    color: #0a2f67;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 900;
}

.hr-copy > p {
    margin: 0;
    color: #53657a;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 600;
}

.hr-values {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.hr-values article {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 4px 14px;
    padding: 16px;
    border: 1px solid #e5eef7;
    border-radius: 8px;
    background: #f8fbfe;
}

.hr-values strong {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #0a2f67;
    color: #fff;
    font-size: 13px;
}

.hr-values span {
    color: #14263d;
    font-size: 16px;
    font-weight: 900;
}

.hr-values p {
    margin: 0;
    color: #6b7d90;
    font-size: 13px;
    line-height: 1.55;
}

.hr-form-panel {
    border: 1px solid #dce8f3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(13, 42, 76, .13);
    overflow: hidden;
}

.hr-form-head {
    padding: 30px 32px 0;
}

.hr-form-head span {
    background: #edf6ff;
    color: #1559a4;
}

.hr-form-head h2 {
    margin: 16px 0 8px;
    color: #0a2f67;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 900;
}

.hr-form-head p {
    max-width: 650px;
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.hr-form-panel form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 22px;
    padding: 28px 32px 32px;
}

.hr-form-panel label {
    display: grid;
    gap: 9px;
    color: #174f91;
    font-size: 13px;
    font-weight: 900;
}

.hr-form-panel input,
.hr-form-panel textarea {
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 0 14px;
    border: 1px solid #d7e4ef;
    border-radius: 6px;
    background: #fdfefe;
    color: #24374a;
    font: inherit;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.hr-form-panel input:focus,
.hr-form-panel textarea:focus {
    border-color: #1559a4;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(21, 89, 164, .1);
}

.hr-form-panel input[type="file"] {
    display: flex;
    align-items: center;
    padding: 12px;
    border-style: dashed;
    background: #f7fbff;
    color: #53657a;
}

.hr-form-panel input[type="file"]::file-selector-button {
    min-height: 34px;
    margin-right: 12px;
    padding: 0 14px;
    border: 0;
    border-radius: 5px;
    background: #1559a4;
    color: #fff;
    cursor: pointer;
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hr-form-panel textarea {
    min-height: 160px;
    padding-top: 14px;
    resize: vertical;
}

.hr-form-panel .wide {
    grid-column: 1 / -1;
}

.hr-form-panel button {
    grid-column: 1 / -1;
    justify-self: start;
    min-width: 190px;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 6px;
    background: #1559a4;
    color: #fff;
    box-shadow: 0 14px 30px rgba(21, 89, 164, .25);
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.hr-form-panel button:hover {
    background: #0a2f67;
}

.contact-page {
    background: #fff;
}

.contact-page .contact-hero,
.contact-page > .news-breadcrumb {
    display: none;
}

.contact-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}

.contact-page-head h2 { margin: 0 0 8px; color: #111; font-size: clamp(28px, 3vw, 42px); }
.contact-page-head p { margin: 0; color: #708092; }
.contact-page-actions { display: flex; gap: 10px; }
.contact-page-actions a {
    min-width: 112px;
    padding: 14px 18px;
    border-radius: 5px;
    background: #063a77;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.contact-info-grid article {
    min-height: 162px;
    padding: 20px;
    border: 1px solid #dce5ec;
    border-radius: 8px;
    background: #fff;
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #eef4fb;
    color: #1559a4;
    font-size: 18px;
    font-weight: 900;
}
.contact-icon svg { width: 22px; height: 22px; }

.contact-info-grid h3 { margin: 16px 0 8px; color: #111; font-size: 15px; }
.contact-info-grid p { margin: 0; color: #667789; font-size: 13px; line-height: 1.7; }

.contact-workspace {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.contact-form-panel,
.contact-map-panel {
    overflow: hidden;
    border: 1px solid #dce5ec;
    border-radius: 7px;
    background: #fff;
}

.contact-form-panel h2 { margin: 0; padding: 20px 28px; background: #1559a4; color: #fff; font-size: 25px; }
.contact-form-panel form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 28px; }
.contact-form-panel input,
.contact-form-panel textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border: 1px solid #dce5ec;
    background: #f8fafc;
    color: #24374a;
    font: inherit;
}
.contact-form-panel textarea,
.contact-form-panel button { grid-column: 1 / -1; }
.contact-form-panel textarea { min-height: 150px; resize: vertical; }
.contact-form-panel button {
    min-height: 48px;
    border: 0;
    border-radius: 4px;
    background: #1559a4;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}
.contact-honeypot { position: absolute !important; left: -9999px !important; }
.contact-alert { margin: 20px 28px 0; padding: 12px 14px; border-radius: 4px; font-size: 13px; }
.contact-alert.is-success { background: #e6f7ef; color: #08745a; }
.contact-alert.is-error { background: #fff0ef; color: #a83232; }

.contact-map-panel { min-height: 500px; display: grid; grid-template-rows: 58px minmax(0, 1fr); }
.contact-map-panel > div { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; color: #111; }
.contact-map-panel > div a { color: #1559a4; font-weight: 800; }
.contact-map-panel iframe { width: 100%; height: 100%; border: 0; }
.contact-map-panel > p { display: grid; place-items: center; margin: 0; background: #eef4f8; color: #728399; }

.home-news-widget {
    width: min(1400px, calc(100% - 40px));
    margin-inline: auto;
    padding-inline: 0;
    background: #ffffff;
    overflow: hidden;
}
.home-news-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; margin-bottom: 36px; }
.home-news-head h2 { color: #0a2f67; font-size: clamp(28px, 3vw, 42px); text-transform: uppercase; }
.home-news-head p { max-width: 640px; margin: 12px 0 0; color: #536b80; font-size: 13px; font-weight: 700; }
.home-news-arrows { display: flex; gap: 8px; }
.home-news-arrows button {
    width: 34px; height: 34px; border: 0; border-radius: 50%; background: #144a9b;
    color: #fff; font-size: 24px; line-height: 1; cursor: pointer;
}
.home-news-arrows button:last-child { background: #91a8cd; }
.home-news-all {
    display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px;
    border-radius: 7px; background: #144a9b; color: #fff; font-size: 12px; font-weight: 900; text-transform: uppercase;
}
.home-news-carousel {
    display: flex; gap: 22px; overflow-x: auto; padding: 4px 4px 22px;
    scroll-snap-type: x mandatory; scroll-behavior: smooth;
}
.home-news-carousel::-webkit-scrollbar { height: 7px; }
.home-news-carousel::-webkit-scrollbar-thumb { background: #c7d5e6; }
.home-news-card {
    flex: 0 0 calc((100% - 66px) / 4); min-width: 0; overflow: hidden; scroll-snap-align: start;
    border-radius: 8px; background: #fff; box-shadow: 0 12px 28px rgba(20, 74, 155, .11);
}
.home-news-image { position: relative; display: block; height: 220px; overflow: hidden; }
.home-news-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.home-news-card:hover .home-news-image img { transform: scale(1.035); }
.home-news-image time {
    position: absolute; left: 14px; bottom: 14px; padding: 7px 10px; border-radius: 4px;
    background: #144a9b; color: #fff; font-size: 10px; font-weight: 900;
}
.home-news-card > div { min-height: 168px; display: grid; align-content: start; padding: 18px 20px; }
.home-news-card h3 { margin: 0; color: #0a2f67; font-size: 18px; line-height: 1.25; }
.home-news-card p { margin: 10px 0 16px; color: #617283; font-size: 12px; line-height: 1.55; }
.home-news-card > div > a { align-self: end; justify-self: end; color: #144a9b; font-size: 12px; font-weight: 900; text-transform: uppercase; }

.home-map-full {
    width: 100%;
    height: 430px;
    margin: 0;
    background: #e8eef4;
}

.home-map-full iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.home-map-full p {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    color: #64748b;
    font-weight: 700;
}

.site-footer {
    position: relative;
    color: #fff;
    background:
        linear-gradient(rgba(8, 12, 15, .78), rgba(8, 12, 15, .86)),
        var(--footer-bg, linear-gradient(135deg, #1c2429, #101820));
    background-size: cover;
    background-position: center;
}

.footer-map {
    height: 230px;
    background: #dce7ee;
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1.1fr;
    gap: clamp(32px, 7vw, 110px);
    padding: 52px clamp(22px, 8vw, 116px) 44px;
}

.footer-col {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-col h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.footer-brand img {
    max-width: 284px;
    max-height: 78px;
    object-fit: contain;
}

.footer-brand strong {
    font-size: 28px;
    font-weight: 900;
}

.footer-brand p,
.footer-brand span,
.footer-brand a,
.footer-newsletter p,
.footer-links a {
    color: rgba(255,255,255,.86);
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.55;
}

.footer-phone {
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 900;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #0a2f67;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a::before {
    content: "›";
    margin-right: 8px;
    color: #fff;
}

.footer-newsletter form {
    display: grid;
    gap: 4px;
    margin-top: 4px;
}

.footer-newsletter input {
    width: 100%;
    min-height: 42px;
    border: 0;
    padding: 0 14px;
    background: rgba(255,255,255,.32);
    color: #fff;
}

.footer-newsletter input::placeholder {
    color: rgba(255,255,255,.78);
}

.footer-newsletter button {
    min-height: 42px;
    border: 0;
    background: rgba(0,0,0,.72);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-bottom {
    padding: 14px clamp(22px, 8vw, 116px);
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: center;
    color: rgba(255,255,255,.82);
    font-size: 13px;
}

.back-top {
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0da7c9;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}

@media (max-width: 900px) {
    .site-header { padding: 16px 20px; }
    .logo img,
    .inner-logo img { max-width: min(240px, 62vw); max-height: 80px; }
    .main-nav {
        position: absolute;
        top: 82px;
        left: 20px;
        right: 20px;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        background: rgba(7, 24, 32, .96);
        padding: 10px;
    }
    .main-nav.is-open { display: grid; }
    .main-nav a { padding: 14px; }
    .nav-item {
        display: grid;
    }
    .nav-submenu {
        position: static;
        margin-top: 0;
        display: none;
        min-width: 0;
        padding: 0 0 0 18px;
        border-top: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255,255,255,.04);
    }
    .nav-item.is-submenu-open > .nav-submenu {
        display: grid;
    }
    .nav-submenu a {
        padding: 11px 14px;
        font-size: 12px;
    }
    .nav-mega-menu {
        width: auto;
        min-width: 0;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 0 0 18px;
        transform: none;
        border-radius: 0;
        background: rgba(255,255,255,.04);
    }
    .nav-item:not(.is-submenu-open) > .nav-mega-menu {
        display: none;
    }
    .nav-item:hover > .nav-mega-menu,
    .nav-item:focus-within > .nav-mega-menu {
        transform: none;
    }
    .nav-mega-card {
        display: none !important;
    }
    .nav-mega-columns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }
    .nav-mega-type2 .nav-mega-columns,
    .nav-mega-type2 .nav-mega-columns.has-side-text {
        grid-template-columns: 1fr;
    }
    .nav-mega-type2:has(.nav-mega-column:nth-child(2)) {
        width: auto;
    }
    .nav-mega-side-text {
        display: none;
    }
    .nav-mega-column {
        padding: 0;
        border-right: 0;
    }
    .nav-mega-column h3 {
        display: block;
        margin: 0;
    }
    .nav-mega-menu:not(.nav-mega-sections) .nav-mega-column h3 {
        display: none;
    }
    .nav-mega-column h3 a {
        min-height: 39px;
        padding: 11px 14px;
        color: #fff;
        border-top: 1px solid rgba(255,255,255,.08);
        font-size: 12px;
        font-weight: 600;
    }
    .nav-mega-column a {
        min-height: 39px;
        padding: 11px 14px;
        color: #fff;
        border-top: 1px solid rgba(255,255,255,.08);
        border-bottom: 0;
        font-size: 12px;
        font-weight: 600;
    }
    .nav-submenu .nav-mega-column a::before {
        display: none;
    }
    .lang-switcher {
        margin: 8px 0 0;
    }
    .lang-switcher summary {
        justify-content: space-between;
        min-height: 44px;
    }
    .lang-menu {
        position: static;
        margin-top: 8px;
    }
    .nav-toggle { display: block; }
    .hero {
        width: 100%;
        height: clamp(540px, 78svh, 680px);
        min-height: 0;
    }
    .hero-slide {
        background-position: center center;
    }
    .hero-video {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        visibility: visible;
        opacity: 1;
    }
    .hero-copy {
        left: 20px;
        right: 56px;
        bottom: 126px;
        max-width: 560px;
    }
    .hero-copy p {
        margin-bottom: 10px;
        font-size: 11px;
    }
    .hero-copy h1 {
        font-size: clamp(31px, 8vw, 44px);
        line-height: 1.04;
    }
    .hero-copy span {
        margin-top: 13px;
        font-size: 14px;
        line-height: 1.4;
    }
    .hero-cta {
        min-height: 42px;
        margin-top: 18px;
        padding: 0 18px;
        font-size: 12px;
    }
    .slide-dots {
        left: 20px;
        right: auto;
        top: auto;
        bottom: 98px;
        transform: none;
        display: flex;
        gap: 7px;
    }
    .slide-dots button { width: 30px; height: 30px; padding: 3px; }
    .slide-dots .is-video-thumb::before {
        border-top-width: 5px;
        border-bottom-width: 5px;
        border-left-width: 8px;
    }
    .quick-menu {
        width: 100%;
        grid-template-columns: repeat(5, minmax(72px, 1fr));
        overflow-x: auto;
    }
    .quick-menu a { min-height: 78px; padding: 7px; font-size: 11px; }
    .split, .contact, .about-home { grid-template-columns: 1fr; }
    .contact-page-main { width: min(100% - 28px, 680px); margin: 34px auto 50px; }
    .hr-hero { min-height: 230px; }
    .hr-hero-inner h1 { font-size: 38px; }
    .hr-hero-inner p { font-size: 15px; }
    .hr-page-main { width: min(100% - 28px, 680px); margin: -26px auto 50px; }
    .hr-layout { grid-template-columns: 1fr; gap: 28px; }
    .hr-copy { padding: 24px; }
    .hr-form-head { padding: 24px 22px 0; }
    .hr-form-panel form { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
    .contact-page-head { align-items: flex-start; }
    .contact-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-workspace { grid-template-columns: 1fr; }
    .contact-form-panel form { grid-template-columns: 1fr; }
    .about-home {
        min-height: 0;
        padding-top: 70px;
    }
    .about-home-card {
        margin-inline: 0;
        padding: 26px;
    }
    .about-copy h2 {
        margin-bottom: 26px;
    }
    .about-copy p {
        font-size: 14px;
        line-height: 1.85;
    }
    .about-media {
        justify-self: start;
        width: min(100%, 430px);
    }
    .about-home-card .about-media {
        justify-self: start;
        width: min(100%, 430px);
    }
    .news-grid { grid-template-columns: 1fr; }
    .inner-header {
        display: grid;
        gap: 14px;
        min-height: 0;
        padding: 16px 20px;
    }
    .inner-header nav,
    .inner-header .inner-nav {
        flex-wrap: wrap;
        gap: 12px 18px;
    }
    .news-layout { grid-template-columns: 1fr; }
    .news-page:not(.service-page) .news-layout { grid-template-columns: 1fr; }
    .news-page:not(.service-page) .news-breadcrumb,
    .news-page:not(.service-page) .news-layout { width: min(100% - 24px, 1220px); }
    .news-page:not(.service-page) .news-list-rows article { grid-template-columns: 1fr; }
    .service-page .news-layout { grid-template-columns: 1fr; }
    .service-page .news-breadcrumb,
    .service-page .news-layout { width: min(100% - 24px, 1160px); }
    .service-page .news-list-rows article { grid-template-columns: 1fr; }
    .content-page .news-breadcrumb,
    .content-page-layout,
    .content-page-layout.without-menu { width: min(100% - 24px, 1180px); }
    .content-page-layout { grid-template-columns: 1fr; }
    .page-sidebar { order: 2; }
    .content-page-gumruk-islemleri .content-page-layout.without-menu {
        margin-top: -42px;
    }
    .content-page-gumruk-islemleri .content-detail::before {
        top: 258px;
        height: 56px;
    }
    .customs-top-links,
    .customs-resource-board {
        grid-template-columns: 1fr;
    }
    .news-sidebar { order: 2; }
    .news-list-grid article { grid-template-columns: 1fr; }
    .news-filter { grid-template-columns: 1fr; }
    .news-list-rows article { grid-template-columns: 1fr; }
    .news-row-image img { height: 210px; }
    .news-row-copy h3 { max-width: 100%; padding-top: 32px; }
    .services-head {
        display: grid;
        gap: 20px;
    }
    .section-title-row {
        justify-content: space-between;
    }
    .services-actions {
        flex-wrap: wrap;
    }
    .home-news-head {
        display: grid;
    }
    .home-news-card {
        flex-basis: min(82vw, 340px);
    }
    .services-stage {
        margin-inline: -12px;
        padding-inline: 12px;
    }
    .services-carousel {
        gap: 16px;
    }
    .service-card {
        flex-basis: min(82vw, 330px);
    }
    .service-card-media {
        height: 300px;
    }
    .service-side-arrow {
        display: none;
    }
    .footer-main {
        grid-template-columns: 1fr;
    }
    .home-map-full {
        height: 320px;
    }
    .footer-map {
        height: 260px;
    }
    .back-top {
        right: 16px;
        bottom: 16px;
    }
}

@media (min-width: 769px) and (max-width: 900px) {
    .inner-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .inner-header .inner-nav {
        flex-wrap: nowrap;
        gap: 18px;
    }
    .inner-header .nav-submenu {
        position: absolute;
        top: calc(100% + 0px);
        left: 0;
        min-width: 176px;
        padding: 0;
        border: 0;
        border-radius: 2px;
        background: #1b4b8f;
        box-shadow: 0 14px 24px rgba(7, 22, 49, .22);
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
    }
    .inner-header .nav-submenu::before {
        display: none;
    }
    .inner-header .nav-item:hover > .nav-submenu,
    .inner-header .nav-item:focus-within > .nav-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .inner-header .nav-submenu a {
        min-height: 39px;
        padding: 8px 18px;
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }
    .inner-header .nav-submenu a:hover,
    .inner-header .nav-submenu a.is-current {
        background: rgba(255, 255, 255, .08);
        color: #fff;
    }
}

@media (max-width: 900px) {
    .inner-header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        min-height: 74px;
        padding: 14px 20px;
    }

    .inner-header .inner-logo {
        min-width: 0;
    }

    .inner-header .nav-toggle {
        flex: 0 0 44px;
        display: block;
        border-color: rgba(255, 255, 255, .34);
        background: rgba(6, 24, 55, .38);
    }

    .inner-header .inner-nav {
        position: absolute;
        top: calc(100% + 0px);
        left: 14px;
        right: 14px;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 10px;
        border-radius: 0 0 8px 8px;
        background: rgba(10, 47, 103, .98);
        box-shadow: 0 18px 34px rgba(7, 22, 49, .28);
        text-transform: uppercase;
        z-index: 130;
    }

    .inner-header .inner-nav.is-open {
        display: grid;
    }

    .inner-header .nav-item {
        display: grid;
    }

    .inner-header .inner-nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 12px 14px;
        border-radius: 5px;
        white-space: normal;
    }

    .inner-header .inner-nav a::after {
        display: none;
    }

    .inner-header .nav-item.has-children::after {
        display: none;
    }

    .inner-header .nav-submenu {
        position: static;
        display: grid;
        min-width: 0;
        margin-top: 0;
        padding: 0 0 6px 16px;
        border: 0;
        border-radius: 0;
        background: rgba(255, 255, 255, .04);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .inner-header .nav-submenu a {
        min-height: 38px;
        padding: 9px 12px;
        font-size: 12px;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .inner-header .lang-switcher {
        margin: 8px 0 0;
        width: 100%;
    }

    .inner-header .lang-switcher summary {
        justify-content: space-between;
        min-height: 44px;
    }

    .inner-header .lang-menu {
        position: static;
        margin-top: 8px;
        width: 100%;
    }

    .news-hero {
        min-height: 180px;
        padding: 34px 20px;
    }

    .news-hero h1 {
        max-width: 100%;
        margin-left: 0;
        font-size: clamp(26px, 8vw, 34px);
    }

    .news-detail,
    .news-list-page,
    .content-detail {
        padding: 22px;
    }

    .news-content {
        overflow-wrap: anywhere;
    }

    .news-content table {
        display: block;
        width: 100% !important;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .news-content iframe,
    .news-content video {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .hero {
        height: clamp(500px, 74svh, 590px);
    }
    .hero-copy {
        left: 16px;
        right: 34px;
        bottom: 118px;
    }
    .hero-copy h1 {
        font-size: clamp(28px, 9vw, 36px);
    }
    .hero-copy span {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .slide-dots {
        left: 16px;
        bottom: 86px;
    }
    .quick-menu a {
        min-height: 68px;
    }
    .content-page-gumruk-islemleri .content-hero {
        min-height: 300px;
    }
    .content-page-gumruk-islemleri .news-hero h1 {
        font-size: 36px;
    }
    .content-page-gumruk-islemleri .content-page-layout.without-menu {
        margin-top: -28px;
    }
    .content-page-gumruk-islemleri .content-detail::before {
        top: 396px;
        height: 44px;
    }
    .customs-mini-card {
        min-height: 0;
    }
    .customs-resource-board {
        padding: 18px 12px 12px;
    }
    .customs-detail-page > p {
        font-size: 14px;
    }
    .customs-list-links a {
        min-height: 40px;
        padding: 11px 14px;
        font-size: 14px;
    }
    .customs-link-panel a {
        padding: 20px 18px;
    }
    .customs-link-panel strong {
        font-size: 21px;
    }
    .customs-link-panel small {
        font-size: 14px;
    }
    .customs-embed-frame {
        min-height: 1350px;
    }
    .customs-resource-card {
        grid-template-columns: 88px minmax(0, 1fr);
        min-height: 108px;
        background: linear-gradient(90deg, #ffe38c 0 86px, #f4f4f4 86px 100%);
    }
    .customs-resource-media {
        width: 76px;
        height: 76px;
        margin-left: 6px;
        border-width: 4px;
    }
    .customs-resource-copy {
        padding: 14px 14px 14px 0;
    }
    .customs-resource-copy strong {
        font-size: 14px;
    }
    .customs-resource-copy small {
        font-size: 12px;
    }
    .hr-hero { min-height: 210px; }
    .hr-hero-inner { width: min(100% - 28px, 1220px); }
    .hr-hero-inner h1 { font-size: 32px; }
    .hr-copy,
    .hr-form-panel { border-radius: 6px; }
    .hr-values article { grid-template-columns: 1fr; }
    .hr-values strong { grid-row: auto; }
    .hr-form-head h2 { font-size: 25px; }
    .hr-form-panel button { width: 100%; justify-self: stretch; }
    .about-home-card {
        padding: 20px;
        border-radius: 14px;
    }
    .about-home-card .about-copy > p:first-of-type,
    .about-home-card .about-copy h3 + p {
        font-size: 14px;
    }
    .about-home-card .about-copy h3 {
        padding-left: 48px;
    }
    .about-home-card .about-copy h3 + p {
        margin-left: 48px;
    }
    .about-home-card .about-copy h3::before {
        width: 30px;
        height: 30px;
    }
    .about-home-card .about-copy h3::after {
        left: 5px;
    }
    .contact-page-head {
        display: grid;
        gap: 18px;
    }
    .contact-page-actions {
        width: 100%;
    }
    .contact-page-actions a {
        flex: 1;
        min-width: 0;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-grid article {
        min-height: 0;
    }
    .contact-form-panel h2 {
        padding: 18px 20px;
        font-size: 21px;
    }
    .contact-form-panel form {
        gap: 13px;
        padding: 20px;
    }
    .contact-map-panel {
        min-height: 390px;
    }
}

/* 404 error page */
.error-page {
    background: #f4f7fb;
}
.error-main {
    min-height: 610px;
    padding: clamp(52px, 8vw, 100px) 20px clamp(60px, 8vw, 96px);
    background: #f4f7fb;
}
.error-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(250px, .72fr) minmax(420px, 1fr);
    align-items: center;
    width: min(1220px, 100%);
    min-height: 390px;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e4eaf2;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(9, 44, 91, .1);
}
.error-code {
    display: grid;
    place-items: center;
    align-self: stretch;
    background: #103b75;
    color: #fff;
    font-size: clamp(110px, 14vw, 190px);
    font-weight: 900;
    line-height: 1;
}
.error-copy {
    max-width: 650px;
    padding: clamp(34px, 6vw, 76px);
}
.error-kicker {
    display: block;
    margin-bottom: 13px;
    color: #1765b3;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.error-copy h1 {
    margin: 0 0 18px;
    color: #102f5c;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
}
.error-copy p {
    max-width: 590px;
    margin: 0;
    color: #5f6f82;
    font-size: 16px;
    line-height: 1.75;
}
.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}
.error-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid #1559a4;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 800;
}
.error-primary {
    background: #1559a4;
    color: #fff;
}
.error-secondary {
    background: #fff;
    color: #1559a4;
}
.error-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: min(1220px, 100%);
    margin: 18px auto 0;
}
.error-links a {
    display: grid;
    gap: 6px;
    min-height: 100px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #e4eaf2;
    border-radius: 6px;
    color: #173f72;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.error-links a:hover {
    transform: translateY(-3px);
    border-color: #9abde2;
    box-shadow: 0 14px 30px rgba(9, 44, 91, .08);
}
.error-links strong {
    font-size: 16px;
}
.error-links span {
    color: #718096;
    font-size: 13px;
    line-height: 1.5;
}
@media (max-width: 900px) {
    .error-shell {
        grid-template-columns: 1fr;
    }
    .error-code {
        min-height: 180px;
        font-size: 100px;
    }
    .error-copy {
        max-width: none;
    }
    .error-links {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 560px) {
    .error-main {
        padding: 28px 14px 48px;
    }
    .error-shell {
        min-height: 0;
    }
    .error-code {
        min-height: 135px;
        font-size: 76px;
    }
    .error-copy {
        padding: 28px 22px 32px;
    }
    .error-copy h1 {
        font-size: 28px;
    }
    .error-copy p {
        font-size: 14px;
    }
    .error-actions a {
        width: 100%;
    }
}
