/* =========================================================
   REFLITE — TEK PARÇA ANA STİL DOSYASI
   index.php + header.php + footer.php yapısına göre hazırlanmıştır.
========================================================= */

/* =========================================================
   1. RESET / GLOBAL
========================================================= */

:root {
    --reflite-black: #0d0f12;
    --reflite-dark: #171a1f;
    --reflite-text: #1d2228;
    --reflite-muted: #687079;
    --reflite-line: #dfe3e7;
    --reflite-soft: #f4f6f7;
    --reflite-white: #ffffff;
    --reflite-green: #c8e91a;
    --reflite-green-dark: #9bb700;
    --reflite-max: 1320px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: #fff;
    color: #222;
    font-family: 'Inter', Arial, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

a {
    color: inherit;
}

.container {
    width: min(var(--reflite-max), calc(100% - 40px));
    max-width: var(--reflite-max);
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
}

/* =========================================================
   2. TOP BAR
========================================================= */

.top-bar {
    position: relative;
    z-index: 99999;
    display: block;
    min-height: 36px;
    background: #111;
    color: #fff;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.top-bar .container,
.top-bar-inner {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
    padding-bottom: 6px;
}

.top-bar-left {
    font-weight: 700;
}

.top-bar-right {
    font-weight: 300;
    opacity: .78;
}

.top-bar a {
    margin-left: 14px;
    color: #fff;
    text-decoration: none;
    transition: color .2s ease;
}

.top-bar a:hover {
    color: var(--reflite-green);
}

/* =========================================================
   3. HEADER
========================================================= */

.site-header,
.main-header {
    position: relative;
    z-index: 1200;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
}

.site-header {
    position: absolute;
    top: 36px;
    left: 0;
}

.header-inner,
.header-flex,
.header-row {
    display: flex;
    min-height: 80px;
    align-items: center;
    gap: 28px;
}

.header-inner {
    justify-content: space-between;
}

.header-flex,
.header-row {
    padding-top: 12px;
    padding-bottom: 12px;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    width: auto;
    height: 46px;
}

.header-right,
.header-actions,
.header-social,
.header-lang {
    display: flex;
    align-items: center;
}

.header-right {
    gap: 20px;
}

.header-actions {
    gap: 20px;
    font-size: 14px;
}

.header-actions a,
.header-lang a {
    color: #222;
    text-decoration: none;
}

.header-social {
    gap: 12px;
}

.header-social a {
    color: #444;
    font-size: 15px;
    transition: color .25s ease;
}

.header-social a:hover,
.header-lang a:hover {
    color: var(--reflite-green-dark);
}

.header-lang {
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .5px;
}

.header-lang span {
    color: #bbb;
}

.dealer-btn {
    display: inline-flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid var(--reflite-green-dark);
    border-radius: 999px;
    background: transparent;
    color: var(--reflite-green-dark);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}

.dealer-btn:hover {
    border-color: var(--reflite-green);
    background: var(--reflite-green);
    color: var(--reflite-black);
    box-shadow: 0 8px 20px rgba(166, 206, 57, .25);
}

/* =========================================================
   4. HEADER SEARCH
========================================================= */

.header-search {
    min-width: 0;
    flex: 1 1 280px;
    max-width: 390px;
}

.header-search form {
    display: flex;
    overflow: hidden;
    border: 1px solid #e5e8eb;
    border-radius: 8px;
    background: #f3f4f6;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.header-search form:focus-within {
    border-color: var(--reflite-green-dark);
    box-shadow: 0 0 0 3px rgba(200, 233, 26, .14);
}

.header-search input {
    min-width: 0;
    flex: 1;
    padding: 12px 14px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #222;
    font: inherit;
}

.header-search button {
    display: grid;
    flex: 0 0 48px;
    place-items: center;
    border: 0;
    background: transparent;
    color: #222;
    cursor: pointer;
}

/* =========================================================
   5. MAIN MENU
========================================================= */

.main-menu {
    margin-left: auto;
}

.main-menu > ul,
.main-menu ul {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu > ul > li,
.main-menu li {
    position: relative;
}

.main-menu > ul > li > a,
.main-menu a {
    position: relative;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .2px;
    text-decoration: none;
    transition: color .2s ease;
}

.main-menu > ul > li > a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: var(--reflite-green);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.main-menu > ul > li:hover > a::after,
.main-menu > ul > li > a:hover::after,
.main-menu li.active > a::after {
    transform: scaleX(1);
}

.main-menu li.active > a {
    color: #111;
    font-weight: 700;
}

/* =========================================================
   6. MEGA MENU
========================================================= */

.has-mega {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(240px, .9fr);
    gap: 38px;
    width: 100%;
    padding: 42px max(30px, calc((100vw - var(--reflite-max)) / 2));
    border-top: 1px solid #eceff1;
    background: #fff;
    box-shadow: 0 28px 60px rgba(0, 0, 0, .10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-col {
    min-width: 0;
}

.mega-col h4 {
    margin: 0 0 14px;
    color: #111;
    font-size: 15px;
    font-weight: 750;
}

.mega-col a {
    display: block;
    padding: 7px 0;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.mega-col a:hover {
    color: var(--reflite-green-dark);
    transform: translateX(4px);
}

.mega-col.image {
    overflow: hidden;
    border-radius: 12px;
    background: var(--reflite-soft);
}

.mega-col.image img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
}

.menu-desc {
    max-width: 220px;
    margin-bottom: 10px;
    color: #777;
    font-size: 13px;
}

/* =========================================================
   7. MOBILE MENU
========================================================= */

.mobile-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 26px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    border-top: 1px solid #eee;
    background: #fff;
}

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

.mobile-menu ul {
    margin: 0;
    padding: 10px 0;
    list-style: none;
}

.mobile-menu li a {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f1f1;
    color: #222;
    text-decoration: none;
}

/* =========================================================
   8. HERO
========================================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 760px;
    overflow: hidden;
    background: #080b0e;
}

.hero-slider .swiper,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-slide img,
.hero-video-slide video {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, .56);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: min(92%, 980px);
    text-align: center;
    transform: translate(-50%, -40%);
}

.hero-top-title {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 5px;
}

.hero-title {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 1.03;
}

.hero-subtitle {
    max-width: 660px;
    margin: 0 auto 26px;
    color: rgba(255, 255, 255, .92);
    font-size: 19px;
    line-height: 1.55;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

/* =========================================================
   9. BUTTONS
========================================================= */

.btn-main,
.btn-outline {
    display: inline-flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .2px;
    text-decoration: none;
    transition: .3s ease;
}

.btn-main {
    border: 1px solid #fff;
    background: #fff;
    color: #111;
}

.btn-main:hover {
    background: transparent;
    color: #fff;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .65);
    background: transparent;
    color: #fff;
}

.btn-outline:hover {
    border-color: #fff;
    background: #fff;
    color: #111;
}

/* =========================================================
   10. ORTAK BÖLÜM BAŞLIKLARI
========================================================= */

.reflite-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--reflite-green-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.reflite-section-head {
    max-width: 780px;
    margin: 0 auto 54px;
    text-align: center;
}

.reflite-section-head h2,
.reflite-about h2,
.reflite-private-content h2,
.reflite-network h2 {
    margin: 0 0 20px;
    color: var(--reflite-text);
    font-size: clamp(32px, 4vw, 58px);
    font-weight: 650;
    letter-spacing: -.045em;
    line-height: 1.03;
}

.reflite-section-head p,
.reflite-about-content > p,
.reflite-network-content > p,
.reflite-private-content > p {
    color: var(--reflite-muted);
    font-size: 17px;
    line-height: 1.8;
}

/* =========================================================
   11. TRUST STRIP
========================================================= */

.reflite-trust {
    position: relative;
    z-index: 5;
    border-bottom: 1px solid var(--reflite-line);
    background: #fff;
}

.reflite-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.reflite-trust-item {
    display: flex;
    min-height: 148px;
    align-items: center;
    gap: 18px;
    padding: 30px 28px;
    border-right: 1px solid var(--reflite-line);
}

.reflite-trust-item:first-child {
    border-left: 1px solid var(--reflite-line);
}

.reflite-trust-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border-radius: 50%;
    background: var(--reflite-green);
    color: var(--reflite-black);
    font-size: 17px;
}

.reflite-trust-item h2 {
    margin: 0 0 7px;
    font-size: 15px;
    font-weight: 750;
}

.reflite-trust-item p {
    margin: 0;
    color: var(--reflite-muted);
    font-size: 12px;
    line-height: 1.55;
}

/* =========================================================
   12. ABOUT
========================================================= */

.reflite-about {
    padding: 120px 0;
    background: #fff;
}

.reflite-about-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 90px;
}

.reflite-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 12px;
    color: var(--reflite-text);
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
}

.reflite-arrow-link i {
    transition: transform .25s ease;
}

.reflite-arrow-link:hover i {
    transform: translateX(5px);
}

.reflite-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 58px;
    border-top: 1px solid var(--reflite-line);
}

