:root {
    --bg: #f7f9fc;
    --bg-soft: #eef3fa;
    --surface: #ffffff;
    --surface-2: #f2f6fb;
    --text: #0b1733;
    --text-soft: #344563;
    --line: rgba(28, 61, 112, 0.13);

    --primary: #2447a9;
    --primary-dark: #17347f;
    --accent: #5c7cff;

    --white: #ffffff;
    --black: #000000;

    --container: 1360px;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --shadow:
        0 20px 60px rgba(0, 0, 0, 0.24);

    --transition:
        0.25s ease;
}


/* =====================================================
   RESET
===================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    background: var(--bg);
    color: var(--text);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}


/* =====================================================
   GLOBAL
===================================================== */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}

section {
    position: relative;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0 28px;

    border-radius: 999px;

    background: var(--primary);
    color: var(--white);

    font-size: 15px;
    font-weight: 700;

    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.btn:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);

    box-shadow:
        0 15px 35px rgba(36, 71, 169, 0.25);
}


/* =====================================================
   SITE HEADER (final, consolidated)
===================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;

    background: rgba(6, 16, 28, .94);
    border-bottom: 1px solid rgba(255, 255, 255, .07);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-header .navbar-wrap,
.site-header .header-inner {
    width: min(1700px, calc(100% - 70px));
    height: 100px;
    min-height: 100px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;
}


/* LOGO */

.brand,
.site-header .site-logo {
    display: inline-flex;
    align-items: center;

    gap: 13px;

    flex-shrink: 0;

    color: var(--white);
    text-decoration: none;
}

.brand-mark,
.site-header .logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;
    flex: 0 0 54px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #142c6d
        );

    color: var(--white);

    font-size: 17px;
    font-weight: 900;
    letter-spacing: 1px;

    box-shadow:
        0 10px 30px rgba(36, 71, 169, 0.25);
}

.brand-text,
.site-header .logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1.2;
}

.brand-text strong,
.site-header .logo-text strong {
    color: var(--white);

    font-size: 16px;
    font-weight: 800;

    letter-spacing: -0.4px;
    white-space: nowrap;
}

.brand-text small,
.site-header .logo-text small {
    margin-top: 4px;

    color: var(--text-soft);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.4px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Logo image variant (when the brand mark is an <img> instead of text) */
.site-header .brand.brand-logo {
    width: 240px;
    height: 82px;
    flex: 0 0 240px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding: 0;
    margin: 0;

    overflow: visible;
}

.site-header .brand-logo-image {
    display: block;

    width: 240px;
    height: auto;

    max-width: 240px;
    max-height: 78px;

    object-fit: contain;
    object-position: left center;
}


/* NAVIGATION */

.main-nav,
.site-header .main-nav {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 38px;

    height: 100%;

    margin: 0;
    padding: 0;
}

.nav-list,
.site-header .nav-list {
    display: flex;
    align-items: center;

    gap: 30px;

    margin: 0;
    padding: 0;
}

.nav-list > li,
.site-header .nav-list > li {
    position: relative;

    margin: 0;
    padding: 0;
}

.nav-list > li > a,
.site-header .nav-list > li > a {
    position: relative;

    display: flex;
    align-items: center;

    height: 100px;

    margin: 0;
    padding: 0 13px;

    color: #b8c1cc;

    font-size: 14px;
    font-weight: 600;

    line-height: 1;
    white-space: nowrap;
}

.nav-list > li > a::after,
.site-header .nav-list > li > a::after {
    content: "";

    position: absolute;

    left: 13px;
    right: 13px;
    bottom: 0;

    height: 2px;

    background: var(--primary);

    transform: scaleX(0);
    transform-origin: center;

    transition:
        transform var(--transition);
}

.nav-list > li > a:hover,
.nav-list > li > a.active,
.site-header .nav-list > li > a:hover,
.site-header .nav-list > li > a.active {
    color: var(--white);
}

.nav-list > li > a:hover::after,
.nav-list > li > a.active::after,
.site-header .nav-list > li > a:hover::after,
.site-header .nav-list > li > a.active::after {
    transform: scaleX(1);
}


/* =====================================================
   DROPDOWN
===================================================== */

.dropdown {
    position: absolute;

    top: 78px;
    left: -20px;

    min-width: 280px;

    padding: 10px;

    border:
        1px solid var(--line);

    border-radius: 16px;

    background:
        rgba(15, 27, 42, 0.98);

    box-shadow: var(--shadow);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.dropdown li + li {
    margin-top: 3px;
}

.dropdown a {
    display: block;

    padding: 11px 13px;

    border-radius: 10px;

    color: #cbd4df;

    font-size: 13px;
    font-weight: 600;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.dropdown a:hover {
    background:
        rgba(255, 255, 255, 0.06);

    color: var(--white);

    transform: translateX(3px);
}


/* =====================================================
   TEKLIF AL BUTTON
===================================================== */

.nav-quote-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 125px;
    height: 48px;
    min-height: 48px;
    max-height: 48px;

    flex: 0 0 auto;

    padding: 0 23px;

    border-radius: 999px;

    background: var(--primary);

    color: var(--white);

    font-size: 13px;
    font-weight: 800;

    line-height: 1;
    white-space: nowrap;

    box-shadow:
        0 10px 30px rgba(36, 71, 169, 0.20);

    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.nav-quote-btn:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);

    box-shadow:
        0 15px 35px rgba(36, 71, 169, 0.30);
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.mobile-menu-toggle {
    display: none;

    width: 48px;
    height: 48px;

    padding: 0;

    border:
        1px solid var(--line);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.04);
}

.mobile-menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    margin: 4px auto;

    border-radius: 10px;

    background: var(--white);

    transition: var(--transition);
}


/* =====================================================
   HEADER RESPONSIVE
===================================================== */

@media (max-width: 1250px) {

    .site-header .navbar-wrap,
    .site-header .header-inner {
        width: calc(100% - 40px);
        gap: 25px;
    }

    .site-header .brand.brand-logo {
        width: 190px;
        flex-basis: 190px;
    }

    .site-header .brand-logo-image {
        width: 190px;
        max-width: 190px;
    }

    .nav-list,
    .site-header .nav-list {
        gap: 18px;
    }

    .nav-list > li > a,
    .site-header .nav-list > li > a {
        font-size: 12px;
    }

    .main-nav,
    .site-header .main-nav {
        gap: 20px;
    }

    .brand-text small,
    .site-header .logo-text small {
        display: none;
    }
}

@media (max-width: 900px) {

    .site-header .navbar-wrap,
    .site-header .header-inner {
        position: relative;

        width: calc(100% - 30px);

        height: 76px;
        min-height: 76px;
    }

    .site-header .brand.brand-logo {
        width: 165px;
        height: 64px;
        flex-basis: 165px;
    }

    .site-header .brand-logo-image {
        width: 165px;
        max-width: 165px;
        max-height: 60px;
    }

    .nav-quote-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav,
    .site-header .main-nav {
        position: absolute;

        top: 76px;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;
        align-items: stretch;

        height: auto;

        gap: 0;

        padding: 15px;

        border:
            1px solid rgba(255, 255, 255, 0.08);
        border-top: 0;

        border-radius:
            0 0 16px 16px;

        background:
            rgba(6, 16, 28, .98);

        box-shadow:
            0 25px 50px
            rgba(0, 0, 0, .25);

        backdrop-filter: blur(18px);
    }

    .main-nav.mobile-open,
    .main-nav.active,
    .main-nav.open {
        display: flex;
    }

    .nav-list,
    .site-header .nav-list {
        width: 100%;

        flex-direction: column;
        align-items: stretch;

        gap: 0;
    }

    .nav-list > li > a,
    .site-header .nav-list > li > a {
        height: 48px;

        padding: 0 20px;

        font-size: 12px;
    }

    .nav-list > li > a::after,
    .site-header .nav-list > li > a::after {
        display: none;
    }

    .nav-quote-btn {
        width: 100%;

        margin-top: 10px;
    }
}

@media (max-width: 480px) {

    .brand-text strong,
    .site-header .logo-text strong {
        font-size: 14px;
    }

    .brand-text small,
    .site-header .logo-text small {
        display: none;
    }
}


/* =====================================================
   TEMPORARY HERO
===================================================== */

.hero {
    position: relative;

    display: flex;

    align-items: center;

    min-height:
        calc(100vh - 84px);

    padding:
        120px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(36, 71, 169, 0.18),
            transparent 34%
        ),
        radial-gradient(
            circle at 20% 70%,
            rgba(92, 124, 255, 0.08),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #08111d,
            #0d1a29
        );
}

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );

    background-size:
        60px 60px;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    max-width: 850px;

    margin-bottom: 24px;

    color: var(--white);

    font-size:
        clamp(54px, 7vw, 104px);

    line-height: 0.95;

    letter-spacing: -4px;
}

.hero p {
    max-width: 680px;

    margin-bottom: 34px;

    color: var(--text-soft);

    font-size: 19px;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    padding:
        90px 0 0;

    border-top:
        1px solid var(--line);

    background:
        #060d16;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr 1fr 1.2fr 1fr 1.25fr;

    gap: 52px;

    padding-bottom: 70px;
}

.footer-col h4 {
    margin-bottom: 20px;

    color: var(--white);

    font-size: 15px;
    font-weight: 800;
}

.footer-about {
    padding-right: 25px;
}

.footer-brand {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--white);

    font-size: 24px;
    font-weight: 900;
}

.footer-about p,
.footer-contact p {
    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.9;
}

.footer-col ul li + li {
    margin-top: 11px;
}

.footer-col ul a {
    color: var(--text-soft);

    font-size: 13px;
    font-weight: 500;

    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-contact a {
    transition:
        color var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-socials {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 22px;
}

.footer-socials a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 38px;

    padding: 0 13px;

    border:
        1px solid var(--line);

    border-radius: 999px;

    color: var(--text-soft);

    font-size: 11px;
    font-weight: 700;

    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.footer-socials a:hover {
    background:
        rgba(255, 255, 255, 0.05);

    color: var(--white);

    border-color:
        rgba(255, 255, 255, 0.18);
}

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 78px;

    gap: 20px;

    border-top:
        1px solid var(--line);
}

.footer-bottom p {
    margin: 0;

    color: #788494;

    font-size: 11px;
}


/* =====================================================
   SELECTION
===================================================== */

::selection {
    background: var(--primary);
    color: var(--white);
}


/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #07101a;
}

::-webkit-scrollbar-thumb {
    border-radius: 20px;

    background: #25364a;
}

