:root {
    --navy: #0c1526;
    --navy-2: #101c33;
    --navy-3: #16223b;
    --orange: #a9834b;
    --orange-2: #c9a76a;
    --white: #ffffff;
    --ink: #10182b;
    --muted: #64748b;
    --muted-lt: #94a3b8;
    --border: #e6e9ef;
    --bg-soft: #f7f8fb;
    --radius: 14px;
    --maxw: 1320px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--orange);
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: .25s ease;
}

.btn-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    box-shadow: 0 8px 24px rgba(245, 130, 31, .35);
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 130, 31, .45);
}

.btn-white {
    background: #fff;
    color: var(--navy);
}

.btn-white:hover {
    background: #eef0f4;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .35);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .1);
}

.btn-dark {
    background: var(--navy);
    color: #fff;
    border-radius: 5px;
}

/* ===== CORPORATE HEADER ===== */
.site-header {
    position: relative;
    z-index: 1000;
}

.topbar {
    background: #111827;
    color: #c4cad4;
    font-size: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.topbar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}


.topbar-left a {
    color: #d3d8e0;
}

.topbar-left a:hover {
    color: #fff;
}

.topbar-lang {
    color: #d3d8e0;
    font-weight: 700;
}

.nav-outer {
    background: #fff;
    border-bottom: 1px solid #e4e7eb;
    position: relative;
    z-index: 50;
}

.navbar-main {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-right: 18px;
}

.logo img {
    display: block;
    height: 46px;
    width: auto;
}

.menu-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.menu-main>a,
.dropdown-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 30px 13px;
    color: #374151;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.menu-main>a:hover,
.dropdown-trigger:hover {
    color: var(--navy);
}

.menu-main>a.active {
    color: var(--navy);
    border-bottom-color: var(--orange);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 245px;
    padding: 8px 0;
    background: #fff;
    border: 1px solid #e2e5e9;
    border-top: 2px solid var(--orange);
    box-shadow: 0 7px 20px rgba(15, 23, 42, .10);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(4px);
    transition: .18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #4b5563;
    font-size: 12px;
    font-weight: 600;
}

.nav-dropdown-menu a:hover {
    background: #f6f7f8;
    color: var(--navy);
}

.nav-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    height: 40px;
    padding: 0 18px;
    color: #fff;
    background: var(--orange);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.header-cta:hover {
    color: #fff;
    background: #8e6d3e;
}

.burger {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 40px;
    margin-left: 10px;
    padding: 0;
    border: 1px solid #dfe3e8;
    background: #fff;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #1f2937;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(17, 24, 39, .55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .2s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 360px;
    max-width: 88%;
    height: 100%;
    padding: 24px;
    background: #fff;
    border-left: 1px solid #e1e4e8;
    transform: translateX(100%);
    transition: .25s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open .mobile-panel {
    transform: translateX(0);
}

.mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-panel-head img {
    height: 38px;
    width: auto;
}

.mobile-close {
    width: 38px;
    height: 38px;
    border: 1px solid #dfe3e8;
    background: #fff;
    color: #1f2937;
}

.mobile-menu-links {
    margin-top: 10px;
}

.mobile-menu-links a {
    display: block;
    padding: 14px 2px;
    border-bottom: 1px solid #edf0f2;
    color: #263244;
    font-size: 15px;
    font-weight: 700;
}

.mobile-menu-links a.active {
    color: var(--orange);
}

.mobile-menu-bottom {
    margin-top: auto;
    padding-top: 20px;
}

.mobile-contact {
    padding: 14px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 15px;
}

.mobile-contact span {
    display: block;
    margin-bottom: 5px;
    color: #6b7280;
    font-size: 11px;
}

.mobile-contact a {
    color: #1f2937;
    font-size: 15px;
    font-weight: 800;
}

.mobile-cta {
    width: 100%;
    justify-content: center;
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--navy);
    color: #c9d2e0;
    font-size: 13.5px;
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 42px;
}

.topbar-left {
    display: flex;
    gap: 28px;
    align-items: center;
}

.topbar-left a {
    color: #c9d2e0;
    display: flex;
    align-items: center;
    gap: 7px;
}

.topbar-left a.phone {
    color: var(--orange-2);
    font-weight: 600;
}

.topbar-left b {
    color: #fff;
    font-weight: 700;
    margin-right: 2px;
}

.topbar-right {
    display: flex;
    gap: 14px;
    align-items: center;
}

.lang {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
}

.lang.active {
    background: rgba(255, 255, 255, .08);
}

.flag {
    width: 16px;
    height: 11px;
    border-radius: 2px;
    display: inline-block;
}