.reflite-stats > div {
    padding: 28px 20px 0 0;
}

.reflite-stats strong {
    display: block;
    color: var(--reflite-text);
    font-size: 34px;
    line-height: 1;
}

.reflite-stats span {
    display: block;
    margin-top: 10px;
    color: var(--reflite-muted);
    font-size: 12px;
    line-height: 1.45;
}

.reflite-about-visual {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--reflite-soft);
}

.reflite-about-visual > img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
}

.reflite-about-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 210px;
    padding: 30px;
    background: var(--reflite-green);
    color: var(--reflite-black);
}

.reflite-about-badge span,
.reflite-about-badge strong {
    display: block;
    line-height: 1;
}

.reflite-about-badge span {
    font-size: 13px;
    letter-spacing: .16em;
}

.reflite-about-badge strong {
    margin-top: 8px;
    font-size: 27px;
}

/* =========================================================
   13. DÖRT BANT KARTI
========================================================= */

.reflite-tapes {
    padding: 120px 0;
    background: var(--reflite-soft);
}

.reflite-tape-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.reflite-tape-card {
    overflow: hidden;
    border: 1px solid #e1e5e8;
    background: #fff;
    transition: transform .35s ease, box-shadow .35s ease;
}

.reflite-tape-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(13, 15, 18, .10);
}

