:root {
    --red: #c8191e;
    --red-dark: #9a1015;
    --red-light: #e84247;
    --navy: #1c2b6b;
    --navy-dark: #111d4f;
    --navy-light: #2d3e8a;
    --white: #ffffff;
    --off-white: #f4f5f8;
    --gray-100: #eceef3;
    --gray-200: #d0d4e0;
    --gray-500: #6b718a;
    --gray-700: #363c55;
    --black: #0d1020;
    --font-d: "Bebas Neue", sans-serif;
    --font-u: "Barlow", sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-switcher-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    padding: 4px 10px 4px 7px;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition:
        border-color 0.2s,
        background 0.2s;
    white-space: nowrap;
}

.lang-switcher-btn:hover {
    border-color: rgba(200, 25, 30, 0.7);
    background: rgba(200, 25, 30, 0.07);
}

.lang-switcher-btn img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.lang-switcher-btn .lang-caret {
    font-size: 9px;
    opacity: 0.7;
    transition: transform 0.2s;
}

.lang-switcher.open .lang-caret {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 130px;
    z-index: 9999;
    overflow: hidden;
}

.lang-switcher.open .lang-dropdown {
    display: block;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #222 !important;
    text-decoration: none;
    transition: background 0.15s;
}

.lang-dropdown a:hover {
    background: #f5f5f5;
}

.lang-dropdown a.active-lang {
    background: rgba(200, 25, 30, 0.07);
    color: #c8191e !important;
    font-weight: 600;
}

.lang-dropdown a img {
    width: 22px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

/* ── Mobil Dil Switcher (Dropdown) ── */
.m-lang-wrapper {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 10px;
}

.m-lang-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 15px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.m-lang-btn div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.m-lang-btn img {
    width: 22px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.m-lang-list {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-top: 6px;
    overflow: hidden;
}

.m-lang-list.active {
    display: flex;
}

.m-lang-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #eee;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.m-lang-list a:last-child {
    border-bottom: none;
}

.m-lang-list a.active-lang {
    background: rgba(200, 25, 30, 0.2);
    color: #c8191e;
    font-weight: 600;
}

.m-lang-list a img {
    width: 22px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}
body {
    margin: 0;
    padding: 0;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-u);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
button {
    border: none;
    background: none;
    font-family: inherit;
}

/* ═══════════════════════════════
   3. SCROLLBAR
═══════════════════════════════ */
::-webkit-scrollbar {
    width: 3px;
}
::-webkit-scrollbar-track {
    background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
    background: var(--red);
}

/* ═══════════════════════════════
   4. LAYOUT UTILITIES
═══════════════════════════════ */
.container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 5px;
}

.section {
    padding: 100px 0;
}
.section-light {
    background: var(--off-white);
}

.section-navy {
    background: var(--navy-dark);
    color: var(--white);
    position: relative;
}