.flag.tr {
    background: linear-gradient(#e30a17, #e30a17);
}

.flag.us {
    background: repeating-linear-gradient(#b22234 0 2px, #fff 2px 4px);
}

/* ===== NAV ===== */
.nav-outer {
    position: sticky;
    top: 0;
    z-index: 50;
    background: transparent;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .97);
    border-radius: 16px;
    padding: 12px 20px;
    margin-top: 18px;
    box-shadow: 0 10px 40px rgba(10, 20, 40, .12);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 44px;
    width: auto;
}

.menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu a {
    padding: 10px 16px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14.5px;
    color: #374151;
}

.menu a.active,
.menu a:hover {
    background: #f2f4f8;
    color: var(--navy);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== MOBILE MENU TOGGLE ===== */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: 5px;
    background: #f2f4f8;
    border: none;
    cursor: pointer;
    flex: none;
}

.burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--navy);
    margin: 0 auto;
    border-radius: 2px;
    transition: .25s ease;
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(8, 14, 28, .55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility 0s linear .25s;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .25s ease, visibility 0s linear 0s;
}

.mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 78%;
    max-width: 340px;
    background: #fff;
    padding: 26px 24px;
    box-shadow: -10px 0 40px rgba(10, 20, 40, .25);
    transform: translateX(100%);
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open .mobile-panel {
    transform: translateX(0);
}

.mobile-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.mobile-panel-head img {
    height: 32px;
    width: auto;
}

.mobile-close {
    width: 38px;
    height: 38px;
    border-radius: 5px;
    background: #f2f4f8;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--navy);
}

.mobile-panel a {
    display: block;
    padding: 14px 6px;
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    border-bottom: 1px solid var(--border);
}

.mobile-panel a.active {
    color: var(--orange);
}

.mobile-panel .btn {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-bg img.active {
    opacity: 1;
}

.hero-inner {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 30px;
}

.hero-badge .num {
    font-size: 76px;
    font-weight: 800;
    background: linear-gradient(180deg, #fff, #c9d2e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.hero-badge .txt b {
    font-size: 34px;
    display: block;
}

.hero-badge .txt b span {
    color: var(--orange-2);
}

.hero-badge .txt small {
    letter-spacing: .18em;
    font-size: 12.5px;
    color: #aab4c8;
    font-weight: 700;
    display: block;
    margin-top: 6px;
}

.hero-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-left {
    max-width: 640px;
    border-left: 3px solid var(--orange);
    padding-left: 22px;
}

.hero-left h1 {
    font-size: 46px;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-left h1 span {
    color: var(--orange-2);
}

.hero-left p {
    color: #c3ccdd;
    font-size: 16.5px;
    max-width: 520px;
    margin-bottom: 26px;
}

.tracking-card {
    background: rgba(16, 24, 45, .85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 22px;
    width: 340px;
}

.tracking-card .head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.tracking-card .icon {
    width: 42px;
    height: 42px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tracking-card h4 {
    color: #fff;
    font-size: 16px;
}

.tracking-card p {
    color: #9aa5ba;
    font-size: 12.5px;
    margin-top: 2px;
}

.tracking-card input {
    width: 100%;
    padding: 13px 14px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
}

.tracking-card input::placeholder {
    color: #7c86a0;
}

.tracking-card .btn {
    width: 100%;
    justify-content: center;
}

.scroll-hint {
    text-align: center;
    color: #9aa5ba;
    font-size: 11.5px;
    letter-spacing: .2em;
    font-weight: 700;
    margin-top: 46px;
}

/* ===== SERVICES ===== */
.services {
    padding: 90px 0;
    background: var(--white);
}

.services h2 {
    font-size: 34px;
    margin-bottom: 44px;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.svc-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 340px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 6px 20px rgba(10, 20, 40, .08);
    transition: .3s ease;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(10, 20, 40, .18);
}

.svc-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6, 10, 20, .9) 100%);
}

.svc-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 5px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.svc-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px;
    z-index: 2;
    color: #fff;
}

.svc-body h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 6px;
}

.svc-body p {
    font-size: 12.5px;
    color: #d7dcea;
    line-height: 1.4;
    margin-bottom: 10px;
}

.svc-body .link {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--orange-2);
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width:1100px) {
    .svc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:640px) {
    .svc-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--bg-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about h2 {
    font-size: 38px;
    margin: 16px 0 20px;
    line-height: 1.2;
}

.about h2 span {
    color: var(--orange);
}

.about p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 15.5px;
}

.about p b {
    color: var(--ink);
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--ink);
    border-bottom: 2px solid var(--orange);
    padding-bottom: 4px;
    margin-top: 8px;
}

.about-img {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 380px;
    background: linear-gradient(135deg, #1c3358, #0c1526);
}

.stat-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #fff;
    border-radius: 6px;
    padding: 20px 26px;
    box-shadow: 0 12px 34px rgba(10, 20, 40, .2);
}

.stat-float .n {
    font-size: 34px;
    font-weight: 800;
    color: var(--orange);
}

