        :root {
            --do-blue: #0069ff;
            --do-blue-dark: #0055d4;
            --bg-light: #f3f5f9;
            --text-dark: #031b4e;
            --text-muted: #4e5d78;
            --border-color: #e5e8ed;
            --white: #ffffff;
            --max-width: 1200px; /* Boxed დიზაინის სიგანე */
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'BPG Arial Caps', sans-serif;
            background-color: var(--bg-light); /* ფონი გვერდებზე */
            color: var(--text-dark);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

/* კომპიუტერის ვერსია - თავიდანვე განსაზღვრე */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-inner .nav-links a {
    font-size: 15px;
}

/* DESKTOP NAV (ძირითადი მდგომარეობა) */
.nav-inner .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
	
    gap: 3px;
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
}
@media (max-width: 768px) {
    /* მობილურზე მენიუს კონტეინერი */
    .nav-inner .nav-links {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important;
        left: -100% !important; /* თავიდან დამალულია მარცხნივ */
        width: 80% !important;
        height: 100vh !important;
        background: #ffffff !important;
        padding: 40px 20px !important;
        transition: all 0.4s ease-in-out !important;
        z-index: 99999 !important;
        box-shadow: 5px 0 15px rgba(0,0,0,0.2) !important;
        visibility: visible !important;
    }

    /* როდესაც აქტიურია */
    .nav-inner .nav-links.active {
        left: 0 !important; /* გამოდის ეკრანზე */
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 100000 !important;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #333;
        display: block;
    }

    .mobile-logo {
        display: block !important;
        margin-bottom: 20px;
    }
}