::-webkit-scrollbar-thumb:hover {
    background: #354c67;
}
/* =====================================================
   HOME PAGE - GLOBAL
===================================================== */

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";

    width: 30px;
    height: 1px;

    background: var(--primary);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 48px;
}

.section-heading h2,
.home-about h2,
.global-network h2,
.experience-content h2,
.why-heading h2,
.quote-cta h2 {
    margin-bottom: 0;

    color: var(--white);

    font-size: clamp(36px, 4.6vw, 66px);
    line-height: 1.05;

    letter-spacing: -2.4px;
}

.section-link,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--white);

    font-size: 13px;
    font-weight: 700;

    transition:
        color var(--transition),
        gap var(--transition);
}

.section-link:hover,
.text-link:hover {
    color: var(--primary);
    gap: 15px;
}


/* =====================================================
   HOME HERO
===================================================== */

.home-hero {
    position: relative;

    min-height: calc(100vh - 84px);

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 110px 0 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 32%,
            rgba(36, 71, 169, 0.28),
            transparent 33%
        ),
        radial-gradient(
            circle at 15% 75%,
            rgba(41, 80, 121, 0.25),
            transparent 36%
        ),
        linear-gradient(
            120deg,
            #08111d 0%,
            #0a1624 45%,
            #0c1824 100%
        );
}

.home-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    pointer-events: none;
}

.home-hero::after {
    content: "";

    position: absolute;

    width: 800px;
    height: 800px;

    right: -280px;
    top: -220px;

    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 50%;

    box-shadow:
        0 0 0 80px rgba(255,255,255,0.015),
        0 0 0 160px rgba(255,255,255,0.01);
}

.home-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(8,17,29,0.02),
            rgba(8,17,29,0.22)
        );
}

.home-hero-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);

    align-items: center;

    gap: 80px;

    padding-bottom: 95px;
}

.home-hero-content {
    max-width: 880px;
}

.home-hero-content h1 {
    margin-bottom: 28px;

    color: var(--white);

    font-size: clamp(58px, 7.4vw, 116px);
    line-height: 0.92;

    letter-spacing: -5px;
}

.home-hero-content h1 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255, 255, 255, 0.32);
}

.home-hero-content p {
    max-width: 720px;

    margin-bottom: 38px;

    color: #b7c1cf;

    font-size: 18px;
    line-height: 1.85;
}

.home-hero-actions {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 22px;
}

.hero-primary-btn {
    min-width: 145px;
}

.hero-secondary-btn {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--white);

    font-size: 14px;
    font-weight: 700;

    transition:
        gap var(--transition),
        color var(--transition);
}

.hero-secondary-btn:hover {
    gap: 15px;
    color: var(--primary);
}


/* =====================================================
   HERO SIDE CARD
===================================================== */

.hero-side-card {
    position: relative;

    padding: 34px;

    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.07),
            rgba(255,255,255,0.025)
        );

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.22);
}

.hero-card-label {
    display: block;

    margin-bottom: 26px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-side-card strong {
    display: flex;
    flex-direction: column;

    gap: 6px;

    margin-bottom: 22px;

    color: var(--white);

    font-size: 27px;
    line-height: 1.2;
}

.hero-side-card strong span {
    color: var(--primary);
}

.hero-side-card p {
    margin-bottom: 28px;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}

.hero-route-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}

.hero-route-line span {
    height: 3px;

    border-radius: 999px;

    background:
        rgba(255,255,255,0.12);
}

.hero-route-line span:first-child,
.hero-route-line span:nth-child(2) {
    background: var(--primary);
}


/* =====================================================
   HERO STATS
===================================================== */

.hero-stats {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat {
    padding: 32px 0;

    border-right:
        1px solid rgba(255,255,255,0.08);
}

.hero-stat:last-child {
    border-right: 0;
}

.hero-stat strong {
    display: block;

    margin-bottom: 5px;

    color: var(--white);

    font-size: 32px;
    font-weight: 800;
}

.hero-stat span {
    color: var(--text-soft);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =====================================================
   HOME ABOUT
===================================================== */

.home-about {
    padding: 140px 0;

    background: #0a1420;
}

.home-about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    gap: 110px;
}

.home-about-right {
    padding-top: 28px;
}

.home-about-right p {
    margin-bottom: 23px;

    color: #aeb9c7;

    font-size: 16px;
    line-height: 1.95;
}

.home-about-right .text-link {
    margin-top: 15px;
}


/* =====================================================
   SERVICES
===================================================== */

.home-services {
    padding: 140px 0;

    background: #08111d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    min-height: 330px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 34px;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.02),
            transparent
        );

    transition:
        transform var(--transition),
        background var(--transition);
}

.service-card:hover {
    background:
        linear-gradient(
            145deg,
            rgba(36, 71, 169, 0.12),
            rgba(255,255,255,0.02)
        );

    transform: translateY(-4px);
}

.service-number {
    color: rgba(255,255,255,0.22);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1px;
}

.service-card-content h3 {
    max-width: 320px;

    margin-bottom: 18px;

    color: var(--white);

    font-size: 24px;
    line-height: 1.25;
}

.service-card-content p {
    margin-bottom: 22px;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}

.service-card-content a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--white);

    font-size: 12px;
    font-weight: 700;

    transition:
        gap var(--transition),
        color var(--transition);
}

.service-card-content a:hover {
    gap: 12px;
    color: var(--primary);
}


/* =====================================================
   GLOBAL NETWORK
===================================================== */

.global-network {
    padding: 150px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(36, 71, 169, 0.16),
            transparent 30%
        ),
        #0c1724;
}

.global-network-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    align-items: center;

    gap: 90px;
}

.global-network-content p {
    max-width: 580px;

    margin: 30px 0 34px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.9;
}

.network-map-placeholder {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.network-globe {
    position: relative;

    width: min(100%, 560px);
    aspect-ratio: 1 / 1;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.08);

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,0.035),
            transparent 60%
        );

    box-shadow:
        inset 0 0 100px rgba(255,255,255,0.02),
        0 0 100px rgba(0,0,0,0.22);
}

.globe-ring {
    position: absolute;

    border:
        1px solid rgba(255,255,255,0.06);

    border-radius: 50%;
}

.globe-ring-one {
    inset: 14%;
}

.globe-ring-two {
    inset: 29%;
}

.map-point {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 9px;

    color: var(--white);

    font-size: 11px;
    font-weight: 700;

    padding: 8px 12px;

    border:
        1px solid rgba(255,255,255,0.09);

    border-radius: 999px;

    background:
        rgba(8,17,29,0.7);

    backdrop-filter: blur(8px);
}

.map-point span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 0 5px rgba(36, 71, 169, 0.10);
}

.point-tr {
    left: 20%;
    top: 54%;
}

.point-ge {
    left: 43%;
    top: 46%;
}

.point-kz {
    right: 9%;
    top: 33%;
}

.point-uz {
    right: 18%;
    bottom: 25%;
}

.point-ru {
    left: 40%;
    top: 13%;
}


/* =====================================================
   ROUTES
===================================================== */

.home-routes {
    padding: 140px 0;

    background: #08111d;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.route-card {
    position: relative;

    min-height: 230px;

    padding: 30px;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.025),
            rgba(255,255,255,0.01)
        );

    overflow: hidden;

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.route-card::after {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    right: -55px;
    bottom: -55px;

    border-radius: 50%;

    background:
        rgba(36, 71, 169, 0.07);
}

.route-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(36, 71, 169, 0.45);

    background:
        linear-gradient(
            145deg,
            rgba(36, 71, 169, 0.08),
            rgba(255,255,255,0.015)
        );
}

.route-countries {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 52px;

    color: var(--text-soft);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.route-arrow {
    color: var(--primary);
}

.route-card h3 {
    position: relative;
    z-index: 2;

    max-width: 330px;

    margin-bottom: 18px;

    color: var(--white);

    font-size: 21px;
    line-height: 1.35;
}

.route-detail {
    position: relative;
    z-index: 2;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}


/* =====================================================
   EXPERIENCE
===================================================== */

.experience-section {
    padding: 150px 0;

    background:
        linear-gradient(
            135deg,
            #0b1725,
            #0e1b2a
        );
}

.experience-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    align-items: center;

    gap: 100px;
}

.experience-year {
    position: relative;

    display: flex;
    flex-direction: column;

    justify-content: center;

    min-height: 390px;

    padding: 55px;

    border:
        1px solid var(--line);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at center,
            rgba(36, 71, 169, 0.10),
            transparent 60%
        );
}

.experience-year span {
    margin-bottom: 14px;

    color: var(--text-soft);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.experience-year strong {
    color: var(--white);

    font-size: clamp(76px, 10vw, 150px);
    line-height: 0.85;

    letter-spacing: -7px;
}

.experience-content p {
    max-width: 650px;

    margin: 28px 0 30px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.9;
}


/* =====================================================
   WHY MYS
===================================================== */

.why-mys {
    padding: 140px 0;

    background: #08111d;
}

.why-heading {
    max-width: 850px;

    margin-bottom: 56px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.why-card {
    min-height: 265px;

    padding: 30px;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.018);

    transition:
        transform var(--transition),
        background var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);

    background:
        rgba(255,255,255,0.035);
}

.why-card > span {
    display: block;

    margin-bottom: 60px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.why-card h3 {
    margin-bottom: 14px;

    color: var(--white);

    font-size: 20px;
}

.why-card p {
    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   QUOTE CTA
===================================================== */

.quote-cta {
    padding: 0 0 140px;

    background: #08111d;
}

.quote-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    padding: 70px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(255,255,255,0.08),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            var(--primary),
            #17347f
        );
}

.quote-cta-box .section-kicker {
    color: rgba(255,255,255,0.72);
}

.quote-cta-box .section-kicker::before {
    background:
        rgba(255,255,255,0.55);
}

.quote-cta-box h2 {
    max-width: 720px;
}

.quote-cta-box p {
    max-width: 620px;

    margin: 24px 0 0;

    color: rgba(255,255,255,0.76);

    font-size: 14px;
    line-height: 1.8;
}

.quote-large-btn {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    min-height: 58px;

    padding: 0 25px;

    border-radius: 999px;

    background: var(--white);
    color: #111;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform var(--transition),
        gap var(--transition);
}

.quote-large-btn:hover {
    transform: translateY(-3px);

    gap: 16px;
}


/* =====================================================
   BLOG
===================================================== */

.home-blog {
    padding: 140px 0;

    background: #0a1420;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.blog-card {
    overflow: hidden;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.018);
}

.blog-image {
    display: block;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: #101d2a;
}

.blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.04);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(255,255,255,0.12);

    font-size: 58px;
    font-weight: 900;
}

.blog-content {
    padding: 26px;
}

.blog-date {
    display: block;

    margin-bottom: 13px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}

.blog-content h3 {
    margin-bottom: 15px;

    font-size: 21px;
    line-height: 1.35;
}

.blog-content h3 a {
    color: var(--white);
}

.blog-content p {
    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   CONTACT STRIP
===================================================== */

.contact-strip {
    background: #060d16;
}

.contact-strip-inner {
    min-height: 150px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.contact-strip-inner div {
    display: flex;
    flex-direction: column;
}

.contact-strip-inner div span {
    margin-bottom: 4px;

    color: var(--text-soft);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-strip-inner div strong {
    color: var(--white);

    font-size: 26px;
}

.contact-strip-inner > a {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--white);

    font-size: 13px;
    font-weight: 800;

    transition:
        gap var(--transition),
        color var(--transition);
}

.contact-strip-inner > a:hover {
    gap: 15px;
    color: var(--primary);
}
/* =====================================================
   ABOUT PAGE
===================================================== */

.page-hero {
    position: relative;

    padding: 145px 0 115px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(36, 71, 169, 0.18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #08111d,
            #0c1724
        );

    border-bottom:
        1px solid var(--line);
}

.page-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    max-width: 1050px;

    margin-bottom: 30px;

    color: var(--white);

    font-size:
        clamp(58px, 7vw, 108px);

    line-height: 0.94;

    letter-spacing: -5px;
}

.page-hero h1 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,0.30);
}

.page-hero p {
    max-width: 680px;

    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 17px;
    line-height: 1.85;
}


/* =====================================================
   ABOUT INTRO
===================================================== */

.about-intro {
    padding: 140px 0;

    background: #0a1420;
}

.about-intro-grid {
    display: grid;

    grid-template-columns:
        1fr 0.95fr;

    gap: 110px;
}

.about-intro-heading h2 {
    margin-bottom: 0;

    color: var(--white);

    font-size:
        clamp(38px, 4.8vw, 68px);

    line-height: 1.04;

    letter-spacing: -2.5px;
}

.about-intro-content {
    padding-top: 22px;
}

.about-intro-content p {
    margin-bottom: 24px;

    color: var(--text-soft);

    font-size: 16px;
    line-height: 1.95;
}


/* =====================================================
   ABOUT BIG NUMBER
===================================================== */

.about-number-section {
    padding: 0 0 140px;

    background: #0a1420;
}

.about-number-card {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    align-items: center;

    min-height: 420px;

    padding: 60px;

    border:
        1px solid var(--line);

    border-radius: 30px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(36, 71, 169, 0.14),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #0e1b2a,
            #0b1622
        );
}

.about-number-year {
    color: var(--white);

    font-size:
        clamp(92px, 12vw, 170px);

    font-weight: 900;

    line-height: 0.85;

    letter-spacing: -8px;
}

.about-number-content {
    max-width: 650px;
}

.about-number-content > span {
    display: block;

    margin-bottom: 18px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.about-number-content h2 {
    margin-bottom: 24px;

    color: var(--white);

    font-size:
        clamp(34px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.about-number-content p {
    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.9;
}


/* =====================================================
   HISTORY
===================================================== */

.company-history {
    padding: 140px 0;

    background: #08111d;
}

.history-timeline {
    border-top:
        1px solid var(--line);
}

.history-item {
    display: grid;

    grid-template-columns:
        220px 1fr;

    gap: 60px;

    padding: 42px 0;

    border-bottom:
        1px solid var(--line);
}

.history-year {
    color: var(--primary);

    font-size: 30px;
    font-weight: 900;

    letter-spacing: -1px;
}

.history-content {
    max-width: 760px;
}

.history-content h3 {
    margin-bottom: 14px;

    color: var(--white);

    font-size: 24px;
}

.history-content p {
    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.85;
}


/* =====================================================
   VALUES
===================================================== */

.about-values {
    padding: 140px 0;

    background: #0c1724;
}

.about-values-heading {
    max-width: 800px;

    margin-bottom: 55px;
}

.about-values-heading h2 {
    margin-bottom: 0;

    color: var(--white);

    font-size:
        clamp(38px, 4.8vw, 66px);

    line-height: 1.05;

    letter-spacing: -2.5px;
}

.about-values-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.about-value-card {
    min-height: 285px;

    padding: 30px;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.018);

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.about-value-card:hover {
    transform: translateY(-5px);

    background:
        rgba(255,255,255,0.035);

    border-color:
        rgba(36, 71, 169, 0.30);
}

.about-value-card > span {
    display: block;

    margin-bottom: 58px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.about-value-card h3 {
    margin-bottom: 15px;

    color: var(--white);

    font-size: 20px;
}

.about-value-card p {
    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   WHY MYS ABOUT PAGE
===================================================== */

.about-why {
    padding: 150px 0;

    background: #08111d;
}

.about-why-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 110px;
}

.about-why-heading h2 {
    margin-bottom: 0;

    color: var(--white);

    font-size:
        clamp(38px, 4.8vw, 66px);

    line-height: 1.05;

    letter-spacing: -2.5px;
}

.about-why-list {
    border-top:
        1px solid var(--line);
}

.about-why-list article {
    padding: 28px 0;

    border-bottom:
        1px solid var(--line);
}

.about-why-list strong {
    display: block;

    margin-bottom: 10px;

    color: var(--white);

    font-size: 18px;
}

.about-why-list p {
    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.85;
}


/* =====================================================
   VISION MISSION
===================================================== */

.vision-mission {
    padding: 140px 0;

    background: #0b1622;
}

.vision-mission-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;
}

.vision-box {
    min-height: 420px;

    padding: 48px;

    border:
        1px solid var(--line);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.025),
            rgba(255,255,255,0.01)
        );
}

.vision-box > span {
    display: block;

    margin-bottom: 70px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.vision-box h2 {
    margin-bottom: 24px;

    color: var(--white);

    font-size:
        clamp(34px, 3.7vw, 54px);

    line-height: 1.08;

    letter-spacing: -2px;
}

.vision-box p {
    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.9;
}


/* =====================================================
   ABOUT ANCHOR OFFSET
===================================================== */

#tarihce,
#neden-mys {
    scroll-margin-top: 100px;
}
/* =====================================================
   SERVICES PAGE
===================================================== */

.services-page-intro {
    padding: 130px 0;

    background: #0a1420;
}

.services-page-intro-grid {
    display: grid;

    grid-template-columns:
        1fr 0.9fr;

    gap: 100px;
}

.services-page-intro h2 {
    margin-bottom: 0;

    color: var(--white);

    font-size:
        clamp(38px, 4.8vw, 66px);

    line-height: 1.05;

    letter-spacing: -2.5px;
}

.services-page-intro-text {
    padding-top: 24px;
}

.services-page-intro-text p {
    margin-bottom: 22px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.95;
}


/* =====================================================
   SERVICES LIST
===================================================== */

.services-page-list {
    padding: 0 0 140px;

    background: #0a1420;
}

.services-page-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.services-page-card {
    min-height: 390px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 38px;

    border:
        1px solid var(--line);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.025),
            rgba(255,255,255,0.01)
        );

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.services-page-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(36, 71, 169, 0.40);

    background:
        linear-gradient(
            145deg,
            rgba(36, 71, 169, 0.10),
            rgba(255,255,255,0.015)
        );
}

.services-page-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

.services-page-number {
    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
}

.services-page-arrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border:
        1px solid var(--line);

    border-radius: 50%;

    color: var(--white);

    font-size: 16px;
}

.services-page-card-content h2 {
    max-width: 520px;

    margin-bottom: 20px;

    color: var(--white);

    font-size:
        clamp(28px, 3vw, 42px);

    line-height: 1.12;

    letter-spacing: -1.4px;
}

.services-page-card-content p {
    max-width: 560px;

    margin-bottom: 26px;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.85;
}

.services-page-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--white);

    font-size: 12px;
    font-weight: 800;

    transition:
        gap var(--transition),
        color var(--transition);
}

.services-page-link:hover {
    gap: 15px;

    color: var(--primary);
}


/* =====================================================
   SERVICES PROCESS
===================================================== */

.services-process {
    padding: 140px 0;

    background: #08111d;
}

.services-process-heading {
    max-width: 850px;

    margin-bottom: 56px;
}

.services-process-heading h2 {
    margin-bottom: 0;

    color: var(--white);

    font-size:
        clamp(38px, 4.8vw, 66px);

    line-height: 1.05;

    letter-spacing: -2.5px;
}

.services-process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.services-process-grid article {
    min-height: 275px;

    padding: 30px;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.018);
}

.services-process-grid article > span {
    display: block;

    margin-bottom: 60px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.services-process-grid h3 {
    margin-bottom: 14px;

    color: var(--white);

    font-size: 20px;
}

.services-process-grid p {
    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}
/* =====================================================
   SERVICE DETAIL PAGE
===================================================== */

.service-detail-hero {
    padding: 110px 0 90px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(36, 71, 169, 0.16),
            transparent 28%
        ),
        #08111d;
}

.service-detail-breadcrumb {
    display: flex;

    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 55px;

    color: var(--text-soft);

    font-size: 11px;
    font-weight: 600;
}

.service-detail-breadcrumb a {
    transition: color var(--transition);
}

.service-detail-breadcrumb a:hover {
    color: var(--white);
}

.service-detail-breadcrumb strong {
    color: var(--primary);
}

.service-detail-hero-grid {
    display: grid;

    grid-template-columns:
        1.25fr 0.75fr;

    align-items: end;

    gap: 90px;
}

.service-detail-title h1 {
    max-width: 900px;

    margin-bottom: 0;

    color: var(--white);

    font-size:
        clamp(54px, 6.5vw, 100px);

    line-height: 0.96;

    letter-spacing: -4px;
}

.service-detail-summary p {
    margin-bottom: 30px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.9;
}


/* =====================================================
   SERVICE IMAGE
===================================================== */

.service-detail-visual {
    padding: 0 0 120px;

    background: #08111d;
}

.service-detail-image {
    overflow: hidden;

    min-height: 580px;

    border:
        1px solid var(--line);

    border-radius: 26px;

    background: #0d1926;
}

.service-detail-image img {
    width: 100%;
    height: 580px;

    object-fit: cover;
}

.service-detail-image-placeholder {
    position: relative;

    min-height: 580px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 55px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(36, 71, 169, 0.30),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #101e2d,
            #08111d
        );
}