.stat-float .l {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .05em;
    margin-top: 2px;
}

/* ===== MAP ===== */
.map-sec {
    padding: 100px 0;
    background: #fff;
}

.map-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.map-grid h2 {
    font-size: 38px;
    margin: 14px 0 18px;
}

.map-grid p {
    color: var(--muted);
    font-size: 15.5px;
    margin-bottom: 26px;
    max-width: 440px;
}

.map-stats {
    display: flex;
    gap: 34px;
    margin-bottom: 22px;
}

.map-stats .item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.map-stats .ic {
    width: 34px;
    height: 34px;
    border-radius: 5px;
    background: #fef1e6;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex: none;
}

.map-stats b {
    display: block;
    font-size: 15px;
}

.map-stats small {
    color: var(--muted);
    font-size: 12.5px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags span {
    background: #f1f3f7;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 8px 14px;
    border-radius: 100px;
}

.map-visual {
    position: relative;
    border-radius: 18px;
    background: #f4f6f9;
    height: 460px;
    overflow: hidden;
    background-image: radial-gradient(circle at 25% 30%, #e8ebf1 0, transparent 50%), radial-gradient(circle at 70% 60%, #eceff4 0, transparent 55%);
}

.map-visual svg {
    width: 100%;
    height: 100%;
}

.pin {
    position: absolute;
    transform: translate(-50%, -100%);
    font-size: 11.5px;
    font-weight: 700;
    white-space: nowrap;
}

.pin .lbl {
    background: #fff;
    padding: 6px 12px;
    border-radius: 100px;
    box-shadow: 0 6px 16px rgba(10, 20, 40, .14);
    color: #1e293b;
}

.pin.center .lbl {
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    padding: 9px 18px;
}

/* ===== PROCESS ===== */
.process {
    padding: 100px 0;
    background: var(--bg-soft);
    text-align: center;
}

.process h2 {
    font-size: 36px;
    margin: 14px 0 14px;
}

.process>.wrap>p {
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 50px;
    font-size: 15.5px;
}

.proc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: left;
}

.proc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 22px;
    position: relative;
}

.proc-card.active {
    box-shadow: 0 14px 30px rgba(10, 20, 40, .1);
    border-color: #fcded0;
}

.proc-card.active::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 3px;
    background: var(--orange);
    border-radius: 2px 2px 0 0;
}

.proc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.proc-ic {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: #f1f3f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.proc-card.active .proc-ic {
    background: #fef1e6;
}

.proc-num {
    font-size: 26px;
    font-weight: 800;
    color: #dfe3ea;
}

.proc-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.proc-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width:1000px) {
    .proc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:600px) {
    .proc-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SECTORS ===== */
.sectors {
    padding: 100px 0;
    background: var(--navy);
    color: #fff;
}

.sect-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: start;
}

.sect-left h2 {
    color: #fff;
    font-size: 38px;
    margin: 14px 0 16px;
}

.sect-left h2 span {
    color: var(--orange);
}

.sect-left>p {
    color: #aab4c8;
    font-size: 15.5px;
    max-width: 480px;
    margin-bottom: 36px;
}

.sect-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.sect-card {
    height: 150px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
}

.sect-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 16, 30, .15), rgba(6, 10, 20, .85));
}