/* კომპიუტერზე ბურგერის დამალვა */
@media (min-width: 769px) {
    .hamburger, .mobile-logo {
        display: none !important;
    }
}

        /* კონტეინერი რომელიც ზღუდავს სიგანეს */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            width: 100%;
        }

        /* Navbar */
        nav {
            background: var(--white);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-inner {
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        .logo {
            font-weight: 700;
            font-size: 22px;
            color: var(--do-blue);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 14px;
            margin-left: 25px;
            transition: color 0.2s;
        }

        .btn-signup {
            background: var(--do-blue);
            color: white !important;
            padding: 8px 18px;
            border-radius: 4px;
        }

        /* Hero Section */
        .hero {
            background: var(--white);
            padding: 100px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .hero-inner {
            padding: 0 20px;
            display: flex;
            align-items: center;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .hero p {
            font-size: 19px;
            color: var(--text-muted);
            margin-bottom: 32px;
            max-width: 550px;
        }

        /* Pricing Section */
        .section-pricing {
            padding: 80px 0;
            background: var(--white);
        }

        .pricing-inner {
            padding: 0 20px;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        .vps-card {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 32px;
            background: var(--white);
            transition: all 0.2s ease;
        }

        .vps-card:hover {
            border-color: var(--do-blue);
            box-shadow: 0 10px 20px rgba(0, 105, 255, 0.05);
        }

        .vps-price {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .vps-price span {
            font-size: 14px;
            color: var(--text-muted);
        }

        .spec-list {
            list-style: none;
            margin-bottom: 24px;
        }

        .spec-list li {
            font-size: 14px;
            padding: 8px 0;
            color: var(--text-muted);
            border-bottom: 1px solid #f0f0f0;
        }

        .btn-select {
            display: block;
            text-align: center;
            padding: 12px;
            border: 1px solid var(--do-blue);
            color: var(--do-blue);
            text-decoration: none;
            font-weight: 600;
            border-radius: 4px;
            transition: 0.2s;
        }

        /* Features */
        .info-section {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .features-row {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
            padding: 0 20px;
        }

        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 8px;
            width: 350px;
            border: 1px solid var(--border-color);
        }

        footer {
            background: var(--white);
            border-top: 1px solid var(--border-color);
        }

        .footer-inner {
            padding: 40px 20px;
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            justify-content: space-between;
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 32px; }
            .nav-links { display: none; }
        }
		
		/* Domain Search Section */
        .domain-search {
            background: #f3f5f9;
            padding: 80px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .search-wrapper {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
        }

        .search-wrapper h2 {
            font-size: 28px;
            margin-bottom: 24px;
            font-weight: 700;
        }

        .search-box {
            display: flex;
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 6px;
            overflow: hidden;
            transition: border-color 0.2s;
        }

        .search-box:focus-within {
            border-color: var(--do-blue);
        }

        .search-box input {
            flex: 1;
            padding: 18px 24px;
            border: none;
            outline: none;
            font-size: 16px;
            font-family: inherit;
        }

        .search-box button {
            background: var(--do-blue);
            color: white;
            border: none;
            padding: 0 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

        .search-box button:hover { background: var(--do-blue-dark); }

        .domain-extensions {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 14px;
            color: var(--text-muted);
        }

        .ext-price { color: var(--text-dark); font-weight: 600; }

        /* Features/Characteristics Section */
        .specs-section {
            padding: 100px 0;
            background: var(--white);
        }

        .specs-inner { padding: 0 20px; }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .spec-item {
            display: flex;
            gap: 20px;
        }

        .spec-icon {
            width: 48px;
            height: 48px;
            background: var(--bg-light);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--do-blue);
        }

        .spec-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .spec-content p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .section-header h2 { font-size: 32px; font-weight: 700; margin-bottom: 16px; }
        .section-header p { color: var(--text-muted); font-size: 18px; }

        @media (max-width: 768px) {
            .search-box { flex-direction: column; border: none; }
            .search-box input { border: 2px solid var(--border-color); border-radius: 6px; margin-bottom: 10px; }
            .search-box button { padding: 15px; border-radius: 6px; }
            .domain-extensions { flex-wrap: wrap; }
        }
		.logo {
  width: 120px;   /* დაარეგულირე როგორც გინდა */
  height: auto;   /* პროპორციები რომ არ გაფუჭდეს */
}
		.mobile-logo {
  width: 120px;   /* დაარეგულირე როგორც გინდა */
  height: auto;   /* პროპორციები რომ არ გაფუჭდეს */
}
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px; /* დაცილება ტექსტსა და სურათს შორის */
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image svg {
    width: 100%;
    max-width: 350px; /* სურათის მაქსიმალური ზომა */
    height: auto;
}

.node {
    animation: pulse-node 3s infinite ease-in-out;
}

@keyframes pulse-node {
    0% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.3; transform: scale(1); }
}

/* მობილურისთვის: სურათი გადავა ტექსტის ქვემოთ */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        order: -1; /* სურათი გამოჩნდეს ტექსტის ზემოთ მობილურზე */
        margin-bottom: 30px;
    }
}	

   .faq-section { 
    padding: 100px 0; 
    background: #fff; 
    overflow: hidden; /* რომ ანიმაციამ გვერდზე სქროლი არ გააჩინოს */
}

.faq-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-content { flex: 1.2; width: 100%; }
.faq-visual { flex: 0.8; text-align: center; width: 100%; }

.faq-visual svg {
    width: 100%;
    max-width: 450px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* FAQ სექციის ძირითადი კონტეინერი */
.faq-section { 
    padding: 100px 0; 
    background: #ffffff; 
    overflow: hidden; 
}

.faq-wrapper {
    display: flex;
    align-items: flex-start; /* შევცვალე top-ზე სწორებისთვის */
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* სვეტების გადანაწილება */
.faq-content { flex: 1.3; } 
.faq-visual { 
    flex: 0.7; 
    position: sticky; /* სურათი სქროლვისას მოყვება (დესკტოპზე) */
    top: 100px;
    text-align: center; 
}

.faq-visual svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 15px rgba(0,105,255,0.1));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* სათაურები */
.faq-header h2 { 
    font-family: 'BPG Arial Caps', sans-serif;
    font-size: 36px; 
    color: #031b4e; 
    margin-bottom: 15px; 
    letter-spacing: -0.5px;
}

.faq-header p { 
    font-size: 18px;
    color: #5d6b82; 
    margin-bottom: 45px; 
    line-height: 1.5;
}

/* FAQ ელემენტები */
.faq-item {
    border-bottom: 1px solid #f0f3f7;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-bottom-color: #dbeafe;
}

.faq-question {
    font-family: 'BPG Arial Caps', sans-serif;
    width: 100%; 
    padding: 25px 0; 
    background: none; 
    border: none;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    font-size: 18px; 
    font-weight: 600; 
    color: #031b4e; 
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-question .icon { 
    color: #0069ff; 
    font-size: 26px;
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

/* პასუხის ბლოკი */
.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-answer p { 
    padding-bottom: 25px; 
    color: #5d6b82; 
    line-height: 1.7; 
    margin: 0;
    font-size: 16px;
}

/* აქტიური მდგომარეობა */
.faq-item.active {
    border-bottom-color: #0069ff;
}

.faq-item.active .faq-answer { 
    max-height: 500px; 
    opacity: 1;
}

.faq-item.active .icon { 
    transform: rotate(45deg);
    color: #001a41;
}

.faq-item.active .faq-question {
    color: #0069ff;
}

/* --- სრულყოფილი მობილური ოპტიმიზაცია --- */
@media (max-width: 992px) {
    .faq-section { padding: 60px 0; }
    
    .faq-wrapper { 
        flex-direction: column; 
        gap: 30px; 
    }

    .faq-content {
        order: 2;
        width: 100%;
    }

    .faq-visual { 
        order: 1; 
        width: 100%;
        position: static; /* ვაუქმებთ sticky-ს */
        margin-bottom: 20px;
    }

    .faq-visual svg { 
        max-width: 220px; /* უფრო კომპაქტური მობილურზე */
    }

    .faq-header { 
        text-align: center; 
    }

    .faq-header h2 { 
        font-size: 26px; 
        padding: 0 10px;
    }

    .faq-header p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .faq-item {
        margin: 0 15px; /* გვერდებზე ჰაერი მობილურისთვის */
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 0;
        line-height: 1.4;
    }

    .faq-answer p {
        font-size: 15px;
        line-height: 1.6;
    }
}
	
	
	    .resources-wrapper {
        /* DigitalOcean ხშირად იყენებს ძალიან ღია ნაცრისფერს სექციების გამოსაყოფად */
        background-color: #f8fafc; 
        padding: 100px 0; /* დიდი დაშორება ზემოთ და ქვემოთ */
        border-top: 1px solid #eef2f6;
        border-bottom: 1px solid #eef2f6;
    }

    .section-header-simple {
        margin-bottom: 50px;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .header-line {
        flex-grow: 1;
        height: 1px;
        background: #eef2f6;
    }

    .section-label { 
        font-size: 13px; 
        text-transform: uppercase; 
        letter-spacing: 1.5px; 
        color: #808b9e; 
        margin: 0;
        font-weight: 700;
    }

    .resource-grid { 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 32px; /* დაშორება ბარათებს შორის */
    }

    .resource-item { 
        padding: 40px; /* გავზარდეთ შიდა დაშორება (Padding) */
        background: white; 
        border: 1px solid #eef2f6; 
        border-radius: 12px; 
        text-decoration: none; 
        transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
        display: flex;
        flex-direction: column;
    }

    .item-icon {
        color: #0069ff;
        margin-bottom: 20px;
        opacity: 0.8;
    }

    .resource-item:hover { 
        border-color: #0069ff; 
        transform: translateY(-5px); 
        box-shadow: 0 20px 40px rgba(0, 105, 255, 0.06); 
    }

    .resource-item h4 { 
        margin: 0 0 12px 0; 
        color: #031b4e; 
        font-size: 20px; 
        font-weight: 700;
    }

    .resource-item p { 
        margin: 0 0 24px 0; 
        color: #5d6b82; 
        font-size: 15px; 
        line-height: 1.6; 
        flex-grow: 1; /* ტექსტი ყოველთვის თანაბრად გადანაწილდება */
    }

    .read-more { 
        font-size: 14px; 
        font-weight: 700; 
        color: #0069ff; 
        display: flex;
        align-items: center;
    }

    /* მობილური ვერსიისთვის */
    @media (max-width: 768px) {
        .resource-grid { grid-template-columns: 1fr; }
        .resources-wrapper { padding: 60px 0; }
    }
	
	
    /* 1. კონტეინერი, რომელიც აიძულებს SVG-ს გაიზარდოს */
    .hero-graphic-expanded {
        width: 100%;
        max-width: 650px; /* აქედან მართავ მაქსიმალურ ზომას */
        min-width: 400px;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: visible; /* რომ ანიმაცია არ ჩაიჭრას */
    }

    /* 2. თავად SVG-ის ზომა */
    .mega-server-svg {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 30px 60px rgba(0, 105, 255, 0.2));
        transform: scale(1.2); /* დამატებითი გადიდება */
        transition: transform 0.5s ease;
    }

    /* 3. ჰოვერ ეფექტი */
    .mega-server-svg:hover {
        transform: scale(1.25);
    }

    /* ანიმაციები */
    .server-layer {
        animation: floatingLayers 5s ease-in-out infinite;
    }

    .layer-mid { animation-delay: 0.4s; }
    .layer-bottom { animation-delay: 0.8s; }

    @keyframes floatingLayers {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
    }
	
	
	
	
/* კონტეინერი, რომელიც აფართოებს SVG-ს */
    .mega-cloud-container {
        width: 100%;
        max-width: 800px; /* აქედან შეგიძლია კიდევ უფრო გაზარდო */
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px;
        overflow: visible;
    }

    .mega-cloud-svg {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 40px 70px rgba(0, 105, 255, 0.2));
        animation: heroFloat 7s ease-in-out infinite;
        transform: scale(1.1); /* დამატებითი ოპტიკური გადიდება */
    }

    /* ანიმაციები */
    .mega-node {
        animation: pulseScale 4s ease-in-out infinite alternate;
    }

    .orbit-1 { animation: orbitPath 6s linear infinite; }
    .orbit-2 { animation: orbitPath 8s linear infinite reverse; }
    .orbit-3 { animation: orbitPath 5s linear infinite; animation-delay: 1s; }

    .data-stream {
        animation: streamFlow 1.5s ease-in-out infinite;
    }

    @keyframes heroFloat {
        0%, 100% { transform: translateY(0) scale(1.1); }
        50% { transform: translateY(-30px) scale(1.12); }
    }

    @keyframes pulseScale {
        from { transform: scale(1); }
        to { transform: scale(1.03); }
    }

    @keyframes orbitPath {
        0% { transform: translate(0, 0); }
        50% { transform: translate(10px, -15px); }
        100% { transform: translate(0, 0); }
    }

    @keyframes streamFlow {
        0% { transform: translateY(-10px); opacity: 0; }
        50% { opacity: 1; }
        100% { transform: translateY(10px); opacity: 0; }
    }

    /* მობილური ადაპტაცია */
    @media (max-width: 992px) {
        .mega-cloud-container { max-width: 450px; padding: 20px; }
    }
	
	








.l3-cloud-wrapper {
        max-width: 1200px;
        margin: 100px auto;
        padding: 0 30px;
        font-family: 'BPG Arial Caps', -apple-system, sans-serif;
        color: #031b4e;
    }

    /* Features Layout */
    .l3-features-layout {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 60px;
        margin-bottom: 120px;
    }

    .l3-icon-box {
        color: #0069ff;
        width: 34px;
        height: 34px;
        margin-bottom: 24px;
    }

    .l3-title {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 14px;
        letter-spacing: -0.02em;
    }

    .l3-text {
        color: #4a5568;
        font-size: 16px;
        line-height: 1.7;
        margin: 0;
    }

    /* OS Section Refined */
    .l3-os-container {
        background: #ffffff;
        border: 1px solid #eef2f6;
        border-radius: 28px;
        padding: 50px;
        box-shadow: 0 10px 40px rgba(3, 27, 78, 0.02);
    }

    .l3-os-header {
        margin-bottom: 45px;
    }

    .l3-os-pretitle {
        color: #0069ff;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2.5px;
        display: block;
        margin-bottom: 10px;
    }

    .l3-os-main-title {
        font-size: 34px;
        font-weight: 800;
        margin: 0;
        letter-spacing: -0.03em;
    }

    .l3-os-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }

    .l3-os-box {
        display: flex;
        align-items: center;
        padding: 18px 24px;
        border: 1.5px solid #eef2f6;
        border-radius: 18px;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        background: #fff;
    }

    .l3-os-box img {
        width: 32px;
        height: 32px;
        margin-right: 18px;
    }

    .l3-os-name {
        display: block;
        font-weight: 700;
        font-size: 15px;
        color: #031b4e;
    }

    .l3-os-ver {
        display: block;
        color: #808b9e;
        font-size: 13px;
        margin-top: 1px;
    }

    /* Interactions */
    .l3-os-box:hover {
        border-color: #0069ff;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 105, 255, 0.08);
    }

    .l3-os-box.l3-active {
        border-color: #0069ff;
        background: #f0f7ff;
        box-shadow: inset 0 0 0 1px #0069ff;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .l3-os-container { padding: 30px 20px; }
        .l3-os-main-title { font-size: 26px; }
        .l3-features-layout { gap: 40px; }
    }




/* 1. მშობელი კონტეინერი - აუცილებელია position: relative */
.mega-dropdown {
    position: relative;
    display: inline-block; /* უზრუნველყოფს, რომ ლინკმა დაიკავოს მხოლოდ თავისი ადგილი */
}

/* 2. მეგა მენიუ - საწყისი მდგომარეობა */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    
    /* მნიშვნელოვანია: display: none აქრობს ელემენტს ნაკადიდან */
    display: none; 
    
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    min-width: 600px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    box-shadow: 0 20px 40px rgba(3, 27, 78, 0.1);
    z-index: 9999; /* ყველაფერზე ზემოთ */
}

/* ===== MEGA DROPDOWN ===== */
.mega-dropdown:hover .mega-menu {
    display: grid;
    animation: l3-slideUp 0.2s ease-out forwards;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
}

@keyframes l3-slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(5px);
    }
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
}

.mega-item:hover {
    background: #f4f7fa;
}

.mega-item h4 {
    margin: 0;
    font-size: 16px;
    color: #031b4e;
    font-weight: 700;
}

.mega-item p {
    margin: 2px 0 0;
    font-size: 14px;
    color: #808b9e;
}

/* ===== MAIN MENU ===== */
.l3-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.l3-menu li {
    position: relative;
}

.l3-menu a {
    text-decoration: none;
    color: #031b4e;
    font-weight: 600;
    padding: 10px 15px;
    display: block;
}

/* ===== SUBMENU ===== */
.l3-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 105, 255, 0.1);
    border: 1px solid #eef2f6;
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    display: none;
    z-index: 100;
}