.service-detail-image-placeholder::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -120px;
    top: -150px;

    border:
        1px solid rgba(255,255,255,0.06);

    border-radius: 50%;
}

.service-detail-image-placeholder span {
    margin-bottom: 12px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 3px;
}

.service-detail-image-placeholder strong {
    position: relative;
    z-index: 2;

    max-width: 850px;

    color: var(--white);

    font-size:
        clamp(40px, 6vw, 86px);

    line-height: 0.95;

    letter-spacing: -3px;
}


/* =====================================================
   SERVICE CONTENT
===================================================== */

.service-detail-content-section {
    padding: 140px 0;

    background: #0a1420;
}

.service-detail-content-grid {
    display: grid;

    grid-template-columns:
        0.35fr 0.65fr;

    gap: 100px;
}

.service-detail-sidebar {
    align-self: start;

    position: sticky;
    top: 120px;
}

.sidebar-label {
    display: block;

    margin-bottom: 12px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.service-detail-sidebar strong {
    display: block;

    max-width: 280px;

    color: var(--white);

    font-size: 20px;
    line-height: 1.4;
}

.service-sidebar-line {
    width: 100%;
    height: 1px;

    margin: 26px 0;

    background: var(--line);
}

.service-detail-sidebar a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--text-soft);

    font-size: 12px;
    font-weight: 700;

    transition:
        color var(--transition),
        gap var(--transition);
}

.service-detail-sidebar a:hover {
    gap: 13px;
    color: var(--white);
}

.service-detail-content h2 {
    max-width: 750px;

    margin-bottom: 35px;

    color: var(--white);

    font-size:
        clamp(38px, 4.5vw, 64px);

    line-height: 1.05;

    letter-spacing: -2.4px;
}

.rich-content {
    max-width: 820px;
}

.rich-content p {
    margin-bottom: 24px;

    color: var(--text-soft);

    font-size: 16px;
    line-height: 1.95;
}


/* =====================================================
   SERVICE ADVANTAGES
===================================================== */

.service-advantages {
    padding: 140px 0;

    background: #08111d;
}

.service-advantages-heading {
    max-width: 850px;

    margin-bottom: 56px;
}

.service-advantages-heading h2 {
    margin-bottom: 0;

    color: var(--white);

    font-size:
        clamp(38px, 4.8vw, 66px);

    line-height: 1.05;

    letter-spacing: -2.5px;
}

.service-advantages-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.service-advantages-grid article {
    min-height: 280px;

    padding: 30px;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.018);
}

.service-advantages-grid article > span {
    display: block;

    margin-bottom: 62px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.service-advantages-grid h3 {
    margin-bottom: 14px;

    color: var(--white);

    font-size: 20px;
}

.service-advantages-grid p {
    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   SERVICE PROCESS
===================================================== */

.service-detail-process {
    padding: 140px 0;

    background: #0b1622;
}

.service-detail-process-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 110px;
}

.service-process-heading h2 {
    margin-bottom: 0;

    color: var(--white);

    font-size:
        clamp(38px, 4.8vw, 66px);

    line-height: 1.05;

    letter-spacing: -2.5px;
}

.service-process-list {
    border-top:
        1px solid var(--line);
}

.service-process-list article {
    display: grid;

    grid-template-columns:
        70px 1fr;

    gap: 30px;

    padding: 28px 0;

    border-bottom:
        1px solid var(--line);
}

.service-process-list article > span {
    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.service-process-list h3 {
    margin-bottom: 9px;

    color: var(--white);

    font-size: 19px;
}

.service-process-list p {
    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}
/* =====================================================
   ROUTES PAGE
===================================================== */

.routes-page-intro {
    padding: 130px 0;

    background: #0a1420;
}

.routes-page-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;

    gap: 100px;
}

.routes-page-intro h2,
.routes-network h2,
.routes-features-heading h2 {
    margin-bottom: 0;

    color: var(--white);

    font-size:
        clamp(38px, 4.8vw, 66px);

    line-height: 1.05;

    letter-spacing: -2.5px;
}

.routes-page-intro-text {
    padding-top: 24px;
}

.routes-page-intro-text p {
    margin-bottom: 22px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.95;
}


/* =====================================================
   ROUTES NETWORK
===================================================== */

.routes-network {
    padding: 140px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(36, 71, 169, 0.14),
            transparent 30%
        ),
        #08111d;
}

.routes-network-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    align-items: center;

    gap: 90px;
}

.routes-network-content p {
    max-width: 590px;

    margin: 28px 0 34px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.9;
}

.routes-network-visual {
    min-height: 570px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.route-world {
    position: relative;

    width: min(100%, 570px);

    aspect-ratio: 1 / 1;

    border:
        1px solid rgba(255,255,255,0.07);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,0.035),
            transparent 60%
        );

    box-shadow:
        inset 0 0 100px rgba(255,255,255,0.015);
}

.route-world-circle {
    position: absolute;

    border:
        1px solid rgba(255,255,255,0.06);

    border-radius: 50%;
}

.circle-one {
    inset: 13%;
}

.circle-two {
    inset: 27%;
}

.circle-three {
    top: 10%;
    bottom: 10%;
    left: 45%;
    right: 45%;
}

.route-map-country {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 8px 12px;

    border:
        1px solid rgba(255,255,255,0.09);

    border-radius: 999px;

    background:
        rgba(8,17,29,0.78);

    color: var(--white);

    font-size: 10px;
    font-weight: 800;

    backdrop-filter: blur(8px);
}

.route-map-country span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 0 5px rgba(36, 71, 169, 0.10);
}

.country-tr {
    left: 14%;
    top: 56%;
}

.country-ge {
    left: 38%;
    top: 50%;
}

.country-az {
    right: 19%;
    top: 55%;
}

.country-ru {
    left: 40%;
    top: 13%;
}

.country-kz {
    right: 5%;
    top: 31%;
}

.country-uz {
    right: 15%;
    bottom: 22%;
}

.country-kg {
    right: 2%;
    bottom: 38%;
}


/* =====================================================
   ROUTE LIST
===================================================== */

.routes-page-list {
    padding: 140px 0;

    background: #0a1420;
}

.routes-page-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.routes-page-card {
    min-height: 430px;

    display: flex;
    flex-direction: column;

    padding: 34px;

    border:
        1px solid var(--line);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.025),
            rgba(255,255,255,0.01)
        );

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.routes-page-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(36, 71, 169, 0.38);

    background:
        linear-gradient(
            145deg,
            rgba(36, 71, 169, 0.09),
            rgba(255,255,255,0.012)
        );
}

.routes-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 45px;
}

.routes-card-number {
    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.routes-card-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border:
        1px solid var(--line);

    border-radius: 50%;

    color: var(--white);
}

.routes-card-route {
    display: grid;

    grid-template-columns:
        1fr 130px 1fr;

    align-items: center;

    gap: 22px;

    margin-bottom: 55px;
}

.routes-card-route > div:first-child {
    text-align: left;
}

.routes-card-route > div:last-child {
    text-align: right;
}

.routes-card-route small {
    display: block;

    margin-bottom: 7px;

    color: var(--text-soft);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.routes-card-route strong {
    display: block;

    color: var(--white);

    font-size: 19px;
}

.routes-card-route > div > span {
    display: block;

    margin-top: 4px;

    color: var(--text-soft);

    font-size: 11px;
}

.routes-card-line {
    display: flex;

    align-items: center;

    gap: 8px;
}

.routes-card-line span {
    flex: 1;

    height: 1px;

    background:
        rgba(255,255,255,0.13);
}

.routes-card-line b {
    color: var(--primary);

    font-size: 16px;
}

.routes-card-content {
    margin-top: auto;
}

.routes-card-content h2 {
    max-width: 500px;

    margin-bottom: 16px;

    color: var(--white);

    font-size:
        clamp(26px, 3vw, 38px);

    line-height: 1.15;

    letter-spacing: -1.4px;
}

.routes-card-content p {
    max-width: 520px;

    margin-bottom: 20px;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}

.routes-card-detail {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}


/* =====================================================
   ROUTE FEATURES
===================================================== */

.routes-features {
    padding: 140px 0;

    background: #08111d;
}

.routes-features-heading {
    max-width: 850px;

    margin-bottom: 55px;
}

.routes-features-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.routes-features-grid article {
    min-height: 275px;

    padding: 30px;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.018);
}

.routes-features-grid article > span {
    display: block;

    margin-bottom: 58px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.routes-features-grid h3 {
    margin-bottom: 14px;

    color: var(--white);

    font-size: 20px;
}

.routes-features-grid p {
    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}
/* =====================================================
   ROUTE DETAIL PAGE
===================================================== */

.route-detail-hero {
    padding: 110px 0 95px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(36, 71, 169, 0.16),
            transparent 28%
        ),
        #08111d;
}

.route-detail-hero-grid {
    display: grid;

    grid-template-columns:
        1.15fr 0.85fr;

    align-items: end;

    gap: 90px;
}

.route-detail-hero h1 {
    margin-bottom: 0;

    color: var(--white);

    font-size:
        clamp(58px, 7vw, 105px);

    line-height: 0.94;

    letter-spacing: -5px;
}

.route-detail-hero h1 span {
    color: var(--primary);
}

.route-detail-summary h2 {
    margin-bottom: 18px;

    color: var(--white);

    font-size: 26px;

    line-height: 1.25;
}

.route-detail-summary p {
    margin-bottom: 30px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.9;
}


/* =====================================================
   ROUTE VISUAL
===================================================== */

.route-detail-visual {
    padding: 0 0 120px;

    background: #08111d;
}

.route-detail-map-card {
    min-height: 360px;

    display: grid;

    grid-template-columns:
        1fr 1.5fr 1fr;

    align-items: center;

    gap: 35px;

    padding: 60px;

    border:
        1px solid var(--line);

    border-radius: 28px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(36, 71, 169, 0.09),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #0e1b29,
            #09131f
        );
}