.sect-card .tag {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sect-card .ic {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex: none;
}

.c1 {
    background: linear-gradient(135deg, #3a2f1f, #1a1408);
}

.c1 .ic {
    background: #e8a020;
}

.c2 {
    background: linear-gradient(135deg, #341414, #150a0a);
}

.c2 .ic {
    background: #e2483f;
}

.c3 {
    background: linear-gradient(135deg, #241d33, #100c1c);
}

.c3 .ic {
    background: #8b5cf6;
}

.c4 {
    background: linear-gradient(135deg, #12241b, #0a140f);
}

.c4 .ic {
    background: #22c55e;
}

.c5 {
    background: linear-gradient(135deg, #1b2340, #0d1224);
}

.c5 .ic {
    background: #3b82f6;
}

.form-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px;
    color: var(--ink);
}

.form-card h3 {
    font-size: 23px;
    margin-bottom: 8px;
}

.form-card>p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.form-card label {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .06em;
    color: #475569;
    display: block;
    margin-bottom: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-card input,
.form-card select {
    width: 100%;
    padding: 13px 14px;
    border-radius: 5px;
    border: 1px solid var(--border);
    background: #f8f9fb;
    font-size: 14px;
    margin-bottom: 16px;
    font-family: inherit;
    color: var(--ink);
}

.form-card .btn-dark {
    width: 100%;
    justify-content: center;
    padding: 15px;
}

.form-note {
    text-align: center;
    font-size: 11.5px;
    color: var(--muted-lt);
    margin-top: 12px;
}

.form-note a {
    color: var(--orange);
    font-weight: 600;
}

/* ===== WHY ===== */
.why {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.why h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.why>.wrap>p {
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 56px;
    font-size: 15.5px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    text-align: left;
}

.why-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: .25s;
}

.why-card:hover {
    box-shadow: 0 16px 34px rgba(10, 20, 40, .1);
    transform: translateY(-4px);
}

.why-ic {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: #fef1e6;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width:900px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA ===== */
.cta {
    background: var(--navy);
    text-align: center;
    padding: 110px 0 90px;
    color: #fff;
}

.cta h2 {
    color: #fff;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta p {
    color: #aab4c8;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 34px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 60px 0 40px;
    color: #aab4c8;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

.foot-logo {
    margin-bottom: 18px;
}

.foot-logo img {
    height: 38px;
    width: auto;
}

footer p {
    font-size: 13.5px;
    line-height: 1.7;
    max-width: 300px;
}

footer h5 {
    color: #fff;
    font-size: 14.5px;
    margin-bottom: 18px;
}

footer ul li {
    margin-bottom: 12px;
    font-size: 13.5px;
}

footer ul li a:hover {
    color: #fff;
}

.foot-mail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-2);
    font-size: 13.5px;
    font-weight: 600;
}

@media (max-width:1000px) {

    .about-grid,
    .map-grid,
    .sect-grid {
        grid-template-columns: 1fr;
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-left h1 {
        font-size: 34px;
    }

    .menu-main {
        display: none;
    }

    .burger {
        display: flex;
    }

    .track-mini {
        display: none;
    }

    .navbar-main {
        justify-content: space-between;
    }
}

@media (min-width:1001px) {
    .mobile-menu {
        display: none !important;
        visibility: hidden !important;
    }
}

@media (max-width:760px) {

    .topbar-left .topbar-divider,
    .topbar-left .airport-label,
    .topbar-right>span {
        display: none
    }

    .topbar-inner {
        justify-content: center;
        min-height: 36px
    }

    .navbar-main {
        min-height: 68px;
        padding: 9px 10px 9px 16px
    }

    .logo img {
        height: 28px
    }
}

@media (max-width:560px) {
    .foot-grid {
        grid-template-columns: 1fr;
    }

    .hero-badge .num {
        font-size: 56px;
    }

    .hero-badge .txt b {
        font-size: 24px;
    }

    .cta h2 {
        font-size: 30px;
    }

    .about h2,
    .map-grid h2,
    .sect-left h2 {
        font-size: 28px;
    }
}

/* ===== HUMAN CORPORATE HERO OVERRIDE ===== */
.hero {
    min-height: 600px;
    background: #f4f5f6;
}

.hero::before,
.hero::after {
    opacity: .16;
}

.hero-content {
    max-width: 700px;
}

.hero-kicker {
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    border: 1px solid #e0e3e7 !important;
}

.hero h1 {
    letter-spacing: -.025em;
    text-shadow: none !important;
}

.hero p {
    max-width: 610px;
}

.hero .hero-card,
.hero .floating-card,
.hero .stat-card {
    border-radius: 5px !important;
    box-shadow: 0 3px 12px rgba(15, 23, 42, .07) !important;
}
/* =========================================
   HEADER
========================================= */

.site-header {
    width: 100%;
    background: #fff;
}


/* =========================================
   TOPBAR
========================================= */

.topbar {
    width: 100%;
}


/* =========================================
   ANA NAVBAR
========================================= */

.site-header > .nav-outer {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 9999;

    transition:
        box-shadow 0.35s ease,
        transform 0.35s ease;
}


/* =========================================
   SCROLL OLUNCA SABİTLE
========================================= */

.site-header > .nav-outer.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: #fff;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);

    animation: navbarDrop 0.4s cubic-bezier(.22, 1, .36, 1);
}


/* =========================================
   NAVBAR AŞAĞIDAN/YUKARIDAN YUMUŞAK GELSİN
========================================= */

@keyframes navbarDrop {

    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   NAVBAR İÇERİĞİ
========================================= */

.site-header > .nav-outer .navbar-main {
    transition:
        padding 0.35s ease;
}


/* Scroll'da biraz kompakt */
.site-header > .nav-outer.is-sticky .navbar-main {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* =========================================
   BLOG CARD
========================================= */

.blog-card {
    height: 100%;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    transition: all .35s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.blog-card-img {
    display: block;
    height: 230px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    margin-bottom: 10px;
    color: #f5821f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.blog-card-body h3 {
    margin: 0 0 12px;
    color: #172033;
    font-size: 21px;
    line-height: 1.4;
}

.blog-card-body p {
    margin: 0 0 20px;
    color: #687080;
    font-size: 14px;
    line-height: 1.7;
}

.blog-read {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #172033;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

.blog-read:hover {
    color: #f5821f;
    gap: 11px;
}