.section-navy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--red),
        var(--red-light),
        var(--red)
    );
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.section-tag::before {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.red-line {
    width: 50px;
    height: 3px;
    background: var(--red);
    margin: 20px 0;
}

.divider {
    width: 100%;
    height: 1px;
    background: var(--gray-200);
    margin: 48px 0;
}

.divider-red {
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

/* About HL */
.about-hl {
    display: flex;
    gap: 32px;
    margin: 36px 0;
    padding: 28px 0;
    border-top: 2px solid var(--gray-100);
    border-bottom: 2px solid var(--gray-100);
}

.ahl-item .n {
    font-family: var(--font-d);
    font-size: 50px;
    color: var(--navy-dark);
    line-height: 1;
}

.ahl-item .n sup {
    font-size: 22px;
}

.ahl-item .l {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-top: 5px;
    font-weight: 600;
}

/* ═══════════════════════════════
   6. BUTTONS
═══════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-u);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
    white-space: nowrap;
    isolation: isolate;
}

.btn-red {
    background: var(--red);
    color: var(--white);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
    padding: 14px 44px;
}

.btn-red::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--red-dark);
    transform: translateX(-101%);
    transition: transform 0.5s var(--ease);
    z-index: -1;
}

.btn-red:hover::after {
    transform: translateX(0);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
    padding: 14px 44px;
}

.btn-navy::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--navy-light);
    transform: translateX(-101%);
    transition: transform 0.5s var(--ease);
    z-index: -1;
}

.btn-navy:hover::after {
    transform: translateX(0);
}

.btn-outline-white {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
    padding: 12px 44px;
}

.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--red);
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--red);
    z-index: 1;
}

.hero-btn svg {
    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
}

.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
    z-index: -1;
}

.hero-btn:hover svg {
    transform: translateX(8px);
}
.hero-btn:hover::before {
    left: 100%;
}

/* ═══════════════════════════════
   8. PAGE LOADER
═══════════════════════════════ */
#loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgb(from var(--navy-dark) r g b / 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.l-logo {
    opacity: 0;
    animation: fuUp 0.8s 0.25s var(--ease) forwards;
}
.l-logo img {
    height: 60px;
    width: auto;
}

.l-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.l-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--red), var(--red-light));
    transform: translateX(-100%);
    animation: barFill 1.4s 0.5s var(--ease) forwards;
}

@keyframes barFill {
    to {
        transform: translateX(0);
    }
}

@keyframes fuUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════
   9. NAVBAR
═══════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s var(--ease);
}

.nav-top-bar {
    background: var(--red);
    padding: 6px 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s var(--ease);
}

.nav-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-top-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-top-left a {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.nav-top-left a:hover {
    color: var(--white);
}
.nav-top-left i {
    font-size: 9px;
    color: var(--white);
}

.nav-top-right a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--navy-dark);
    color: var(--white);
    padding: 8px 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 10px;
    transition: background 0.3s;
}

.nav-top-right a:hover {
    background: var(--off-white);
    color: var(--navy-dark);
}

.nav-main {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 3px solid var(--red);
    transition: all 0.4s var(--ease);
    width: 100%;
}

.nav-inner {
    display: flex;
    align-items: center; /* Dikeyde ortalar */
    justify-content: space-between; /* Logo en solda, Nav-right en sağda kalır */
    height: 85px; /* Sabit yükseklik */
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
}
.nav-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px; /* Linkler arası boşluk */
}
.nav-menu li a {
    display: block;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-700);
    position: relative;
    transition: color 0.3s;
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.35s var(--ease);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--red);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    transform: scaleX(1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.nav-tel {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-dark);
    transition: color 0.3s;
}

.nav-tel i {
    color: var(--red);
    font-size: 13px;
}
.nav-tel:hover {
    color: var(--red);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
    transition: all 0.4s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

#navbar.scrolled .nav-top-bar {
    height: 0;
    overflow: hidden;
    padding: 0;
    border: none;
}
.mobile-close-btn {
    position: fixed;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--white);
    cursor: pointer;
    z-index: 10000;
    transition:
        transform 0.3s ease,
        color 0.3s;
}

.mobile-close-btn:hover {
    color: var(--red);
    transform: rotate(90deg);
}
body.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
}
/* Menü açıldığında tam ekran kilidi için ekstra güvenlik */
#mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    height: 100vh; /* tam ekran */
    overflow-y: auto; /* içerik uzarsa scroll olur */
    -webkit-overflow-scrolling: touch; /* iOS smooth scroll */
}

/* Body kilidi için (iOS Safari sorunu için) */

#mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9999 !important;
    background: var(--navy-dark);
    padding: 90px 40px 60px;

    transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        transform 0.55s var(--ease),
        opacity 0.3s ease,
        visibility 0.3s ease;
    display: flex;
    flex-direction: column;
}
#nav-toggle {
    cursor: pointer;
    position: relative;
    z-index: 10001; /* Menüden daha yüksek olmalı ki kapanabilsin */
    pointer-events: all;
}

.m-menu-logo {
    position: absolute;
    top: 20px;
    left: 20px;
}
.m-menu-logo img {
    height: 56px;
    width: auto;
}