.route-detail-point small {
    display: block;

    margin-bottom: 10px;

    color: var(--text-soft);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.route-detail-point strong {
    display: block;

    color: var(--white);

    font-size:
        clamp(28px, 3.5vw, 46px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.route-detail-point span {
    display: block;

    margin-top: 8px;

    color: var(--text-soft);

    font-size: 12px;
}

.route-detail-point-right {
    text-align: right;
}

.route-detail-line {
    display: flex;

    align-items: center;

    gap: 10px;
}

.route-line-dot {
    flex-shrink: 0;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 0 6px rgba(36, 71, 169, 0.11);
}

.route-moving-line {
    flex: 1;

    position: relative;

    height: 1px;

    overflow: hidden;

    background:
        rgba(255,255,255,0.12);
}

.route-moving-line span {
    position: absolute;

    top: 0;
    left: -30%;

    width: 30%;
    height: 100%;

    background: var(--primary);

    animation:
        routeLineMove 2.2s linear infinite;
}

.route-detail-line b {
    color: var(--primary);

    font-size: 20px;
}

@keyframes routeLineMove {

    from {
        left: -30%;
    }

    to {
        left: 100%;
    }

}


/* =====================================================
   ROUTE CONTENT
===================================================== */

.route-detail-content-section {
    padding: 140px 0;

    background: #0a1420;
}

.route-detail-content-grid {
    display: grid;

    grid-template-columns:
        0.35fr 0.65fr;

    gap: 100px;
}

.route-detail-sidebar {
    position: sticky;

    top: 120px;

    align-self: start;
}

.route-detail-sidebar strong {
    display: block;

    max-width: 280px;

    color: var(--white);

    font-size: 20px;
    line-height: 1.4;
}

.route-detail-sidebar a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--text-soft);

    font-size: 12px;
    font-weight: 700;

    transition:
        color var(--transition),
        gap var(--transition);
}

.route-detail-sidebar a:hover {
    gap: 13px;

    color: var(--white);
}

.route-detail-content h2 {
    max-width: 760px;

    margin-bottom: 35px;

    color: var(--white);

    font-size:
        clamp(38px, 4.5vw, 64px);

    line-height: 1.05;

    letter-spacing: -2.4px;
}


/* =====================================================
   ROUTE SERVICES
===================================================== */

.route-services-section {
    padding: 140px 0;

    background: #08111d;
}

.route-services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.route-services-grid article {
    min-height: 280px;

    padding: 30px;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.018);
}

.route-services-grid article > span {
    display: block;

    margin-bottom: 60px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.route-services-grid h3 {
    margin-bottom: 14px;

    color: var(--white);

    font-size: 20px;
}

.route-services-grid p {
    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
   ROUTE PROCESS
===================================================== */

.route-process {
    padding: 140px 0;

    background: #0b1622;
}

.route-process-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 110px;
}

.route-process-grid > div:first-child h2 {
    margin-bottom: 0;

    color: var(--white);

    font-size:
        clamp(38px, 4.8vw, 66px);

    line-height: 1.05;

    letter-spacing: -2.5px;
}

.route-process-list {
    border-top:
        1px solid var(--line);
}

.route-process-list article {
    display: grid;

    grid-template-columns:
        70px 1fr;

    gap: 30px;

    padding: 28px 0;

    border-bottom:
        1px solid var(--line);
}

.route-process-list article > span {
    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.route-process-list h3 {
    margin-bottom: 9px;

    color: var(--white);

    font-size: 19px;
}

.route-process-list p {
    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}
/* =====================================================
   OFFICES PAGE
===================================================== */

.offices-intro {
    padding: 130px 0;

    background: #0a1420;
}

.offices-intro-grid {
    display: grid;

    grid-template-columns:
        1fr 0.9fr;

    gap: 100px;
}

.offices-intro h2,
.offices-map-content h2 {
    margin-bottom: 0;

    color: var(--white);

    font-size:
        clamp(38px, 4.8vw, 66px);

    line-height: 1.05;

    letter-spacing: -2.5px;
}

.offices-intro-text {
    padding-top: 24px;
}

.offices-intro-text p {
    margin-bottom: 22px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.95;
}


/* =====================================================
   OFFICES MAP
===================================================== */

.offices-map-section {
    padding: 0 0 140px;

    background: #0a1420;
}

.offices-map-card {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    align-items: center;

    gap: 70px;

    min-height: 600px;

    padding: 60px;

    border:
        1px solid var(--line);

    border-radius: 28px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(36, 71, 169, 0.16),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #0e1b2a,
            #08111d
        );
}

.offices-map-content p {
    max-width: 560px;

    margin: 28px 0 0;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.9;
}

.offices-map-visual {
    min-height: 480px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.office-map-circle {
    position: relative;

    width: min(100%, 480px);

    aspect-ratio: 1 / 1;

    border:
        1px solid rgba(255,255,255,0.07);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,0.035),
            transparent 60%
        );
}

.office-map-ring {
    position: absolute;

    border:
        1px solid rgba(255,255,255,0.06);

    border-radius: 50%;
}

.ring-a {
    inset: 15%;
}

.ring-b {
    inset: 30%;
}

.office-map-pin {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 12px;

    border:
        1px solid rgba(255,255,255,0.09);

    border-radius: 999px;

    background:
        rgba(8,17,29,0.78);

    color: var(--white);

    font-size: 10px;
    font-weight: 800;

    backdrop-filter: blur(8px);
}

.office-map-pin span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 0 5px rgba(36, 71, 169, 0.10);
}

.office-pin-tr {
    left: 12%;
    top: 56%;
}

.office-pin-ge {
    left: 40%;
    top: 45%;
}

.office-pin-kz {
    right: 5%;
    top: 30%;
}

.office-pin-kg {
    right: 8%;
    bottom: 24%;
}


/* =====================================================
   OFFICE LIST
===================================================== */

.offices-list {
    padding: 140px 0;

    background: #08111d;
}

.offices-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.office-card {
    min-height: 430px;

    display: flex;
    flex-direction: column;

    padding: 36px;

    border:
        1px solid var(--line);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.025),
            rgba(255,255,255,0.01)
        );

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.office-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(36, 71, 169, 0.38);

    background:
        linear-gradient(
            145deg,
            rgba(36, 71, 169, 0.08),
            rgba(255,255,255,0.015)
        );
}

.office-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 70px;
}

.office-number {
    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.office-country {
    color: var(--text-soft);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.office-card-content {
    margin-top: auto;
}

.office-city {
    display: block;

    margin-bottom: 8px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.office-card-content h2 {
    margin-bottom: 20px;

    color: var(--white);

    font-size:
        clamp(28px, 3vw, 42px);

    line-height: 1.12;

    letter-spacing: -1.5px;
}

.office-address {
    max-width: 520px;

    margin-bottom: 28px;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.85;
}

.office-contact-list {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 28px;
}

.office-contact-list small {
    display: block;

    margin-bottom: 6px;

    color: var(--text-soft);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.office-contact-list a {
    color: var(--white);

    font-size: 13px;
    font-weight: 700;

    word-break: break-word;

    transition:
        color var(--transition);
}

.office-contact-list a:hover {
    color: var(--primary);
}

.office-map-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    transition:
        gap var(--transition);
}

.office-map-link:hover {
    gap: 14px;
}


/* =====================================================
   OFFICES CTA
===================================================== */

.offices-contact-cta {
    padding: 0 0 140px;

    background: #08111d;
}

.offices-contact-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 60px;

    padding: 65px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #101e2d,
            #0a1622
        );

    border:
        1px solid var(--line);
}

.offices-contact-box h2 {
    max-width: 760px;

    margin-bottom: 22px;

    color: var(--white);

    font-size:
        clamp(38px, 4.5vw, 62px);

    line-height: 1.05;

    letter-spacing: -2.2px;
}

.offices-contact-box p {
    max-width: 620px;

    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.85;
}
/* =====================================================
   QUOTE FORM PAGE
===================================================== */

.quote-form-section {
    padding: 130px 0 150px;

    background: #0a1420;
}

.quote-form-layout {
    display: grid;

    grid-template-columns:
        0.38fr 0.62fr;

    gap: 80px;

    align-items: start;
}

.quote-form-sidebar {
    position: sticky;

    top: 120px;
}

.quote-form-sidebar h2 {
    margin-bottom: 42px;

    color: var(--white);

    font-size:
        clamp(38px, 4.5vw, 62px);

    line-height: 1.05;

    letter-spacing: -2.3px;
}

.quote-form-steps {
    border-top:
        1px solid var(--line);
}

.quote-form-steps article {
    display: grid;

    grid-template-columns:
        48px 1fr;

    gap: 20px;

    padding: 24px 0;

    border-bottom:
        1px solid var(--line);
}

.quote-form-steps article > span {
    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.quote-form-steps strong {
    display: block;

    margin-bottom: 7px;

    color: var(--white);

    font-size: 16px;
}

.quote-form-steps p {
    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 12px;
    line-height: 1.7;
}


/* =====================================================
   FORM CARD
===================================================== */

.quote-form-card {
    padding: 46px;

    border:
        1px solid var(--line);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.03),
            rgba(255,255,255,0.012)
        );
}

.form-section-title {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 28px;
}

.form-section-title > span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    border:
        1px solid rgba(36, 71, 169, 0.35);

    border-radius: 50%;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;
}

.form-section-title strong {
    display: block;

    margin-bottom: 4px;

    color: var(--white);

    font-size: 19px;
}

.form-section-title p {
    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 12px;
}

.form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    color: #dce3eb;

    font-size: 11px;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    border:
        1px solid rgba(255,255,255,0.09);

    border-radius: 12px;

    outline: 0;

    background:
        rgba(255,255,255,0.025);

    color: var(--white);

    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.form-group input,
.form-group select {
    min-height: 52px;

    padding: 0 15px;
}

.form-group textarea {
    resize: vertical;

    padding: 14px 15px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #667384;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color:
        rgba(36, 71, 169, 0.55);

    background:
        rgba(255,255,255,0.04);

    box-shadow:
        0 0 0 4px rgba(36, 71, 169, 0.08);
}

.form-group select option {
    background: #0e1926;
    color: var(--white);
}

.form-divider {
    width: 100%;
    height: 1px;

    margin: 42px 0;

    background: var(--line);
}

.form-inline {
    display: grid;

    grid-template-columns:
        1fr 90px;

    gap: 10px;
}

.form-measurements {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;

    margin-top: 20px;
}

.form-options {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin: 30px 0;
}

.form-options label {
    display: flex;

    align-items: center;

    gap: 10px;

    min-height: 48px;

    padding: 0 14px;

    border:
        1px solid var(--line);

    border-radius: 11px;

    background:
        rgba(255,255,255,0.018);

    color: var(--text-soft);

    font-size: 12px;

    cursor: pointer;
}

.form-options input {
    accent-color: var(--primary);
}

.quote-submit-btn {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 58px;

    margin-top: 30px;

    border: 0;

    border-radius: 999px;

    background: var(--primary);

    color: var(--white);

    font-size: 13px;
    font-weight: 800;

    transition:
        background var(--transition),
        transform var(--transition),
        gap var(--transition);
}

.quote-submit-btn:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);

    gap: 17px;
}


