@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat.ttf') format('truetype');
}

/* Default CSS */
:root {
    --primary-color: #0a5483; 
    --primary-color-low: rgba(10, 84, 131, 0.5);
    --primary-color-dark: #143180;
    --primary-color-light: #ffffff;

    --secondary-color: #e06320;
    --secondary-color-low: rgba(224, 99, 32, 0.5);
    --secondary-color-dark: #d05a02;
    --secondary-color-darker: #5f2204;
    
    --tertiary-color: #e9ecef;
    --tertiary-color-low: rgba(233, 236, 239, 0.5);
    --tertiary-color-dark: #ced4da;

    --bg-color: #f0eeec;
    --bg-color-low: #f8f9fa;
    --bg-color-dark: #e1e4e6;

    --text-dark: #343a40;
    --text-dark-low: #495057b9;
    --text-dark-dark: #212529;

    --text-light: #f8f9fa;
    --text-light-low: rgba(248, 249, 250, 0.7);
    --text-light-dark: #e1e4e6;

    --button-color: #02337c; 
    --button-color-low: rgba(2, 51, 124, 0.5);
    --button-color-dark: #001a4d;

    --card-bg: #fcfcfc;
    --card-bg-low: #f3f2f2;
    --smoothline-color: var(--bg-color);

    --primary-color-rgb: 10, 84, 131;
    --secondary-color-rgb: 224, 99, 32;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}


html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: none;
  }


body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--bg-color);
    color: var(--text-dark);
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

i {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
}

button:focus {
    outline: none;
}

button:active {
    outline: none;
}

button:hover {
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}
h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}



body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

section {
    display: flex;
    position: relative;
    height: 100vh;
}



header {
    position: fixed;
    width: 94%;
    margin-left: 3%;
    top: 4%;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 20px;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

[data-is-scrolled="true"] header {
    top: 1%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


header .navbar {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    position: relative;
}

header .navbar::before, header .navbar::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
}

header .navbar::before {
    background: var(--primary-color);
    top: -50px;
    left: -50px;
    filter: blur(40px);
}

header .navbar::after {
    background: var(--secondary-color);
    bottom: -50px;
    right: -50px;
    filter: blur(40px);
}


header .navbar .left {
    width: 140px;
    position: relative;
}

header .navbar .left::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(var(--primary-color-rgb), 0.1), 
        transparent
    );
}

header .navbar .left .logo {
    display: block;
    width: 100%;
    position: relative;
    transition: transform 0.3s ease;
}

header .navbar .left .logo:hover {
    transform: translateY(-2px);
}


header .navbar .right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

header .navbar .main-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

header .navbar .menu-item {
    position: relative;
}

header .navbar .menu-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

header .navbar .menu-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

header .navbar .menu-link:hover {
    background: rgba(var(--primary-color-rgb), 0.08);
    color: var(--primary-color);
}

header .navbar .menu-item:hover .menu-link i {
    transform: rotate(-180deg);
}


header .navbar .mega-menu {
    position: fixed;
    top: calc(4% + 80px); 
    left: 10%;
    width: 80%;
    background: var(--card-bg);
    border-radius: 0 0 20px 20px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(var(--primary-color-rgb), 0.05);
    max-height: 0;
    overflow: hidden;
}

header .navbar .menu-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    max-height: 600px;
    padding: 2rem;
}

header .navbar .mega-menu-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

header .navbar .menu-item:hover .mega-menu-content {
    opacity: 1;
    transform: translateY(0);
}

header .navbar .mega-menu .promo-side {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

header .navbar .mega-menu .promo-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

header .navbar .mega-menu .promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.8),
        transparent
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

header .navbar .mega-menu .promo-title {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

header .navbar .mega-menu .promo-text {
    color: var(--text-light-low);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

header .navbar .mega-menu .promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

header .navbar .mega-menu .promo-btn:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
}

header .navbar .menu-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

header .navbar .menu-category {
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

header .navbar .menu-category:hover {
    background: rgba(var(--primary-color-rgb), 0.05);
    transform: translateY(-5px);
}

header .navbar .menu-category h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(var(--primary-color-rgb), 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

header .navbar .menu-category h4 i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

header .navbar .menu-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}


header .navbar .contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

header .navbar .phone {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

header .navbar .phone i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

header .navbar .phone:hover i {
    background: var(--primary-color);
    color: var(--text-light);
    transform: rotate(-15deg);
}

header .navbar .info {
    display: flex;
    flex-direction: column;
}

header .navbar .info span {
    font-size: 0.75rem;
    color: var(--text-dark-low);
}

header .navbar .info a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

header .navbar .info a:hover {
    color: var(--primary-color);
}

header .navbar .teklif-btn {
    background: linear-gradient(135deg,
        var(--primary-color),
        var(--primary-color-dark)
    );
    color: var(--text-light);
    padding: 0.9rem 1.8rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.2);
}

header .navbar .teklif-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        var(--secondary-color),
        var(--secondary-color-dark)
    );
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

header .navbar .teklif-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

header .navbar .teklif-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.3);
}