.reflite-tape-image {
    display: block;
    height: 260px;
    overflow: hidden;
    background: #e9ecef;
}

.reflite-tape-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.reflite-tape-card:hover .reflite-tape-image img {
    transform: scale(1.045);
}

.reflite-tape-body {
    padding: 30px;
}

.reflite-colour-line {
    display: block;
    width: 46px;
    height: 5px;
    margin-bottom: 24px;
    background: #aaa;
}

.reflite-tape-yellow .reflite-colour-line {
    background: #f2da00;
}

.reflite-tape-red .reflite-colour-line {
    background: #d80d21;
}

.reflite-tape-white .reflite-colour-line {
    border: 1px solid #bfc4c9;
    background: #fff;
}

.reflite-tape-metallic .reflite-colour-line {
    background: linear-gradient(90deg, #737b82, #e9edef, #8e969d);
}

.reflite-tape-body h3 {
    min-height: 54px;
    margin: 0 0 13px;
    color: var(--reflite-text);
    font-size: 21px;
    font-weight: 750;
    line-height: 1.25;
}

.reflite-tape-body p {
    min-height: 78px;
    margin: 0 0 25px;
    color: var(--reflite-muted);
    font-size: 14px;
    line-height: 1.65;
}

.reflite-tape-body a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--reflite-text);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

/* =========================================================
   14. DİNAMİK KATEGORİLER
========================================================= */

.categories,
.product-section,
.reflective-section,
.safety-section {
    padding: 110px 0;
}

.categories,
.safety-section {
    background: #f8f9fb;
}

.product-section,
.reflective-section {
    background: #fff;
}

.section-title {
    max-width: 760px;
    margin: 0 auto 46px;
}

.section-title span {
    display: block;
    margin-bottom: 12px;
    color: var(--reflite-green-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
}

.section-title h2 {
    margin: 0 0 16px;
    color: var(--reflite-text);
    font-size: clamp(31px, 3.5vw, 52px);
    font-weight: 700;
    letter-spacing: -.04em;
}

.section-title p {
    margin: 0;
    color: var(--reflite-muted);
    font-size: 16px;
    line-height: 1.7;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.category-card {
    display: flex;
    min-width: 0;
    min-height: 330px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 30px;
    border: 1px solid var(--reflite-line);
    border-radius: 0;
    background: #fff;
    color: var(--reflite-text);
    text-align: left;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.category-card:hover {
    border-color: #cbd2d7;
    background: #fff;
    color: var(--reflite-text);
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.icon-box {
    display: flex;
    width: 100%;
    height: 175px;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px;
    overflow: hidden;
    border-radius: 0;
    background: var(--reflite-soft);
    box-shadow: none;
}

.icon-box::after {
    display: none;
}

.icon-box img {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    object-fit: contain;
}

.icon-box i {
    color: var(--reflite-green-dark);
    font-size: 42px;
}

.category-card h3 {
    margin: 0 0 10px;
    color: var(--reflite-text);
    font-size: 20px;
    font-weight: 700;
}

.category-card p {
    margin: 0 0 18px;
    color: var(--reflite-muted);
    font-size: 13px;
    line-height: 1.6;
}

.category-link {
    color: var(--reflite-green-dark);
    font-size: 13px;
    font-weight: 750;
}

.section-button {
    margin-top: 45px;
}

.section-button .btn-main {
    border-color: var(--reflite-black);
    background: var(--reflite-black);
    color: #fff;
}

.section-button .btn-main:hover {
    border-color: var(--reflite-green);
    background: var(--reflite-green);
    color: var(--reflite-black);
}

/* =========================================================
   15. PRIVATE LABEL
========================================================= */

.reflite-private-label {
    padding: 120px 0;
    background: var(--reflite-black);
    color: #fff;
}

.reflite-private-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
}

.reflite-private-visual {
    min-height: 600px;
    overflow: hidden;
}

.reflite-private-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.reflite-private-content h2 {
    color: #fff;
}

.reflite-private-content > p {
    color: rgba(255, 255, 255, .66);
}

.reflite-private-content ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 28px;
    margin: 38px 0 42px;
    padding: 0;
    list-style: none;
}

.reflite-private-content li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
}

.reflite-private-content li i {
    color: var(--reflite-green);
}

.reflite-light-button {
    display: inline-flex;
    padding: 15px 24px;
    border-radius: 999px;
    background: var(--reflite-green);
    color: var(--reflite-black);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}




/* =========================================================
   16. BAYİLİK + FİLO — DENGELİ YERLEŞİM
========================================================= */

.reflite-commercial-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin: 0;
    padding: 0;
    background: #090c0f;
}