/* =====================================================
   FORM ERRORS
===================================================== */

.form-errors {
    margin-bottom: 30px;

    padding: 20px;

    border:
        1px solid rgba(36, 71, 169, 0.32);

    border-radius: 13px;

    background:
        rgba(36, 71, 169, 0.08);
}

.form-errors strong {
    display: block;

    margin-bottom: 10px;

    color: var(--white);

    font-size: 13px;
}

.form-errors ul {
    padding-left: 18px;

    list-style: disc;
}

.form-errors li {
    color: #d8a9ab;

    font-size: 12px;
    line-height: 1.7;
}


/* =====================================================
   SUCCESS STATE
===================================================== */

.form-success {
    min-height: 520px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;
}

.form-success > span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;

    margin-bottom: 25px;

    border-radius: 50%;

    background:
        rgba(36, 71, 169, 0.13);

    color: var(--primary);

    font-size: 30px;
    font-weight: 800;
}

.form-success h2 {
    margin-bottom: 16px;

    color: var(--white);

    font-size:
        clamp(34px, 4vw, 52px);

    line-height: 1.08;
}

.form-success p {
    max-width: 480px;

    margin-bottom: 15px;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.8;
}

.form-success > strong {
    display: block;

    margin-bottom: 28px;

    color: var(--primary);

    font-size: 20px;

    letter-spacing: 1px;
}
/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-page {
    padding: 130px 0 150px;

    background: #0a1420;
}

.contact-page-grid {
    display: grid;

    grid-template-columns:
        0.42fr 0.58fr;

    gap: 85px;

    align-items: start;
}

.contact-info {
    position: sticky;

    top: 120px;
}

.contact-info h2 {
    margin-bottom: 26px;

    color: var(--white);

    font-size:
        clamp(38px, 4.6vw, 64px);

    line-height: 1.05;

    letter-spacing: -2.4px;
}

.contact-info > p {
    max-width: 560px;

    margin-bottom: 42px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.9;
}

.contact-info-list {
    border-top:
        1px solid var(--line);
}

.contact-info-list article {
    display: grid;

    grid-template-columns:
        50px 1fr;

    gap: 18px;

    padding: 24px 0;

    border-bottom:
        1px solid var(--line);
}

.contact-info-list article > span {
    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.contact-info-list small {
    display: block;

    margin-bottom: 5px;

    color: var(--text-soft);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.contact-info-list a,
.contact-info-list strong {
    color: var(--white);

    font-size: 15px;
    font-weight: 700;
}

.contact-info-list a {
    transition:
        color var(--transition);
}

.contact-info-list a:hover {
    color: var(--primary);
}


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form-card {
    padding: 46px;

    border:
        1px solid var(--line);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.03),
            rgba(255,255,255,0.012)
        );
}


/* =====================================================
   CONTACT OFFICES
===================================================== */

.contact-offices {
    padding: 140px 0;

    background: #08111d;
}

.contact-office-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.contact-office-grid article {
    min-height: 240px;

    padding: 30px;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background:
        rgba(255,255,255,0.018);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.contact-office-grid article:hover {
    transform: translateY(-5px);

    border-color:
        rgba(36, 71, 169, 0.35);

    background:
        rgba(255,255,255,0.032);
}

.contact-office-grid article > span {
    display: block;

    margin-bottom: 55px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;
}

.contact-office-grid h3 {
    margin-bottom: 12px;

    color: var(--white);

    font-size: 21px;
}

.contact-office-grid p {
    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}
/* =====================================================
   BLOG PAGE
===================================================== */

.blog-page {
    padding: 140px 0;

    background: #0a1420;
}

.blog-page-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.blog-page-card {
    overflow: hidden;

    border:
        1px solid var(--line);

    border-radius: 20px;

    background:
        rgba(255,255,255,0.018);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.blog-page-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(36, 71, 169, 0.35);

    background:
        rgba(255,255,255,0.03);
}

.blog-page-image {
    display: block;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: #101d2a;
}

.blog-page-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}

.blog-page-card:hover .blog-page-image img {
    transform: scale(1.04);
}

.blog-page-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color:
        rgba(255,255,255,0.12);

    font-size: 60px;
    font-weight: 900;
}

.blog-page-content {
    padding: 28px;
}

.blog-page-date {
    display: block;

    margin-bottom: 14px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}

.blog-page-content h2 {
    margin-bottom: 16px;

    color: var(--white);

    font-size:
        clamp(22px, 2.2vw, 30px);

    line-height: 1.3;

    letter-spacing: -0.8px;
}

.blog-page-content h2 a {
    color: inherit;
}

.blog-page-content p {
    margin-bottom: 22px;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}

.blog-page-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    transition:
        gap var(--transition);
}

.blog-page-link:hover {
    gap: 14px;
}


/* =====================================================
   BLOG EMPTY
===================================================== */

.blog-empty {
    min-height: 420px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 50px;

    border:
        1px solid var(--line);

    border-radius: 22px;

    text-align: center;

    background:
        rgba(255,255,255,0.018);
}

.blog-empty > span {
    margin-bottom: 22px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 900;

    letter-spacing: 3px;
}

.blog-empty h2 {
    max-width: 700px;

    margin-bottom: 16px;

    color: var(--white);

    font-size:
        clamp(30px, 4vw, 48px);

    line-height: 1.1;
}

.blog-empty p {
    max-width: 560px;

    margin-bottom: 0;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.8;
}
/* =====================================================
   BLOG DETAIL
===================================================== */

.blog-detail-hero {
    padding: 110px 0 95px;

    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(36, 71, 169, 0.15),
            transparent 28%
        ),
        #08111d;
}

.blog-detail-hero-content {
    max-width: 1050px;
}

.blog-detail-hero-content h1 {
    margin-bottom: 30px;

    color: var(--white);

    font-size:
        clamp(54px, 6.5vw, 98px);

    line-height: 0.98;

    letter-spacing: -4px;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;
}

.blog-detail-meta span {
    color: var(--text-soft);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.8px;
}

.blog-detail-meta span + span::before {
    content: "•";

    margin-right: 12px;

    color: var(--primary);
}


/* =====================================================
   BLOG DETAIL IMAGE
===================================================== */

.blog-detail-image-section {
    padding: 0 0 110px;

    background: #08111d;
}

.blog-detail-image {
    overflow: hidden;

    border:
        1px solid var(--line);

    border-radius: 26px;

    aspect-ratio: 16 / 8;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =====================================================
   BLOG CONTENT
===================================================== */

.blog-detail-content-section {
    padding: 135px 0;

    background: #0a1420;
}

.blog-detail-layout {
    display: grid;

    grid-template-columns:
        0.3fr 0.7fr;

    gap: 100px;
}

.blog-detail-sidebar {
    position: sticky;
    top: 120px;

    align-self: start;
}

.blog-detail-sidebar strong {
    display: block;

    color: var(--white);

    font-size: 18px;
}

.blog-detail-sidebar a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--text-soft);

    font-size: 12px;
    font-weight: 700;

    transition:
        gap var(--transition),
        color var(--transition);
}

.blog-detail-sidebar a:hover {
    gap: 13px;
    color: var(--white);
}

.blog-detail-content {
    max-width: 820px;
}

.blog-detail-lead {
    margin-bottom: 45px;

    color: var(--white);

    font-size:
        clamp(22px, 2.5vw, 32px);

    line-height: 1.5;

    letter-spacing: -0.6px;
}

.blog-rich-content {
    color: var(--text-soft);
}

.blog-rich-content p {
    margin-bottom: 26px;
}

.blog-rich-content h2,
.blog-rich-content h3 {
    margin:
        55px 0 22px;

    color: var(--white);
}

.blog-rich-content h2 {
    font-size: 36px;
}

.blog-rich-content h3 {
    font-size: 27px;
}


/* =====================================================
   BLOG STRIP
===================================================== */

.blog-share-strip {
    background: #08111d;
}

.blog-share-inner {
    min-height: 150px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-top:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);
}

.blog-share-inner > div {
    display: flex;
    flex-direction: column;
}

.blog-share-inner > div span {
    margin-bottom: 5px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.blog-share-inner > div strong {
    color: var(--white);

    font-size: 22px;
}

.blog-share-inner > a {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--white);

    font-size: 12px;
    font-weight: 800;

    transition:
        gap var(--transition),
        color var(--transition);
}

.blog-share-inner > a:hover {
    gap: 15px;
    color: var(--primary);
}
/* =====================================================
   404 PAGE
===================================================== */

.error-page {
    position: relative;

    min-height:
        calc(100vh - 84px);

    display: flex;

    align-items: center;

    padding: 110px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(36, 71, 169, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #08111d,
            #0b1724
        );
}

.error-page::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255,255,255,0.018) 1px,
            transparent 1px
        );

    background-size:
        70px 70px;
}

.error-page-inner {
    position: relative;
    z-index: 2;

    max-width: 900px;
}

.error-code {
    display: block;

    margin-bottom: 10px;

    color:
        rgba(255,255,255,0.07);

    font-size:
        clamp(110px, 20vw, 280px);

    font-weight: 900;

    line-height: 0.8;

    letter-spacing: -12px;
}

.error-page h1 {
    margin-bottom: 26px;

    color: var(--white);

    font-size:
        clamp(48px, 6vw, 88px);

    line-height: 0.98;

    letter-spacing: -4px;
}

.error-page h1 span {
    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,0.28);
}

.error-page p {
    max-width: 620px;

    margin-bottom: 34px;

    color: var(--text-soft);

    font-size: 16px;
    line-height: 1.85;
}

.error-actions {
    display: flex;

    align-items: center;
    flex-wrap: wrap;

    gap: 22px;
}

.error-secondary-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--white);

    font-size: 13px;
    font-weight: 800;

    transition:
        gap var(--transition),
        color var(--transition);
}

.error-secondary-link:hover {
    gap: 14px;

    color: var(--primary);
}
/* =====================================================
   LEGAL PAGES
===================================================== */

.legal-page {
    padding: 130px 0 150px;
    background: #0a1420;
}

.legal-layout {
    display: grid;
    grid-template-columns: 0.3fr 0.7fr;
    gap: 100px;
}

.legal-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.legal-sidebar strong {
    display: block;
    color: var(--white);
    font-size: 20px;
    line-height: 1.4;
}

.legal-sidebar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--text-soft);

    font-size: 12px;
    font-weight: 700;

    transition:
        color var(--transition),
        gap var(--transition);
}

.legal-sidebar a:hover {
    color: var(--white);
    gap: 13px;
}

.legal-content {
    max-width: 850px;
}