.m-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.m-links a {
    display: block;
    padding: 18px 0;
    font-family: var(--font-d);
    font-size: 30px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
    transition:
        color 0.3s,
        padding-left 0.3s;
}

.m-links a:hover {
    color: var(--red);
    padding-left: 10px;
}
.m-links a.active {
    color: var(--red);
}

.m-footer-text {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════
   10. PAGE HERO (filo, petrol, turizm, lojistik)
═══════════════════════════════ */
.page-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--navy-dark);
    padding-top: 130px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.06);
    transition: transform 9s ease;
}

.page-hero-bg.loaded {
    transform: scale(1);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 14, 31, 0.92) 0%,
        rgba(10, 14, 31, 0.65) 55%,
        rgba(10, 14, 31, 0.2) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 10;
    padding: 60px 0 72px;
}

.page-hero-content h1 {
    font-family: var(--font-d);
    font-size: clamp(54px, 7vw, 92px);
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.02em;
    margin: 0 0 24px;
}

.page-hero-content h1 em {
    font-style: normal;
    color: var(--red);
}

.page-hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.72);
    max-width: 620px;
    line-height: 1.85;
    margin-bottom: 44px;
}

.page-hero-stats {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: fit-content;
}

.ph-stat {
    padding: 20px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: background 0.3s;
}

.ph-stat:last-child {
    border-right: none;
}
.ph-stat:hover {
    background: rgba(200, 25, 30, 0.1);
}

.ph-stat-n {
    font-family: var(--font-d);
    font-size: 36px;
    color: var(--red);
    line-height: 1;
}

.ph-stat-l {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}
.breadcrumb a:hover {
    color: var(--red);
}
.breadcrumb .sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 9px;
}

/* ═══════════════════════════════
   11. INNER HERO (adres, hakkımızda, referans, yönetim)
═══════════════════════════════ */
.inner-hero {
    background: var(--navy-dark);
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--red),
        var(--red-light),
        var(--red)
    );
}

.inner-hero h1 {
    font-family: var(--font-d);
    font-size: clamp(52px, 7vw, 96px);
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.02em;
    margin: 0 0 10px;
}

.inner-hero h1 em {
    font-style: normal;
    color: var(--red);
}

.inner-hero-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
}

.inner-hero-label::before {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.inner-hero-divider {
    width: 50px;
    height: 3px;
    background: var(--red);
    margin: 28px 0 36px;
}

.inner-hero-text {
    font-size: 18px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.99);
    line-height: 1.95;
    margin-bottom: 16px;
}

.inner-hero-text strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.inner-hero-bg-text {
    position: absolute;
    right: -10px;
    bottom: -40px;
    font-family: var(--font-d);
    font-size: 220px;
    color: rgba(255, 255, 255, 0.022);
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
}

/* ═══════════════════════════════
   12. LOC ORTAK (filo + petrol)
═══════════════════════════════ */
.loc-hdr {
    margin-bottom: 48px;
}

.loc-hdr h2 {
    font-family: var(--font-d);
    font-size: clamp(42px, 5vw, 66px);
    color: var(--navy-dark);
    line-height: 1;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
}

.loc-hdr h2 em {
    font-style: normal;
    color: var(--red);
}

.loc-hdr p {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 560px;
    line-height: 1.8;
}

.loc-panels {
    background: var(--white);
}
.loc-panel {
    display: none;
}
.loc-panel.active {
    display: block;
}

.loc-rows {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--gray-100);
}

.loc-row {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: center;
    background: var(--white);
    padding: 16px 18px;
    transition: background 0.25s;
}

.loc-row:hover {
    background: var(--off-white);
}