.reflite-commercial-card {
    position: relative;
    min-width: 0;
    height: 560px;
    overflow: hidden;
    background: #090c0f;
    isolation: isolate;
}

.reflite-commercial-card > img {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.reflite-commercial-card:hover > img {
    transform: scale(1.025);
}

.reflite-dealer-card > img {
    object-position: 62% center;
}

.reflite-fleet-card > img {
    object-position: 66% center;
}

.reflite-commercial-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(5, 8, 10, .96) 0%,
            rgba(5, 8, 10, .91) 26%,
            rgba(5, 8, 10, .68) 45%,
            rgba(5, 8, 10, .26) 68%,
            rgba(5, 8, 10, .03) 100%
        );
}

.reflite-commercial-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(54%, 540px);
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 58px 30px 58px clamp(42px, 4vw, 68px);
    color: #fff;
}

.reflite-commercial-content > span {
    display: block;
    margin: 0 0 16px;
    color: var(--reflite-green);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.reflite-commercial-content h2 {
    width: 100%;
    max-width: 470px;
    margin: 0 0 20px;
    padding: 0;
    color: #fff;
    font-size: clamp(32px, 2vw, 43px);
    font-weight: 720;
    line-height: 1.03;
    letter-spacing: -.035em;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    text-wrap: balance;
}

.reflite-commercial-content p {
    width: 100%;
    max-width: 380px;
    margin: 0 0 28px;
    padding: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    line-height: 1.65;
    white-space: normal;
    word-break: normal;
}

.reflite-outline-light {
    display: inline-flex;
    width: auto;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 12px 21px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: 11px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    transition:
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease;
}

.reflite-outline-light:hover {
    border-color: var(--reflite-green);
    background: var(--reflite-green);
    color: var(--reflite-black);
}

.reflite-commercial-card + .reflite-commercial-card {
    border-left: 1px solid rgba(255, 255, 255, .12);
}

@media (min-width: 1500px) {
    .reflite-commercial-card {
        height: 590px;
    }

    .reflite-commercial-content {
        width: min(52%, 560px);
        padding-left: 74px;
    }

    .reflite-commercial-content h2 {
        max-width: 500px;
        font-size: 44px;
    }
}

@media (max-width: 1100px) {
    .reflite-commercial-card {
        height: 540px;
    }

    .reflite-commercial-content {
        width: 58%;
        padding: 48px 30px 48px 42px;
    }

    .reflite-commercial-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 900px) {
    .reflite-commercial-panels {
        grid-template-columns: 1fr;
    }

    .reflite-commercial-card {
        height: 560px;
    }

    .reflite-commercial-card + .reflite-commercial-card {
        border-top: 1px solid rgba(255, 255, 255, .12);
        border-left: 0;
    }

    .reflite-commercial-content {
        width: min(58%, 560px);
        padding: 55px 42px;
    }

    .reflite-commercial-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .reflite-commercial-card {
        height: 590px;
    }

    .reflite-commercial-card > img {
        object-position: center top;
    }

    .reflite-commercial-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(5, 8, 10, .98) 0%,
                rgba(5, 8, 10, .90) 40%,
                rgba(5, 8, 10, .48) 70%,
                rgba(5, 8, 10, .06) 100%
            );
    }

    .reflite-commercial-content {
        width: 100%;
        max-width: none;
        justify-content: flex-end;
        padding: 42px 25px;
    }

    .reflite-commercial-content h2 {
        max-width: 390px;
        font-size: 35px;
        line-height: 1.02;
    }

    .reflite-commercial-content p {
        max-width: 350px;
        font-size: 14px;
    }
}

/* =========================================================
   17. NETWORK MAP
========================================================= */

.reflite-network {
    padding: 120px 0;
    background: #fff;
}

.reflite-network-grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 70px;
}

.reflite-network-content {
    max-width: 540px;
}

.reflite-network-content h2 {
    max-width: 520px;
}

.reflite-network-content > p {
    max-width: 500px;
}

.reflite-region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 30px 0;
}

.reflite-region-tags span {
    padding: 9px 14px;
    border: 1px solid var(--reflite-line);
    border-radius: 999px;
    background: #fff;
    color: var(--reflite-text);
    font-size: 11px;
    font-weight: 700;
}

.reflite-network-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.reflite-network-primary,
.reflite-network-secondary {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: .25s ease;
}

.reflite-network-primary {
    border: 1px solid var(--reflite-black);
    background: var(--reflite-black);
    color: #fff;
}