.legal-content h2 {
    margin-bottom: 35px;

    color: var(--white);

    font-size:
        clamp(38px, 4.5vw, 62px);

    line-height: 1.05;

    letter-spacing: -2.3px;
}

.legal-content h3 {
    margin: 45px 0 15px;

    color: var(--white);

    font-size: 22px;
}

.legal-content p {
    margin-bottom: 22px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.95;
}

.legal-note {
    margin-top: 50px;

    padding: 24px;

    border: 1px solid rgba(36, 71, 169, 0.25);
    border-radius: 14px;

    background: rgba(36, 71, 169, 0.06);

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.8;
}

.legal-note strong {
    color: var(--white);
}

/* =========================================================
   MYS PREMIUM LIGHT / BLUE THEME
   Yalnızca renk ve yüzey sistemi.
   Mevcut yerleşim, ölçüler ve HTML yapısı değiştirilmez.
========================================================= */

/* GENEL */
body {
    background: #f7f9fc;
    color: #0b1733;
}

/* HEADER / FOOTER / HERO: premium koyu lacivert */
.site-header {
    background: rgba(7, 18, 43, 0.96);
    border-bottom-color: rgba(255,255,255,0.08);
}

.site-header .nav-list > li > a,
.site-header .main-nav > .nav-list > li > a {
    color: #d7e0ef;
}

.site-header .nav-list > li > a:hover,
.site-header .nav-list > li > a.active {
    color: #ffffff;
}

.dropdown {
    background: rgba(10, 25, 57, 0.99);
    border-color: rgba(255,255,255,0.09);
}

.dropdown a {
    color: #d6dfed;
}

.site-footer,
.contact-strip {
    background: #07122b;
}

.home-hero,
.hero,
.page-hero {
    color: #ffffff;
    background:
        radial-gradient(
            circle at 78% 30%,
            rgba(64, 101, 211, 0.34),
            transparent 34%
        ),
        radial-gradient(
            circle at 14% 76%,
            rgba(32, 74, 171, 0.22),
            transparent 38%
        ),
        linear-gradient(
            125deg,
            #07122b 0%,
            #0b1d43 52%,
            #10285a 100%
        );
}

.home-hero-content h1,
.hero h1,
.page-hero h1,
.hero-side-card strong,
.hero-stat strong {
    color: #ffffff;
}

.home-hero-content p,
.hero p,
.page-hero p,
.hero-side-card p,
.hero-stat span {
    color: #cbd6e8;
}

.home-hero-content h1 span,
.page-hero h1 span {
    -webkit-text-stroke-color: rgba(255,255,255,0.42);
}

.hero-side-card {
    border-color: rgba(255,255,255,0.14);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.035)
        );
}

/* ---------------------------------------------------------
   AÇIK PREMIUM SAYFA BÖLÜMLERİ
--------------------------------------------------------- */

.home-about,
.home-services,
.home-routes,
.why-mys,
.home-blog,

.about-intro,
.about-number-section,
.company-history,
.about-values,
.about-why,
.vision-mission,

.services-page-intro,
.services-page-list,
.services-process,
.service-detail-content-section,
.service-advantages,
.service-detail-process,

.routes-page-intro,
.routes-page-list,
.routes-features,
.route-detail-content-section,
.route-services-section,
.route-process,

.offices-intro,
.offices-map-section,
.offices-list,

.quote-form-section,
.contact-page,
.contact-offices,

.blog-page,
.blog-detail-content-section,

.legal-page {
    background: #f7f9fc;
    color: #0b1733;
}

/* Birbiri ardına gelen bölümlerde çok düz beyaz görüntüyü kıran ton */
.home-services,
.about-values,
.services-process,
.service-advantages,
.routes-features,
.route-services-section,
.offices-list,
.contact-offices {
    background: #eef3fa;
}


/* ---------------------------------------------------------
   AÇIK ZEMİN BAŞLIKLARI
--------------------------------------------------------- */

:is(
    .home-about,
    .home-services,
    .home-routes,
    .why-mys,
    .home-blog,
    .about-intro,
    .about-number-section,
    .company-history,
    .about-values,
    .about-why,
    .vision-mission,
    .services-page-intro,
    .services-page-list,
    .services-process,
    .service-detail-content-section,
    .service-advantages,
    .service-detail-process,
    .routes-page-intro,
    .routes-page-list,
    .routes-features,
    .route-detail-content-section,
    .route-services-section,
    .route-process,
    .offices-intro,
    .offices-map-section,
    .offices-list,
    .quote-form-section,
    .contact-page,
    .contact-offices,
    .blog-page,
    .blog-detail-content-section,
    .legal-page
) h1,

:is(
    .home-about,
    .home-services,
    .home-routes,
    .why-mys,
    .home-blog,
    .about-intro,
    .about-number-section,
    .company-history,
    .about-values,
    .about-why,
    .vision-mission,
    .services-page-intro,
    .services-page-list,
    .services-process,
    .service-detail-content-section,
    .service-advantages,
    .service-detail-process,
    .routes-page-intro,
    .routes-page-list,
    .routes-features,
    .route-detail-content-section,
    .route-services-section,
    .route-process,
    .offices-intro,
    .offices-map-section,
    .offices-list,
    .quote-form-section,
    .contact-page,
    .contact-offices,
    .blog-page,
    .blog-detail-content-section,
    .legal-page
) h2,

:is(
    .home-about,
    .home-services,
    .home-routes,
    .why-mys,
    .home-blog,
    .about-intro,
    .about-number-section,
    .company-history,
    .about-values,
    .about-why,
    .vision-mission,
    .services-page-intro,
    .services-page-list,
    .services-process,
    .service-detail-content-section,
    .service-advantages,
    .service-detail-process,
    .routes-page-intro,
    .routes-page-list,
    .routes-features,
    .route-detail-content-section,
    .route-services-section,
    .route-process,
    .offices-intro,
    .offices-map-section,
    .offices-list,
    .quote-form-section,
    .contact-page,
    .contact-offices,
    .blog-page,
    .blog-detail-content-section,
    .legal-page
) h3,

:is(
    .home-about,
    .home-services,
    .home-routes,
    .why-mys,
    .home-blog,
    .about-intro,
    .about-number-section,
    .company-history,
    .about-values,
    .about-why,
    .vision-mission,
    .services-page-intro,
    .services-page-list,
    .services-process,
    .service-detail-content-section,
    .service-advantages,
    .service-detail-process,
    .routes-page-intro,
    .routes-page-list,
    .routes-features,
    .route-detail-content-section,
    .route-services-section,
    .route-process,
    .offices-intro,
    .offices-map-section,
    .offices-list,
    .quote-form-section,
    .contact-page,
    .contact-offices,
    .blog-page,
    .blog-detail-content-section,
    .legal-page
) h4 {
    color: #0b1733;
}


/* ---------------------------------------------------------
   AÇIK ZEMİN METİNLERİ
   Gri değil; okunaklı koyu lacivert.
--------------------------------------------------------- */

:is(
    .home-about,
    .home-services,
    .home-routes,
    .why-mys,
    .home-blog,
    .about-intro,
    .about-number-section,
    .company-history,
    .about-values,
    .about-why,
    .vision-mission,
    .services-page-intro,
    .services-page-list,
    .services-process,
    .service-detail-content-section,
    .service-advantages,
    .service-detail-process,
    .routes-page-intro,
    .routes-page-list,
    .routes-features,
    .route-detail-content-section,
    .route-services-section,
    .route-process,
    .offices-intro,
    .offices-map-section,
    .offices-list,
    .quote-form-section,
    .contact-page,
    .contact-offices,
    .blog-page,
    .blog-detail-content-section,
    .legal-page
) p {
    color: #344563;
}

:is(
    .home-about,
    .home-services,
    .home-routes,
    .why-mys,
    .home-blog,
    .about-intro,
    .about-number-section,
    .company-history,
    .about-values,
    .about-why,
    .vision-mission,
    .services-page-intro,
    .services-page-list,
    .services-process,
    .service-detail-content-section,
    .service-advantages,
    .service-detail-process,
    .routes-page-intro,
    .routes-page-list,
    .routes-features,
    .route-detail-content-section,
    .route-services-section,
    .route-process,
    .offices-intro,
    .offices-map-section,
    .offices-list,
    .quote-form-section,
    .contact-page,
    .contact-offices,
    .blog-page,
    .blog-detail-content-section,
    .legal-page
) .text-link,

:is(
    .home-about,
    .home-services,
    .home-routes,
    .why-mys,
    .home-blog,
    .about-intro,
    .about-number-section,
    .company-history,
    .about-values,
    .about-why,
    .vision-mission,
    .services-page-intro,
    .services-page-list,
    .services-process,
    .service-detail-content-section,
    .service-advantages,
    .service-detail-process,
    .routes-page-intro,
    .routes-page-list,
    .routes-features,
    .route-detail-content-section,
    .route-services-section,
    .route-process,
    .offices-intro,
    .offices-map-section,
    .offices-list,
    .quote-form-section,
    .contact-page,
    .contact-offices,
    .blog-page,
    .blog-detail-content-section,
    .legal-page
) .section-link {
    color: #17347f;
}


/* ---------------------------------------------------------
   KARTLAR
--------------------------------------------------------- */

.service-card,
.route-card,
.why-card,
.blog-card,
.about-value-card,
.office-card,
.contact-card,
.process-card {
    border-color: #dbe4f1;
    background: #ffffff;
    box-shadow:
        0 18px 55px rgba(15, 39, 82, 0.065);
}

.service-card:hover,
.route-card:hover,
.why-card:hover,
.blog-card:hover,
.about-value-card:hover,
.office-card:hover,
.contact-card:hover,
.process-card:hover {
    border-color: rgba(36, 71, 169, 0.30);
    background: #ffffff;
    box-shadow:
        0 24px 65px rgba(24, 55, 113, 0.11);
}

.service-card h3,
.route-card h3,
.why-card h3,
.blog-card h3,
.about-value-card h3,
.office-card h3,
.contact-card h3,
.process-card h3,

.service-card-content h3,
.blog-content h3,
.blog-content h3 a {
    color: #0b1733;
}

.service-card p,
.route-card p,
.why-card p,
.blog-card p,
.about-value-card p,
.office-card p,
.contact-card p,
.process-card p,

.service-card-content p,
.blog-content p {
    color: #40506a;
}

.service-card-content a,
.route-detail,
.blog-content a {
    color: #2447a9;
}

.service-number {
    color: rgba(20, 48, 94, 0.30);
}