.loc-row-icon {
    width: 40px;
    height: 40px;
    background: var(--navy-dark);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

.loc-row:hover .loc-row-icon {
    background: var(--red);
}
.loc-row-icon i {
    color: var(--white);
    font-size: 12px;
}

.loc-row-name {
    font-family: var(--font-d);
    font-size: 17px;
    letter-spacing: 0.04em;
    color: var(--navy-dark);
    line-height: 1.2;
    margin-bottom: 3px;
}

.loc-row-addr {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ═══════════════════════════════
   13. HERO (anasayfa slider)
═══════════════════════════════ */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0a0e1f;
    margin: 0;
}

.hero-slides {
    position: relative;
    min-height: 81vh;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.06);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 14, 31, 0.78) 0%,
        rgba(10, 14, 31, 0.5) 55%,
        rgba(10, 14, 31, 0.2) 100%
    );
}

.hero-slide-content {
    position: relative;
    z-index: 10;
    padding: 0 80px;
    max-width: 760px;
}

.hero-slide-content h1 {
    font-family:
        "Segoe UI",
        system-ui,
        -apple-system,
        sans-serif;
    font-size: clamp(38px, 5.5vw, 70px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin: 0 0 30px;
    letter-spacing: -0.02em;
}

.hero-slide-content h1 span {
    display: inline-block;
    padding: 2px 14px 5px;
    margin-bottom: 4px;
}

/* Hero Tabs */
.hero-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 25;
    background: #0f173d;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.hero-tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    overflow: hidden;
}

.hero-tab:last-child {
    border-right: none;
}
.hero-tab.active {
    background: rgba(200, 25, 30, 0.1);
}

.hero-tab.active .hero-tab-icon,
.hero-tab:hover .hero-tab-icon {
    background: var(--white);
    color: var(--red);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-tab::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--red);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.hero-tab.active::after {
    transform: translateY(0);
}
.hero-tab:not(.active):hover {
    background: #1a2a6e;
}

.hero-tab-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.hero-tab-text {
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.hero-tab-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    transition: color 0.3s;
}

.hero-tab.active .hero-tab-label {
    color: rgba(255, 255, 255, 0.8);
}

.hero-tab-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    transition: transform 0.3s;
}

.hero-tab:hover .hero-tab-name {
    transform: translateX(5px);
}

.hero-tab-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--white);
    width: 0%;
    z-index: 5;
    opacity: 0.8;
}

/* ═══════════════════════════════
   14. ABOUT (anasayfa)
═══════════════════════════════ */
.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    padding: 24px 24px 44px 24px;
}

.about-frame {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.about-frame::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 64px;
    height: 64px;
    border-top: 4px solid var(--red);
    border-left: 4px solid var(--red);
    z-index: 2;
}

.about-frame::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 64px;
    height: 64px;
    border-bottom: 4px solid var(--navy);
    border-right: 4px solid var(--navy);
    z-index: 2;
}

.about-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s ease;
}
.about-frame:hover img {
    transform: scale(1.04);
}

.yr-badge {
    position: absolute;
    bottom: 20px;
    right: 4px;
    z-index: 5;
    width: 104px;
    height: 104px;
    background: var(--red);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.yr-badge .yr {
    font-family: var(--font-d);
    font-size: 28px;
    color: var(--white);
    line-height: 1;
}
.yr-badge .yr-l {
    font-size: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.about-text h2 {
    font-family: var(--font-d);
    font-size: clamp(46px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: 0.03em;
    color: var(--navy-dark);
    margin-bottom: 18px;
}

.about-text h2 em {
    font-style: normal;
    color: var(--red);
}
.about-text p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.9;
    margin-bottom: 18px;
}

/* ═══════════════════════════════
   15. SECTORS (anasayfa)
═══════════════════════════════ */
.sectors-hdr {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 24px;
}

.sectors-hdr-left h2 {
    font-family: var(--font-d);
    font-size: clamp(46px, 5.5vw, 72px);
    line-height: 1;
    letter-spacing: 0.03em;
    color: var(--navy-dark);
}

.sectors-hdr-left h2 em {
    font-style: normal;
    color: var(--red);
}
.sectors-hdr-right {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 300px;
    text-align: right;
    line-height: 1.75;
    flex-shrink: 0;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--gray-200);
}

.sc-card {
    padding: 44px 28px 38px;
    position: relative;
    overflow: hidden;
    transition: background 0.35s;
    border-right: 1px solid var(--gray-200);
    cursor: default;
}

.sc-card:last-child {
    border-right: none;
}

.sc-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.sc-card:hover {
    background: var(--off-white);
}
.sc-card:hover::after {
    transform: scaleX(1);
}

.sc-n {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: var(--font-d);
    font-size: 80px;
    color: rgba(28, 43, 107, 0.05);
    line-height: 1;
}

.sc-card:hover .sc-n {
    color: rgba(200, 25, 30, 0.07);
}

.sc-ico {
    width: 58px;
    height: 58px;
    background: var(--navy-dark);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 24px;
    transition: background 0.35s;
}

.sc-card:hover .sc-ico {
    background: var(--red);
}

.sc-card h3 {
    font-family: var(--font-d);
    font-size: 28px;
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin-bottom: 12px;
    color: var(--navy-dark);
}
.sc-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.75;
}