.reflite-network-primary:hover {
    border-color: var(--reflite-green);
    background: var(--reflite-green);
    color: var(--reflite-black);
}

.reflite-network-secondary {
    border: 1px solid #ccd1d5;
    background: #fff;
    color: var(--reflite-black);
}

.reflite-network-secondary:hover {
    border-color: var(--reflite-black);
}

/* MAP CARD */

.reflite-map-card {
    overflow: hidden;
    border: 1px solid #e1e5e8;
    background: #f5f7f8;
}

.reflite-map-head {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 24px;
    border-bottom: 1px solid #e1e5e8;
    background: #fff;
}

.reflite-map-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--reflite-text);
    font-size: 12px;
    font-weight: 700;
}

.reflite-map-status i {
    border-radius: 50%;
    color: var(--reflite-green);
    font-size: 9px;
    box-shadow: 0 0 0 5px rgba(200, 233, 26, .18);
}

.reflite-map-count {
    color: #747c84;
    font-size: 11px;
}

.reflite-map-visual {
    display: flex;
    min-height: 420px;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.reflite-map-visual img {
    width: 100%;
    height: auto;
    max-height: 430px;
    object-fit: contain;
}

.reflite-map-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #e1e5e8;
    background: #fff;
}

.reflite-map-footer > div {
    padding: 20px;
    border-right: 1px solid #e1e5e8;
}

.reflite-map-footer > div:last-child {
    border-right: 0;
}

.reflite-map-footer strong,
.reflite-map-footer span {
    display: block;
}

.reflite-map-footer strong {
    margin-bottom: 5px;
    color: var(--reflite-text);
    font-size: 13px;
}

.reflite-map-footer span {
    color: #7a828a;
    font-size: 10px;
}

/* MODAL */

.reflite-request-modal {
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .22);
}

.reflite-request-modal .modal-header {
    align-items: flex-start;
    padding: 28px 30px;
    border-bottom: 1px solid #e4e7e9;
}

.reflite-modal-kicker {
    display: block;
    margin-bottom: 7px;
    color: var(--reflite-green-dark);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .18em;
}

.reflite-request-modal .modal-title {
    color: var(--reflite-dark);
    font-size: 27px;
    font-weight: 750;
}

.reflite-request-modal .modal-body {
    padding: 30px;
}

.reflite-request-modal .form-label {
    color: #3e454c;
    font-size: 12px;
    font-weight: 700;
}

.reflite-request-modal .form-control,
.reflite-request-modal .form-select {
    min-height: 48px;
    border-color: #dde1e4;
    border-radius: 8px;
    box-shadow: none;
}

.reflite-request-modal textarea.form-control {
    min-height: 120px;
}

.reflite-request-modal .form-control:focus,
.reflite-request-modal .form-select:focus {
    border-color: var(--reflite-green-dark);
    box-shadow: 0 0 0 3px rgba(200, 233, 26, .16);
}

.reflite-request-modal .modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #e4e7e9;
}