/* ---------------------------------------------------------
   TARİHÇE / ÇİZGİLER
--------------------------------------------------------- */

.history-timeline,
.history-item {
    border-color: #dbe4f1;
}

.history-year {
    color: #2447a9;
}

.history-content h3 {
    color: #0b1733;
}

.history-content p {
    color: #344563;
}


/* ---------------------------------------------------------
   ABOUT 1975 KARTI
--------------------------------------------------------- */

.about-number-card {
    border-color: #d4e0f0;
    background:
        radial-gradient(
            circle at 17% 48%,
            rgba(36, 71, 169, 0.16),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #ffffff,
            #edf3fb
        );

    box-shadow:
        0 28px 80px rgba(17, 46, 98, 0.08);
}

.about-number-year,
.about-number-content h2 {
    color: #0b1733;
}

.about-number-content p {
    color: #344563;
}


/* ---------------------------------------------------------
   PREMIUM KOYU BÖLÜMLER
--------------------------------------------------------- */

.global-network,
.experience-section {
    background:
        radial-gradient(
            circle at 76% 48%,
            rgba(68, 103, 211, 0.22),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #07122b,
            #0d234f
        );
}

.global-network h2,
.experience-section h2,
.experience-year strong,
.global-network .map-point {
    color: #ffffff;
}

.global-network p,
.experience-section p,
.experience-year span {
    color: #c5d1e3;
}

.network-globe {
    border-color: rgba(255,255,255,0.12);
}

.map-point {
    background: rgba(7,18,43,0.78);
    border-color: rgba(255,255,255,0.11);
}


/* ---------------------------------------------------------
   CTA
--------------------------------------------------------- */

.quote-cta {
    background: #f7f9fc;
}

.quote-cta-box {
    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(255,255,255,0.14),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #17347f,
            #2853bd
        );

    box-shadow:
        0 30px 80px rgba(29, 65, 145, 0.20);
}

.quote-cta-box h2,
.quote-cta-box p,
.quote-cta-box .section-kicker {
    color: #ffffff;
}

.quote-large-btn {
    background: #ffffff;
    color: #122c68;
}


/* ---------------------------------------------------------
   FORMLAR
--------------------------------------------------------- */

.quote-form-section input,
.quote-form-section textarea,
.quote-form-section select,
.contact-page input,
.contact-page textarea,
.contact-page select {
    background: #ffffff;
    color: #0b1733;
    border-color: #d7e1ef;
}

.quote-form-section input::placeholder,
.quote-form-section textarea::placeholder,
.contact-page input::placeholder,
.contact-page textarea::placeholder {
    color: #738099;
}

.quote-form-section input:focus,
.quote-form-section textarea:focus,
.quote-form-section select:focus,
.contact-page input:focus,
.contact-page textarea:focus,
.contact-page select:focus {
    border-color: #2447a9;
    box-shadow:
        0 0 0 4px rgba(36,71,169,0.08);
}


/* ---------------------------------------------------------
   BLOG / GÖRSEL PLACEHOLDER
--------------------------------------------------------- */

.blog-image,
.blog-page-image {
    background: #e9eff8;
}

.blog-image-placeholder {
    color: rgba(25, 53, 101, 0.18);
}


/* ---------------------------------------------------------
   SCROLLBAR
--------------------------------------------------------- */

::-webkit-scrollbar-track {
    background: #eef3fa;
}

::-webkit-scrollbar-thumb {
    background: #a8b8d2;
}

::-webkit-scrollbar-thumb:hover {
    background: #7d94b8;
}


/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */

.site-footer {
    border-top-color: rgba(255,255,255,0.08);
    background: #07122b;
}

.site-footer h4,
.site-footer .footer-brand {
    color: #ffffff;
}

.site-footer p,
.site-footer a,
.site-footer .footer-about p,
.site-footer .footer-contact p {
    color: #b9c7dc;
}

.site-footer a:hover {
    color: #ffffff;
}


/* ---------------------------------------------------------
   DARK SECTION LINKS / KICKERS
--------------------------------------------------------- */

.home-hero .section-kicker,
.page-hero .section-kicker,
.global-network .section-kicker,
.experience-section .section-kicker,
.contact-strip .section-kicker {
    color: #8fabff;
}

.home-hero .section-kicker::before,
.page-hero .section-kicker::before,
.global-network .section-kicker::before,
.experience-section .section-kicker::before {
    background: #8fabff;
}
/* ==========================================
   SERVICE CARD IMAGES
========================================== */

.service-card {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: #ffffff;
}

.service-card-image {
    position: relative;

    width: 100%;
    height: 220px;

    overflow: hidden;

    background: #0b1733;
}

.service-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .55s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.06);
}

.service-card-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7, 18, 43, 0.02) 35%,
            rgba(7, 18, 43, 0.65) 100%
        );

    pointer-events: none;
}

.service-card-image .service-number {
    position: absolute;

    left: 28px;
    bottom: 22px;

    z-index: 2;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 1px;
}

.service-card-content {
    padding: 32px 34px 36px;
}
/* =====================================================================
   TEMA DÜZELTME YAMASI (theme fix patch)
   -----------------------------------------------------------------
   Bu dosyayı mevcut CSS dosyanızın EN SONUNA ekleyin (append).
   CSS'te aynı özgüllükteki (specificity) kurallarda sonra gelen kazanır,
   bu yüzden bu blok en sonda olduğu sürece aşağıdaki düzeltmeler
   otomatik olarak devreye girer; dosyanın başka hiçbir yerini
   değiştirmenize gerek yok.

   NEDEN BOZUKTU?
   Sitenin altına eklenen "açık/mavi premium tema" yaması, --text-soft
   ve h1-h4 renklerini KOYU (lacivert) yapacak şekilde genel (:is())
   seçicilerle çoğu bölümü kapsamış; ama bazı bileşenler bu genel
   listenin dışında kalmış ya da tam tersi, kasıtlı olarak KOYU zeminli
   kalması gereken bir kart yanlışlıkla o genel listeye dahil edilmiş.
   Sonuç: bazı yerlerde beyaz yazı beyaz/açık zemin üzerinde, bazı
   yerlerde de koyu lacivert yazı koyu zemin üzerinde kayboluyordu.
   Aşağıda her biri tek tek düzeltiliyor.
===================================================================== */


/* ---------------------------------------------------------------
   1) Açık zeminli kenar çubuğu (sidebar) başlıkları
      Bunlar <strong> etiketi kullandığı için genel h1-h4 düzeltmesi
      onları kapsamıyordu ve var(--white) olarak kalmışlardı.
--------------------------------------------------------------- */
.legal-sidebar strong,
.service-detail-sidebar strong,
.route-detail-sidebar strong,
.blog-detail-sidebar strong,
.quote-form-steps strong,
.form-section-title strong,
.contact-info-list a,
.contact-info-list strong,
.office-contact-list a,
.routes-card-route strong {
    color: #0b1733;
}

.contact-info-list a:hover,
.office-contact-list a:hover {
    color: var(--primary);
}


/* ---------------------------------------------------------------
   2) Daire ikon/ok butonları (services-page-arrow, routes-card-arrow)
      Zemin devraldıkları kart artık beyaz olduğu için beyaz ikon
      görünmez oluyordu.
--------------------------------------------------------------- */
.services-page-arrow,
.routes-card-arrow {
    background: #f2f6fb;
    border-color: #c9d7ec;
    color: #17347f;
    transition:
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.services-page-card:hover .services-page-arrow,
.routes-page-card:hover .routes-card-arrow {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}


/* ---------------------------------------------------------------
   3) Form etiketleri (.form-group label)
      #dce3eb neredeyse beyaza yakın bir gri; açık zeminde okunmuyordu.
--------------------------------------------------------------- */
.form-group label {
    color: #17264a;
}


/* ---------------------------------------------------------------
   4) Koyu tema için tasarlanmış yarı saydam beyaz kart zeminleri
      (rgba(255,255,255,0.01-0.03)) açık sayfa zemininde neredeyse
      hiç görünmüyor, kartlar "kayboluyordu". Diğer kartlarla (service-
      card, route-card vb.) tutarlı, düz beyaz zemine çekildi.
--------------------------------------------------------------- */
.services-page-card,
.routes-page-card,
.quote-form-card,
.contact-form-card,
.services-process-grid article,
.service-advantages-grid article,
.routes-features-grid article,
.route-services-grid article,
.contact-office-grid article,
.blog-page-card,
.blog-empty {
    background: #ffffff;
    border-color: #dbe4f1;
    box-shadow: 0 18px 55px rgba(15, 39, 82, 0.06);
}

.services-page-card:hover,
.routes-page-card:hover {
    background: #ffffff;
    border-color: rgba(36, 71, 169, 0.35);
    box-shadow: 0 24px 65px rgba(24, 55, 113, 0.11);
}

.form-options label {
    background: var(--surface-2);
    border-color: #dbe4f1;
}


/* ---------------------------------------------------------------
   5) Ofis harita kartı (.offices-map-section / .offices-map-card)
      Bu kart bilinçli olarak KOYU tasarlanmış (routes-network ve
      global-network'teki "harita/globe" görselleriyle aynı dil),
      ama genel açık tema listesine yanlışlıkla dahil edilmiş ve
      başlık/paragraf rengi koyu lacivert olmuştu → koyu zemin
      üzerinde koyu yazı. Burada bölüm bilinçli olarak yeniden
      koyulaştırılıyor ve metin renkleri buna göre ayarlanıyor.
--------------------------------------------------------------- */
.offices-map-section {
    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(36, 71, 169, 0.16),
            transparent 32%
        ),
        #0c1724;
}

.offices-map-card {
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(36, 71, 169, 0.14),
            transparent 32%
        ),
        linear-gradient(135deg, #0e1b2a, #08111d);
}

.offices-map-content h2 {
    color: #ffffff;
}

.offices-map-content p {
    color: #b7c1cf;
}


/* ---------------------------------------------------------------
   6) Kalıcı koyu kalan bölümlerde (hero değil, iç sayfa "hero"ları
      ve şeritler) var(--text-soft) artık koyu lacivert olduğu için
      bu bölümlerdeki paragraf/etiket metinleri de koyu zemin
      üzerinde neredeyse görünmez hale gelmişti.
--------------------------------------------------------------- */
.contact-strip-inner div span,
.error-page p,
.service-detail-summary p,
.service-detail-breadcrumb,
.route-detail-summary p,
.route-detail-point span,
.blog-detail-meta span,
.routes-network-content p {
    color: #b7c1cf;
}

.service-detail-breadcrumb a:hover {
    color: #ffffff;
}