.sc-lnk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    transition: gap 0.3s;
}

.sc-card:hover .sc-lnk {
    gap: 14px;
}

/* ═══════════════════════════════
   16. NUMBERS (anasayfa)
═══════════════════════════════ */
.num-hdr {
    text-align: center;
    margin-bottom: 64px;
}

.num-hdr h2 {
    font-family: var(--font-d);
    font-size: clamp(46px, 5.5vw, 72px);
    color: var(--white);
    letter-spacing: 0.03em;
}
.num-hdr h2 em {
    font-style: normal;
    color: var(--red);
}
.num-hdr p {
    font-size: 17px;
    margin-top: 16px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.num-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.ng-item {
    padding: 56px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    overflow: hidden;
    transition: background 0.35s;
}

.ng-item:last-child {
    border-right: none;
}
.ng-item:hover {
    background: rgba(200, 25, 30, 0.07);
}

.ng-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 3px;
    background: var(--red);
    transition:
        left 0.5s ease,
        right 0.5s ease;
}

.ng-item:hover::after {
    left: 0;
    right: 0;
}

.ng-num {
    font-family: var(--font-d);
    font-size: clamp(56px, 6vw, 80px);
    color: var(--red);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.ng-suf {
    font-size: 30px;
    color: rgba(200, 25, 30, 0.6);
    align-self: flex-end;
    margin-bottom: 4px;
}
.ng-lbl {
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-top: 12px;
    font-weight: 600;
}
.ng-desc {
    font-size: 15px;
    margin-top: 8px;
    line-height: 1.5;
}

/* ═══════════════════════════════
   17. REFERENCES MARQUEE (anasayfa)
═══════════════════════════════ */
.refs-hdr {
    text-align: center;
    margin-bottom: 60px;
}
.refs-hdr h2 {
    font-family: var(--font-d);
    font-size: clamp(46px, 5.5vw, 72px);
    color: var(--navy-dark);
    letter-spacing: 0.03em;
}
.refs-hdr h2 em {
    font-style: normal;
    color: var(--red);
}
.refs-hdr p {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 520px;
    margin: 16px auto 0;
    line-height: 1.8;
}

.ref-mwrap {
    overflow: hidden;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.ref-mwrap:hover .ref-marquee {
    animation-play-state: paused;
}

.ref-marquee {
    display: flex;
    animation: mq 36s linear infinite;
    width: max-content;
}

@keyframes mq {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.ref-item {
    padding: 32px 64px;
    border-right: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-family: var(--font-d);
    font-size: 22px;
    letter-spacing: 0.04em;
    color: var(--gray-500);
    transition: color 0.3s;
    flex-shrink: 0;
}

.ref-item:hover {
    color: var(--navy-dark);
}

/* ═══════════════════════════════
   18. CONTACT (anasayfa)
═══════════════════════════════ */
#iletisim {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100%;
    overflow: hidden;
    padding-bottom: 75px;
}

.ct-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    align-items: stretch;
}

.ct-panel-left {
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    width: 50%;
    flex: 0 0 50%;
    box-sizing: border-box;
}

.ct-panel-left::before {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    pointer-events: none;
}
.ct-panel-left::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.ct-panel-left .ct-red-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(
        180deg,
        var(--red) 0%,
        var(--red-light) 50%,
        var(--red) 100%
    );
}

