/* --- TEMA DEĞİŞKENLERİ --- */
:root {
    --bg-main: #ffffff;
    --bg-secondary: #f8fafc;
    --primary-blue: #005D8C;
    --secondary-blue: #0A2540;
    --accent-blue: #0082c4;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --header-bg: rgba(255, 255, 255, 0.9);
    --card-radius: 14px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-mode {
    --bg-main: #0f172a;
    --bg-secondary: #1e293b;
    --primary-blue: #38bdf8;
    --secondary-blue: #020617;
    --accent-blue: #0284c7;
    --text-dark: #f8fafc;
    --text-light: #94a3b8;
    --border-color: #334155;
    --card-bg: #1e293b;
    --header-bg: rgba(15, 23, 42, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* TOP BAR FLEX YAPISI */
.top-bar {
    background-color: #0A2540;
    color: #ffffff;
    padding: 0 8%;
    height: 46px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-link, .top-bar-info {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.top-bar-link:hover {
    opacity: 0.85;
}

.top-bar-link i, .top-bar-info i {
    color: #38bdf8;
    font-size: 14px;
}

/* YUVARLAK İKON TEMA BUTONU */
.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    padding: 0;
    outline: none;
    flex-shrink: 0;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.theme-toggle-btn i {
    font-size: 14px;
    position: absolute;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle-btn .icon-sun {
    color: #f59e0b;
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-toggle-btn .icon-moon {
    color: #38bdf8;
    opacity: 0;
    transform: rotate(90deg) scale(0.4);
}

body.dark-mode .theme-toggle-btn {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(56, 189, 248, 0.35);
}

body.dark-mode .theme-toggle-btn .icon-sun {
    opacity: 0;
    transform: rotate(-90deg) scale(0.4);
}

body.dark-mode .theme-toggle-btn .icon-moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* HEADER & NAV */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    height: 80px;
    background-color: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
    height: 100%;
}

.nav-item {
    position: static !important;
    display: flex;
    align-items: center;
    height: 100%;
}

nav a.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    padding: 28px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

nav a.nav-link:hover, nav a.nav-link.active { color: var(--primary-blue); }

nav a.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-blue);
    transition: width 0.3s;
}

nav a.nav-link:hover::after, nav a.nav-link.active::after { width: 100%; }

/* --- ASİMETRİK PRO MEGA MENÜ --- */
.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 8% !important;
    right: 8% !important;
    width: 84% !important;
    
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15) !important;
    border-radius: 20px !important;
    padding: 0 !important;
    
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(15px) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 99999 !important;
    
    display: grid !important;
    grid-template-columns: 320px 1fr !important;
    overflow: hidden !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Sol Banner Alanı */
.mega-menu-banner {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: #ffffff;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mega-menu-banner h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #ffffff;
}

.mega-menu-banner p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 20px;
}

.mega-menu-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.mega-menu-banner-btn:hover {
    background: #ffffff;
    color: var(--secondary-blue);
}

/* Sağ Kart Alanı */
.mega-menu-links {
    padding: 30px;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    background-color: var(--bg-secondary);
    align-content: center;
}

.mega-menu-links a {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    padding: 16px 18px !important;
    text-decoration: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    transition: all 0.25s ease !important;
}

.mega-menu-links a:hover {
    background: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 93, 140, 0.15);
}

.mega-menu-links a h4, .mega-menu-links a strong {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    margin: 0 !important;
}

.mega-menu-links a:hover h4, .mega-menu-links a:hover strong {
    color: #ffffff !important;
}

.mega-menu-links a span {
    font-size: 12px !important;
    color: var(--text-light) !important;
}

.mega-menu-links a:hover span {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* HEADER BUTONLARI */
.nav-badge-btn {
    background-color: rgba(0, 93, 140, 0.08);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 93, 140, 0.2);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

body.dark-mode .nav-badge-btn {
    background-color: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.3);
}

.nav-badge-btn:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-btn {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

body.dark-mode .nav-btn { color: #0f172a; }

.nav-btn:hover {
    background-color: var(--secondary-blue);
    color: #ffffff;
    transform: translateY(-1px);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8%;
    color: #ffffff;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.90) 0%, rgba(0, 93, 140, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 750px;
}

.tag {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 6px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
}

.hero-desc {
    color: #cbd5e1;
    margin-bottom: 35px;
    font-size: 19px;
    max-width: 600px;
}

.btn-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 93, 140, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.4);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: var(--secondary-blue);
    border-color: #ffffff;
}

/* SECTIONS & CARDS */
.stats-section {
    background-color: var(--secondary-blue);
    color: #ffffff;
    padding: 50px 8%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-item h3 span { color: var(--accent-blue); }

.stat-item p {
    color: #94a3b8;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.accreditation-section {
    background-color: var(--bg-main);
    padding: 40px 8%;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.accreditation-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
}

.accreditation-item i {
    font-size: 32px;
    color: var(--primary-blue);
}

.services-section {
    padding: 100px 8%;
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--secondary-blue);
}

body.dark-mode .section-title { color: var(--text-dark); }

.section-title span { color: var(--primary-blue); }

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card, .why-us-card, .blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.service-card {
    padding: 45px 35px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: background-color 0.3s;
}

.service-card:hover, .why-us-card:hover, .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(0, 93, 140, 0.2);
}