header .navbar .burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-right: 15px;
}

header .navbar .burger div {
    width: 30px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    header .navbar .right {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 270px;
        height: calc(100vh - 80px);
        background-color: white;
        padding: 2rem;
        transition: 0.3s ease;
    }

    header .navbar .right.active {
        right: 0;
    }

    header .navbar .right .menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    header .navbar .burger {
        display: flex;
    }

    header .navbar .burger.active div:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    header .navbar .burger.active div:nth-child(2) {
        opacity: 0;
    }

    header .navbar .burger.active div:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 576px) {
    header .navbar .left {
        width: 150px;
    }

    header .navbar {
        width: 95%;
    }
}

header .mega-menu {
    width: calc(100% - 4rem);
    background: var(--card-bg);
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    border-top: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

header.menu-open .mega-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    padding: 2rem;
}

header.menu-open {
    overflow: hidden;
}

header .mega-menu-content {
    display: grid;
    grid-template-columns: 0.2fr 0.8fr;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    width: calc(100% - 2rem);

}

header.menu-open .mega-menu-content {
    opacity: 1;
    transform: translateY(0);
}

header .menu-side-image {
    position: relative;
    aspect-ratio: 9/13;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

header .menu-side-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
        rgba(var(--primary-color-rgb), 0.95),
        rgba(var(--primary-color-rgb), 0.8)
    );
    z-index: 1;
    opacity: 0.5;
}

header .menu-side-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 2;
    
}

header .menu-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 9/13;
    transform: scale(1.1);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header .menu-side-image:hover img {
    transform: scale(1.2);
}

header .menu-side-image .brand-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    
}

header .brand-overlay .brand-motto {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

header.menu-open .brand-motto {
    opacity: 1;
    transform: translateY(0);
}

header .insurance-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    height: auto;
    width: calc(100% - 2rem);
}

header .insurance-box {
    position: relative;
    background: var(--bg-color);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.03),
        inset 0 1px 0 rgba(255,255,255,0.8);
    width: 125px;
}

header .insurance-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

header .insurance-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

header .insurance-box .icon-wrapper {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(var(--primary-color-rgb), 0.28);
    margin-bottom: 0.3rem;
    transition: all 0.4s ease;
    z-index: 5;
}

header .insurance-box:hover .icon-wrapper {
    background: rgba(255,255,255,0.8);
}

header .insurance-box i {
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

header .insurance-box:hover i {
    color: var(--text-light);
}

header .insurance-box .icon-bg {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    font-size: 4rem;
    color: rgba(var(--primary-color-rgb), 0.04);
    transition: all 0.4s ease;
    pointer-events: none;
}

header .insurance-box:hover .icon-bg {
    color: rgba(255,255,255,0.1);
}

header .insurance-box span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    line-height: 1.3;
}

header .insurance-box .meta {
    font-size: 0.75rem;
    color: var(--text-dark-low);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    opacity: 0.7;
}

header .insurance-box:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 20px rgba(var(--primary-color-rgb), 0.15),
        inset 0 1px 0 rgba(255,255,255,0.4);
}

header .insurance-box:hover::before {
    opacity: 1;
}

header .insurance-box:hover::after {
    top: -20%;
    right: -20%;
}

header .insurance-box:hover .icon-wrapper {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1) rotate(-10deg);
}

header .insurance-box:hover i {
    color: var(--text-light);
    transform: scale(0.9);
}

header .insurance-box:hover .icon-bg {
    color: rgba(255,255,255,0.1);
    transform: translate(-20%, -20%) rotate(-15deg);
}

header .insurance-box:hover span,
header .insurance-box:hover .meta {
    color: var(--text-light);
}

header .insurance-box:hover .meta {
    opacity: 0.9;
}