.ct-panel-top .section-tag {
    justify-content: flex-start;
}

.ct-panel-top h2 {
    font-family: var(--font-d);
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1;
    letter-spacing: 0.03em;
    color: var(--white);
    margin: 12px 0 16px;
}
.ct-panel-top h2 em {
    color: var(--white);
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.ct-panel-top .ct-desc {
    font-size: 15px;
    color: var(--white);
    line-height: 1.85;
    max-width: 380px;
    margin-bottom: 48px;
}

.ct-offices {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2;
}

.ct-office-item {
    display: grid;
    gap: 20px;
    padding: 12px 0; /* 20px'den 12px'e düşürerek listeyi yukarı çektik */
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ct-office-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.ct-office-item:hover {
    padding-left: 8px;
}

.ct-office-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15); /* Biraz daha soft bir görünüm */
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.ct-office-icon i {
    color: var(--white);
    font-size: 14px;
}
.ct-office-city {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
}
.ct-office-addr {
    font-size: 16px;
    color: var(--white);
    line-height: 1.55;
}
.ct-office-tel {
    font-size: 16px;
    color: var(--white);
    margin-top: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ct-panel-bottom {
    position: relative;
    z-index: 2;
    padding-top: 36px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.ct-panel-bottom a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: all 0.3s;
}

.ct-panel-bottom a:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(200, 25, 30, 0.08);
}

.ct-panel-right {
    background: var(--white);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 50%;
    flex: 0 0 50%;
    box-sizing: border-box;
}

.ct-panel-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--red),
        var(--red-light),
        var(--red)
    );
}

.ct-form-title {
    margin-bottom: 40px;
}
.ct-form-title .section-tag {
    margin-bottom: 10px;
}
.ct-form-title h3 {
    font-family: var(--font-d);
    font-size: clamp(32px, 3.5vw, 48px);
    color: var(--navy-dark);
    letter-spacing: 0.03em;
    line-height: 1;
}
.ct-form-title h3 em {
    font-style: normal;
    color: var(--red);
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ct-fg {
    margin-bottom: 20px;
}

.ct-fg label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.ct-fg input,
.ct-fg textarea,
.ct-fg select {
    width: 100%;
    background: var(--off-white);
    border: 1.5px solid var(--gray-100);
    border-bottom: 2px solid var(--gray-200);
    padding: 14px 16px;
    color: var(--navy-dark);
    font-family: var(--font-u);
    font-size: 14px;
    outline: none;
    transition:
        border-color 0.3s,
        background 0.3s,
        box-shadow 0.3s;
    -webkit-appearance: none;
    border-radius: 0;
}

.ct-fg input:focus,
.ct-fg textarea:focus,
.ct-fg select:focus {
    border-color: var(--red);
    border-bottom-color: var(--red);
    background: var(--white);
    box-shadow: 0 4px 12px rgba(200, 25, 30, 0.08);
}

.ct-fg input::placeholder,
.ct-fg textarea::placeholder {
    color: #b0b5c8;
}
.ct-fg textarea {
    resize: none;
    min-height: 130px;
    line-height: 1.6;
}
.ct-fg select option {
    background: var(--white);
    color: var(--navy-dark);
}

.ct-fg.select-wrap {
    position: relative;
}
.ct-fg.select-wrap::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(0%);
    color: var(--red);
    font-size: 11px;
    pointer-events: none;
    margin-top: 8px;
}

.ct-form-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
}

.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-family: var(--font-u);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    isolation: isolate;
}