.l3-submenu li a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
}

.l3-submenu li a:hover {
    background: #f0f7ff;
    color: #0069ff;
}

.l3-dropdown:hover .l3-submenu {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .l3-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .l3-menu li {
        width: 100%;
    }

    .l3-menu a {
        padding: 12px 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
        padding: 12px 16px;
    }

    /* hover გამორთვა მობილურზე */
    .mega-dropdown:hover .mega-menu {
        display: none !important;
    }

    .l3-dropdown:hover .l3-submenu {
        display: none !important;
    }

    /* submenu - static flow */
    .l3-submenu {
        position: static;
        box-shadow: none;
        border: none;
        border-left: 3px solid #e6f0ff;
        border-radius: 0;
        margin-left: 16px;
        padding: 4px 0;
        display: none;
        min-width: unset;
        width: auto;
    }

    /* mega menu - static flow */
    .mega-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-left: 3px solid #e6f0ff !important;
        border-radius: 0 !important;
        margin-left: 16px;
        padding: 4px 0;
        width: auto !important;
        min-width: unset !important;
        display: none !important;
        animation: none !important;
    }

    /* .open კლასით გახსნა */
    .mega-dropdown.open .mega-menu {
        display: grid !important;
        animation: none !important;
    }

    .l3-dropdown.open .l3-submenu {
        display: block !important;
        animation: none !important;
    }

    .mega-item {
        padding: 10px 8px;
    }

    .mega-item h4 {
        font-size: 14px;
    }

    .mega-item p {
        font-size: 12px;
    }
}