@media (max-width: 1200px) {
    header .insurance-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

@media (max-width: 768px) {
    header .insurance-box {
        padding: 1.5rem;
    }
    
    header .insurance-box i {
        font-size: 2rem;
    }
    
    header .insurance-box span {
        font-size: 1rem;
    }
}


@media (max-width: 1200px) {
    header .insurance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    header .mega-menu-content {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    header .menu-side-image {
        display: none;
    }
    
    header .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    header .insurance-grid {
        grid-template-columns: 1fr;
    }
}


@media screen and (max-width: 1200px) {
    header {
        width: 90%;
        margin-left: 5%;
    }

    header .navbar .menu-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }

    header .navbar .main-menu {
        gap: 1rem;
    }

    header .navbar .contact-info {
        gap: 1rem;
    }
}

@media screen and (max-width: 991px) {
    header {
        width: 90%;
        margin-left: 0;
        border-radius: 0;
        top: 0;
    }

    header .navbar .burger {
        display: flex;
        z-index: 100;
    }

    header .navbar .right {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        background: var(--card-bg);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    header .navbar .right.active {
        right: 0;
    }

    header .navbar .main-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    header .navbar .menu-item {
        width: 100%;
    }

    header .navbar .menu-link {
        padding: 1rem;
        width: 100%;
        justify-content: space-between;
        border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.08);
    }

    header .navbar .contact-info {
        flex-direction: column;
        border: none;
        padding: 0;
        margin-top: 2rem;
        width: 100%;
        gap: 1.5rem;
    }

    header .navbar .phone {
        width: 100%;
        justify-content: flex-start;
    }

    header .navbar .teklif-btn {
        width: 100%;
        text-align: center;
    }

    header .mega-menu {
        position: relative;
        top: 0;
        left: 0;
        width: calc(100% - 4rem);
        border-radius: 0;
        box-shadow: none;
    }

    header .mega-menu-content {
        grid-template-columns: 1fr;
    }

    header .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media screen and (max-width: 576px) {
    header .navbar {
        padding: 0.6rem 1rem;
    }

    header .navbar .left {
        width: 120px;
    }

    header .navbar .right {
        width: calc(100% - 4rem);
    }

    header .navbar .insurance-grid {
        grid-template-columns: 1fr;
    }

    header .navbar .burger {
        gap: 10px;
        margin-right: 20px;
    }

    header .navbar .burger.active {
        gap: 6px;
    }

    header .navbar .burger div {
        width: 35px;
    }

    header .mega-menu-content {
        padding: 1rem;
    }

    header .insurance-box {
        padding: 1.2rem;
    }
}


header .navbar .burger.active div:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

header .navbar .burger.active div:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

header .navbar .burger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


body.menu-open {
    overflow: hidden;
}


@media screen and (max-width: 1600px) {
    header {
        width: 96%;
        margin-left: 2%;
    }

    header .navbar {
        padding: 0.8rem 1.5rem;
    }

    header .navbar .menu-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.7rem;
    }

    header .navbar .right {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 1400px) {
    header {
        width: 98%;
        margin-left: 1%;
    }

    header .navbar .main-menu {
        gap: 1rem;
    }

    header .navbar .contact-info {
        padding-left: 1rem;
    }

    header .navbar .teklif-btn {
        padding: 0.8rem 1.4rem;
    }
}

@media screen and (max-width: 1200px) {
    header {
        width: 100%;
        margin-left: 0;
        border-radius: 0;
    }

    header .navbar .menu-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }

    header .navbar .phone i {
        width: 35px;
        height: 35px;
    }

    header .navbar .info a {
        font-size: 0.9rem;
    }
}


@media screen and (max-width: 991px) {
    header .navbar .right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--card-bg);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 9998; 
        overflow-y: auto;
    }

    header .navbar .right .menu {
        width: 100%;
    }

    header .navbar .burger {
        z-index: 9999; 
    }

    
    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 9997;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    
    header .mega-menu {
        position: static;
        width: calc(100% - 4rem);
        margin: 0;
        box-shadow: none;
        overflow-y: auto;
    }

    
    header .mega-menu::-webkit-scrollbar {
        width: 8px;
    }

    header .mega-menu::-webkit-scrollbar-thumb {
        background: rgba(var(--primary-color-rgb), 0.5);
        border-radius: 10px;
    }

    header .mega-menu::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
    }

    header .navbar .menu-item {
        width: 100%;
    }
}


@media screen and (max-width: 576px) {
    header .navbar .right {
        width: calc(100% - 4rem);
    }

    header .navbar .left {
        width: 110px;
    }

    header .navbar {
        padding: 0.6rem 1rem;
    }
}


@media screen and (max-width: 1400px) {
    header .navbar .main-menu {
        gap: 0.8rem;
    }

    header .navbar .menu-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }

    header .navbar .contact-info {
        padding-left: 1rem;
        gap: 1rem;
    }

    header .navbar .teklif-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 1300px) {
    header .navbar {
        padding: 0.8rem 1rem;
    }

    header .navbar .main-menu {
        gap: 0.5rem;
    }

    header .navbar .menu-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
    }

    header .navbar .contact-info {
        gap: 0.8rem;
    }

    header .navbar .phone i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    header .navbar .info span {
        font-size: 0.7rem;
    }

    header .navbar .info a {
        font-size: 0.85rem;
    }

    header .navbar .teklif-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 1100px) {
    header .navbar .main-menu {
        gap: 0.3rem;
    }

    header .navbar .menu-link {
        font-size: 0.75rem;
        padding: 0.3rem 0.4rem;
    }

    header .navbar .contact-info {
        padding-left: 0.8rem;
        gap: 0.6rem;
    }

    header .navbar .phone i {
        width: 32px;
        height: 32px;
    }

    header .navbar .teklif-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}




.loader-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--bg-color);
    z-index: 999999;
}

.loader-wrapper .loader {
    display: inline-block;
    width: 500px;
    margin: 0 auto;

    display: flex;
    justify-content: center;

}

.loader-wrapper .loader svg {
    width: 100%;
    height: auto;
}

.loader-wrapper .loader svg path {
    opacity: 0;
}

.loader-wrapper .loader svg path.svgIgnore {
    opacity: 1;
}