.ct-submit-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--navy-dark);
    transform: translateX(-101%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
.ct-submit-btn:hover::after {
    transform: translateX(0);
}
.ct-submit-btn i {
    transition: transform 0.3s;
}
.ct-submit-btn:hover i {
    transform: translateX(4px);
}

.ct-form-note {
    font-size: 12px;
    color: #9ba3b8;
    display: flex;
    align-items: center;
    gap: 7px;
}
.ct-form-note i {
    color: var(--red);
    font-size: 10px;
}

/* ═══════════════════════════════
   19. FOOTER
═══════════════════════════════ */
.site-footer {
    background: var(--red);
    color: var(--white);
    position: relative;
    overflow: hidden;
    font-family: var(--font-u);
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--red-dark),
        var(--white),
        var(--red-dark)
    );
}

.footer-upper {
    padding: 64px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
    gap: 56px;
    align-items: start;
}

.f-brand .f-logo {
    margin-bottom: 4px;
}
.f-logo-img {
    height: 44px;
    width: auto;
    display: block;
}
.f-brand p {
    font-size: 13px;
    line-height: 1.85;
    max-width: 260px;
    margin: 18px 0 26px;
}

.f-social {
    display: flex;
    gap: 8px;
}

.f-social a {
    width: 38px;
    height: 38px;
    background-color: var(--navy-dark); /* Arka plan rengi buraya geldi */
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.f-social a:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.f-col h5 {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--navy-dark);
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.f-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.f-col ul li a {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition:
        color 0.25s,
        padding-left 0.25s;
}

.f-col ul li a::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--white);
    flex-shrink: 0;
    opacity: 0.7;
}
.f-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.f-contact-row {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.f-contact-row i {
    color: var(--white);
    font-size: 11px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}
.f-contact-row p {
    font-size: 12px;
    line-height: 1.65;
    margin: 0;
}
.f-contact-row strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.f-contact-row a {
    font-size: 12px;
    transition: color 0.25s;
}
.f-contact-row a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 11px;
    gap: 16px;
}

.footer-bg-text {
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: var(--font-d);
    font-size: 320px;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* ═══════════════════════════════
   20. RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1200px) {
    .sectors-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sectors-hdr {
        flex-direction: column;
        align-items: flex-start;
    }
    .sectors-hdr-right {
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 1100px) {
    .nav-menu {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-top-bar {
        display: none;
    }
}

@media (max-width: 960px) {
    .about-wrap {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .about-frame {
        aspect-ratio: 16/9;
    }
    .about-visual {
        padding: 16px 16px 30px;
    }
    .hero-tabs {
        grid-template-columns: 1fr 1fr;
    }
    .hero-tab:nth-child(2) {
        border-right: none;
    }
    .hero-tab:nth-child(1),
    .hero-tab:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .num-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ng-item:nth-child(2) {
        border-right: none;
    }
    .ng-item:nth-child(1),
    .ng-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }
    .hero-slide-content {
        padding: 0 40px;
    }
    .ct-panel-left,
    .ct-panel-right {
        padding: 60px 32px;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    #cursor,
    #cursor-ring {
        display: none;
    }
    .container {
        padding: 0 22px;
    }
    .section {
        padding: 70px 0;
    }
    .ct-panel-left,
    .ct-panel-right {
        width: 100%;
        flex: 0 0 100%;
    }
    .page-hero-stats {
        flex-wrap: wrap;
    }
    .ph-stat {
        flex: 1 1 40%;
    }
    .inner-hero {
        padding-top: 120px;
        padding-bottom: 48px;
    }
}

@media (max-width: 600px) {
    .hero-slide-content {
        padding: 0 24px;
    }
    .hero-tabs {
        grid-template-columns: 1fr 1fr;
    }
    .hero-tab {
        padding: 18px 16px;
        gap: 12px;
    }
    .hero-tab-name {
        font-size: 13px;
    }
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    .about-hl {
        flex-wrap: wrap;
        gap: 20px;
    }
    .ref-item {
        padding: 24px 40px;
        font-size: 18px;
    }
    .ct-form-row {
        grid-template-columns: 1fr;
    }
    .ct-panel-left,
    .ct-panel-right {
        padding: 48px 24px;
    }
}

@media (max-width: 540px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ph-stat {
        flex: 1 1 100%;
    }
}