.service-card:hover::before { background-color: var(--primary-blue); }

.service-icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 93, 140, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: background-color 0.3s, color 0.3s;
}

.service-card:hover .service-icon-box {
    background-color: var(--primary-blue);
    color: #ffffff;
}

.service-card i {
    font-size: 30px;
    color: var(--primary-blue);
    transition: color 0.3s;
}

.service-card:hover i { color: #ffffff; }

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.why-us-section {
    padding: 100px 8%;
    background-color: var(--bg-main);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-us-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    text-align: center;
}

.why-us-icon {
    width: 65px;
    height: 65px;
    background-color: rgba(0, 93, 140, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.why-us-icon i {
    font-size: 26px;
    color: var(--primary-blue);
}

.why-us-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.why-us-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.blog-section {
    padding: 100px 8%;
    background-color: var(--bg-secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 13px;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.blog-link:hover { gap: 12px; }

.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: #ffffff;
    padding: 80px 8%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-banner h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    margin-bottom: 30px;
}

.btn-white {
    background-color: #ffffff;
    color: #0A2540;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.btn-white:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

/* FOOTER */
footer {
    background-color: var(--secondary-blue);
    color: #ffffff;
    padding: 70px 8% 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-blue);
}

.footer-company-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-col p {
    color: #94a3b8;
    margin-bottom: 18px;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.footer-col p i {
    margin-top: 5px;
    margin-right: 15px;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
}

.footer-logo img {
    height: 45px;
    width: auto;
    display: block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-agency {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-agency a {
    color: #cbd5e1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-agency a:hover { color: #ffffff; }

.footer-agency img {
    height: 22px;
    width: auto;
    display: block;
}

/* RESPONSIVE (MOBİL & TABLET) */
@media (max-width: 992px) {
    .top-bar { display: flex; padding: 10px 5%; height: auto; min-height: 46px; }
    .top-bar-right { display: none; }
    
    header { height: 70px; padding: 0 5%; }
    .mobile-toggle { display: block; z-index: 1001; }

    nav {
        position: fixed !important;
        top: 70px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        background-color: var(--header-bg) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 25px 8% !important;
        gap: 15px !important;
        overflow-y: auto !important;
        transition: left 0.3s ease-in-out !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        z-index: 1000 !important;
    }

    /* Hamburger menü açıldığında tetiklenen sınıf */
    nav.mobile-active {
        left: 0 !important;
    }

    .nav-item {
        width: 100% !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        height: auto !important;
    }

    nav a.nav-link {
        padding: 12px 0 !important;
        width: 100% !important;
        justify-content: space-between !important;
        font-size: 16px !important;
        border-bottom: 1px solid var(--border-color) !important;
    }

    nav a.nav-link::after { display: none; }

    .dropdown-menu {
        position: static !important;
        display: none !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        background: transparent !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        grid-template-columns: 1fr !important;
    }

    /* Mobilde Biz Kimiz açıldığında tetiklenen sınıf */
    .dropdown.open .dropdown-menu {
        display: flex !important;
        flex-direction: column !important;
        padding: 10px 0 15px 0 !important;
    }

    .mega-menu-banner {
        width: 100% !important;
        padding: 20px !important;
        border-radius: 12px !important;
        margin-bottom: 10px !important;
    }

    .mega-menu-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        padding: 0 !important;
        background: transparent !important;
        width: 100% !important;
        grid-template-columns: 1fr !important;
    }

    .nav-badge-btn, .nav-btn {
        width: 100% !important;
        justify-content: center !important;
        margin-top: 10px !important;
    }

    .hero { text-align: center; justify-content: center; padding: 60px 5%; }
    .hero-content { max-width: 100%; }
    .hero-desc { margin: 0 auto 35px auto; }
    .btn-group { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar-left { gap: 14px; flex-wrap: wrap; }
    h1 { font-size: 34px; }
    .stats-section { grid-template-columns: 1fr; gap: 30px; }
    .services-section, .why-us-section, .blog-section { padding: 60px 5%; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* Mobilde bazı üst bar elemanlarını gizleme kuralı */
@media (max-width: 768px) {
    .mobile-hide {
        display: none !important;
    }
    
    .top-bar {
        height: 40px;
        padding: 0 5%;
        justify-content: space-between;
    }

    .top-bar-left, .top-bar-right {
        gap: 12px;
    }
}

/* MOBİL MENÜ AÇIKKEN ARKA PLANIN KAYMASINI ENGELLEYEN KOD */
body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}