.reflite-modal-submit {
    min-height: 44px;
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    background: var(--reflite-black);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.reflite-modal-submit:hover {
    background: var(--reflite-green);
    color: var(--reflite-black);
}

@media (max-width: 992px) {
    .reflite-network-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .reflite-network-content {
        max-width: 680px;
    }
}

@media (max-width: 767px) {
    .reflite-network {
        padding: 75px 0;
    }

    .reflite-map-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        padding: 17px 18px;
    }

    .reflite-map-visual {
        min-height: 310px;
        padding: 18px;
    }

    .reflite-map-visual img {
        max-height: 310px;
    }

    .reflite-map-footer {
        grid-template-columns: 1fr;
    }

    .reflite-map-footer > div {
        padding: 14px 18px;
        border-right: 0;
        border-bottom: 1px solid #e1e5e8;
    }

    .reflite-map-footer > div:last-child {
        border-bottom: 0;
    }

    .reflite-network-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .reflite-network-primary,
    .reflite-network-secondary {
        width: 100%;
    }

    .reflite-request-modal .modal-header,
    .reflite-request-modal .modal-body,
    .reflite-request-modal .modal-footer {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* =========================================================
   18. KNOWLEDGE
========================================================= */

.reflite-knowledge {
    padding: 120px 0;
    background: var(--reflite-soft);
}

.reflite-knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.reflite-knowledge-card {
    min-height: 330px;
    padding: 38px;
    border: 1px solid var(--reflite-line);
    background: #fff;
}

.reflite-knowledge-number {
    color: var(--reflite-green-dark);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .15em;
}

.reflite-knowledge-card h3 {
    margin: 55px 0 18px;
    color: var(--reflite-text);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.reflite-knowledge-card p {
    color: var(--reflite-muted);
    font-size: 14px;
    line-height: 1.7;
}

.reflite-knowledge-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: var(--reflite-text);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

/* =========================================================
   19. FINAL CTA
========================================================= */

.reflite-final-cta {
    padding: 85px 0;
    background: var(--reflite-green);
}

.reflite-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.reflite-final-cta-inner > div:first-child {
    max-width: 820px;
}

.reflite-final-cta span {
    color: rgba(13, 15, 18, .65);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .17em;
}

.reflite-final-cta h2 {
    margin: 14px 0 12px;
    color: var(--reflite-black);
    font-size: clamp(31px, 3.5vw, 52px);
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.05;
}

.reflite-final-cta p {
    margin: 0;
    color: rgba(13, 15, 18, .68);
    font-size: 15px;
}

.reflite-final-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.reflite-cta-primary,
.reflite-cta-secondary {
    display: inline-flex;
    padding: 15px 24px;
    border: 1px solid var(--reflite-black);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.reflite-cta-primary {
    background: var(--reflite-black);
    color: #fff;
}

.reflite-cta-secondary {
    color: var(--reflite-black);
}

/* =========================================================
   20. FOOTER
========================================================= */

.site-footer {
    margin-top: 0;
    background: #f5f6f7;
    color: #333;
}

.footer-contact {
    border-bottom: 1px solid #ddd;
    background: #f0f1f2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 25px 0;
}

.contact-item {
    display: flex;
    gap: 10px;
    color: #444;
    font-size: 14px;
}

.contact-item .icon {
    font-size: 18px;
}

.footer-top {
    padding: 70px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-col p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #555;
    font-size: 14px;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--reflite-green-dark);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #ddd;
    color: #777;
    font-size: 13px;
    text-align: center;
}

/* =========================================================
   21. RESPONSIVE — 1200
========================================================= */

@media (max-width: 1200px) {
    .header-inner,
    .header-flex,
    .header-row {
        gap: 18px;
    }

    .main-menu > ul,
    .main-menu ul {
        gap: 16px;
    }

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

    .reflite-about-grid,
    .reflite-private-grid,
    .reflite-network-grid {
        gap: 45px;
    }

    .reflite-commercial-card {
        height: 570px;
    }

    .reflite-commercial-content {
        width: 60%;
        min-width: 0;
        padding: 55px 28px 55px 48px;
    }

    .reflite-commercial-content h2 {
        font-size: 39px;
    }
}

/* =========================================================
   22. RESPONSIVE — 992
========================================================= */

@media (max-width: 992px) {
    .container {
        width: min(100% - 30px, var(--reflite-max));
    }

    .main-menu,
    .header-search,
    .header-right {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mega-menu {
        display: none !important;
    }

    .hero-slider {
        min-height: 700px;
    }

    .reflite-about,
    .reflite-tapes,
    .reflite-private-label,
    .reflite-network,
    .reflite-knowledge,
    .categories,
    .product-section,
    .reflective-section,
    .safety-section {
        padding: 80px 0;
    }

    .reflite-about-grid,
    .reflite-private-grid,
    .reflite-network-grid {
        grid-template-columns: 1fr;
    }

    .reflite-about-visual,
    .reflite-about-visual > img,
    .reflite-private-visual,
    .reflite-private-visual img {
        min-height: 480px;
        height: 480px;
    }

    .category-grid,
    .reflite-knowledge-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reflite-final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

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

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

/* =========================================================
   23. RESPONSIVE — 767
========================================================= */

@media (max-width: 767px) {
    .top-bar .container,
    .top-bar-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .top-bar a {
        margin: 0 12px 0 0;
    }

    .site-header {
        top: 54px;
    }

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

    .logo img {
        height: 36px;
    }

    .hero-slider {
        height: 82vh;
        min-height: 620px;
    }

    .hero-content {
        top: 48%;
        width: 92%;
    }

    .hero-top-title {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .hero-title {
        font-size: clamp(38px, 11vw, 56px);
    }

    .hero-subtitle {
        max-width: 90%;
        font-size: 15px;
    }

    .hero-buttons {
        align-items: center;
        flex-direction: column;
    }

    .reflite-trust-grid,
    .reflite-tape-grid,
    .category-grid,
    .reflite-knowledge-grid {
        grid-template-columns: 1fr;
    }

    .reflite-trust-item {
        border-bottom: 1px solid var(--reflite-line);
        border-left: 1px solid var(--reflite-line);
    }

    .reflite-about-visual,
    .reflite-about-visual > img,
    .reflite-private-visual,
    .reflite-private-visual img {
        min-height: 360px;
        height: 360px;
    }

    .reflite-stats {
        grid-template-columns: 1fr;
    }

    .reflite-stats > div {
        padding-bottom: 18px;
        border-bottom: 1px solid var(--reflite-line);
    }

    .reflite-private-content ul {
        grid-template-columns: 1fr;
    }

    .reflite-map,
    .reflite-map > img {
        min-height: 380px;
        height: 380px;
    }

    .reflite-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .reflite-cta-primary,
    .reflite-cta-secondary {
        justify-content: center;
    }

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

/* =========================================================
   24. RESPONSIVE — 480
========================================================= */

@media (max-width: 480px) {
    .container {
        width: min(100% - 24px, var(--reflite-max));
    }

}
.reflite-tapes-all {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.reflite-tapes-all-link {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 24px;
    border: 1px solid #0d0f12;
    border-radius: 999px;
    background: #0d0f12;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: .25s ease;
}

.reflite-tapes-all-link:hover {
    border-color: #c8e91a;
    background: #c8e91a;
    color: #0d0f12;
}

.reflite-tapes-all-link i {
    transition: transform .25s ease;
}

.reflite-tapes-all-link:hover i {
    transform: translateX(4px);
}
/* =========================================================
   REFLITE — STICKY HEADER + PROFESSIONAL MEGA MENU
   Add this file after the main style.css file.
========================================================= */

.site-header {
    position: sticky !important;
    top: 0 !important;
    left: auto !important;
    z-index: 5000 !important;
    width: 100%;
    border-bottom: 1px solid rgba(13, 15, 18, .08);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 8px 25px rgba(13, 15, 18, .04);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    width: min(1320px, calc(100% - 40px));
    min-height: 78px;
    align-items: center;
    gap: 0;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
}

.logo {
    flex: 0 0 auto;
    margin-right: clamp(32px, 4vw, 72px);
}

.logo img {
    width: auto;
    height: 46px;
}

.main-menu {
    min-width: 0;
    flex: 1 1 auto;
    margin-left: 0;
}

.main-menu > ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(18px, 1.7vw, 31px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu > ul > li {
    position: relative;
}

.main-menu > ul > li > a {
    display: inline-flex;
    min-height: 78px;
    align-items: center;
    gap: 7px;
    padding: 0;
    color: #171a1f;
    font-size: 13px;
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
}

.menu-chevron {
    font-size: 8px;
    transition: transform .25s ease;
}

.has-mega:hover > a .menu-chevron,
.has-mega:focus-within > a .menu-chevron {
    transform: rotate(180deg);
}

.has-mega {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 4990;
    display: block;
    width: 100%;
    padding: 0;
    border-top: 1px solid #e8ebed;
    background: #fff;
    box-shadow: 0 30px 65px rgba(13, 15, 18, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .22s ease;
}

.has-mega:hover > .mega-menu,
.has-mega:focus-within > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-inner {
    display: grid;
    width: min(1320px, calc(100% - 40px));
    min-height: 365px;
    margin-right: auto;
    margin-left: auto;
    grid-template-columns:
        minmax(210px, .72fr)
        minmax(520px, 1.65fr)
        minmax(290px, .9fr);
    align-items: stretch;
    gap: 44px;
    padding: 42px 0;
}

.mega-menu-inner:not(:has(.mega-feature)) {
    grid-template-columns:
        minmax(220px, .7fr)
        minmax(0, 2.3fr);
}

.mega-menu-intro {
    padding-right: 30px;
    border-right: 1px solid #e6e9eb;
}

.mega-eyebrow {
    display: block;
    margin-bottom: 16px;
    color: #9bb700;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .19em;
}

.mega-menu-intro h3 {
    max-width: 255px;
    margin: 0 0 15px;
    color: #171a1f;
    font-size: 25px;
    font-weight: 720;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.mega-menu-intro p {
    max-width: 245px;
    margin: 0 0 25px;
    color: #737b83;
    font-size: 12px;
    line-height: 1.7;
}

.mega-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #171a1f;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.mega-all-link i {
    transition: transform .2s ease;
}

.mega-all-link:hover i {
    transform: translateX(4px);
}

.mega-menu-links {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(150px, 1fr)
    );
    align-content: start;
    gap: 34px 30px;
}

.mega-col {
    min-width: 0;
}

.mega-col h4 {
    position: relative;
    margin: 0 0 18px;

    padding: 0 0 13px;
    color: #171a1f;
    font-size: 13px;
    font-weight: 800;
}

.mega-col h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: #c8e91a;
}

.mega-col h4 a {
    color: inherit;
    text-decoration: none;
}

.mega-links {
    display: grid;
    gap: 1px;
}

.mega-links > a,
.mega-single-link {
    position: relative;
    display: block;
    padding: 8px 0 8px 14px;
    color: #626a72;
    font-size: 12px;
    line-height: 1.45;
    text-decoration: none;
    transition:
        color .2s ease,
        transform .2s ease;
}

.mega-links > a::before,
.mega-single-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 1px;
    background: #aeb4b9;
    transform: translateY(-50%);
    transition:
        width .2s ease,
        background-color .2s ease;
}

.mega-links > a:hover,
.mega-single-link:hover {
    color: #171a1f;
    transform: translateX(4px);
}

.mega-links > a:hover::before,
.mega-single-link:hover::before {
    width: 8px;
    background: #c8e91a;
}

.mega-feature {
    position: relative;
    display: block;
    min-height: 280px;
    overflow: hidden;
    background: #11161a;
    color: #fff;
    text-decoration: none;
}

.mega-feature img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .6s ease;
}

.mega-feature:hover img {
    transform: scale(1.045);
}

.mega-feature-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(5, 8, 10, .94) 0%,
            rgba(5, 8, 10, .56) 47%,
            rgba(5, 8, 10, .08) 100%
        );
}

.mega-feature-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 27px;
}

.mega-feature-content small,
.mega-feature-content strong,
.mega-feature-content > span {
    display: block;
}

.mega-feature-content small {
    margin-bottom: 9px;
    color: #c8e91a;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .17em;
}

.mega-feature-content strong {
    max-width: 260px;
    margin-bottom: 17px;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.1;
}

.mega-feature-content > span {
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
    font-weight: 700;
}

.header-right {
    flex: 0 0 auto;
    margin-left: 24px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1180px) {
    .header-inner,
    .mega-menu-inner {
        width: min(100% - 32px, 1320px);
    }

    .logo {
        margin-right: 24px;
    }

    .main-menu > ul {
        gap: 16px;
    }

    .main-menu > ul > li > a {
        font-size: 12px;
    }

    .header-right {
        margin-left: 16px;
    }

    .mega-menu-inner {
        grid-template-columns:
            minmax(185px, .65fr)
            minmax(430px, 1.5fr)
            minmax(250px, .82fr);
        gap: 28px;
    }

    .mega-menu-links {
        gap: 26px 18px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 992px) {
    .site-header {
        position: sticky !important;
        top: 0 !important;
    }

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

    .main-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        border-top: 1px solid #e8ebed;
        background: #fff;
        box-shadow: 0 18px 38px rgba(13, 15, 18, .12);
    }

    .main-menu.is-open {
        display: block;
    }

    .main-menu > ul {
        display: block;
        width: min(100% - 30px, 720px);
        margin: 0 auto;
        padding: 12px 0 20px;
    }

    .main-menu > ul > li {
        border-bottom: 1px solid #edf0f2;
    }

    .main-menu > ul > li > a {
        display: flex;
        min-height: 54px;
        justify-content: space-between;
        font-size: 14px;
    }

    .mega-menu {
        position: static;
        display: none;
        border-top: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

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

    .mobile-mega-open > a .menu-chevron {
        transform: rotate(180deg);
    }

    .mega-menu-inner,
    .mega-menu-inner:not(:has(.mega-feature)) {
        display: block;
        width: 100%;
        min-height: 0;
        padding: 0 0 18px;
    }

    .mega-menu-intro,
    .mega-feature {
        display: none;
    }

    .mega-menu-links {
        display: block;
        padding: 2px 0 8px 16px;
    }

    .mega-col {
        padding: 9px 0;
    }

    .mega-col h4 {
        margin-bottom: 8px;
        padding-bottom: 8px;
    }

    .mega-links > a,
    .mega-single-link {
        padding-top: 7px;
        padding-bottom: 7px;
        font-size: 13px;
    }

    .header-right {
        display: none;
    }
}


/* =========================================================
   QUICK MEGA LAYOUT
   Products / Corporate gibi yaprak menüler için
========================================================= */

.mega-menu-inner.mega-quick-layout {
    grid-template-columns:
        minmax(220px, .72fr)
        minmax(520px, 1.55fr)
        minmax(290px, .88fr);
    min-height: 300px;
}

.mega-quick-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: start;
    gap: 18px 18px;
}

.mega-quick-link {
    display: flex;
    min-height: 104px;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 18px 16px;
    border: 1px solid #e8ebed;
    background: #fff;
    color: #171a1f;
    text-decoration: none;
    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.mega-quick-link:hover {
    transform: translateY(-2px);
    border-color: #c8e91a;
    box-shadow: 0 14px 26px rgba(13, 15, 18, .08);
}

.mega-quick-link strong {
    display: block;
    margin: 0 0 10px;
    color: #171a1f;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.mega-quick-link small {
    display: block;
    margin: 0 0 14px;
    color: #737b83;
    font-size: 11px;
    line-height: 1.55;
}

.mega-quick-link span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #171a1f;
    font-size: 11px;
    font-weight: 800;
}

.mega-quick-link i {
    font-size: 10px;
}

@media (max-width: 1180px) {
    .mega-menu-inner.mega-quick-layout {
        grid-template-columns:
            minmax(180px, .68fr)
            minmax(420px, 1.45fr)
            minmax(240px, .78fr);
    }

    .mega-quick-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .mega-quick-links {
        display: block;
        padding: 4px 0 10px 16px;
    }

    .mega-quick-link {
        min-height: 0;
        margin: 0 0 10px;
        padding: 12px 14px;
    }

    .mega-quick-link small {
        display: none;
    }
}