﻿@charset "utf-8";

@font-face {
    font-family: 'Bhoma';
    src: url("../Fonts/BHoma.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    margin: 0;
    padding: 0;
    background-color: #E0E0E0;
    font-family: 'Bhoma', sans-serif;
    direction: rtl;
    overflow-x: hidden;
}

.intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #E0E0E0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.9s ease-in-out;
}

.logo {
    width: 80%;
    max-width: 300px;
    height: auto;
    transition: transform 5.0s ease-in-out;
}

.header,
.hero,
.categories,
.special-products,
.banner,
.articles,
.vn-footer {
    opacity: 0;
    transition: opacity 2s ease-in-out;
    font-family: 'Bhoma', sans-serif !important;
}

body.loaded .header,
body.loaded .hero,
body.loaded .categories,
body.loaded .special-products,
body.loaded .banner,
body.loaded .articles,
body.loaded .vn-footer {
    opacity: 1;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    padding: 0 60px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #E0E0E0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
}

    .nav-logo img {
        height: 48px;
        width: auto;
        max-width: 160px;
        display: block;
    }

.navbar-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    background: transparent;
    flex-grow: 1;
    margin: 0 40px;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #0F3057;
    text-decoration: none;
}

.vizno-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

    .vizno-menu li {
        position: relative;
    }

    .vizno-menu a {
        text-decoration: none;
        color: #0F3057;
        font-weight: 500;
        transition: 0.3s;
        display: block;
        padding: 10px 0;
    }

        .vizno-menu a:hover {
            color: #FF8126;
        }


/*-----------------------------------*/
.menu-btn {
    display: none;
    font-size: 24px;
    color: #0F3057;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 992px) {
    .menu-btn {
        display: block;
        z-index: 1002;
    }

    /* 2. کانتینر منو */
    .navbar-custom {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background-color: #E0E0E0;
        flex-direction: column;
        align-items: stretch;
        padding: 10px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        max-height: 0;
        overflow: hidden;
        z-index: 999;
    }

        .navbar-custom.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            max-height: 120vh;
            overflow-y: auto;
        }

    /* 3. لیست منو */
    .vizno-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
    }

        .vizno-menu li a {
            padding: 15px 20px;
            font-size: 14px;
            border-bottom: 1px solid rgba(15, 48, 87, 0.05);
            width: 100%;
            box-sizing: border-box;
            text-align: right;
        }

    .dropdown-menu-vizno {
        position: static;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.02);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0;
        width: 100%;
        border-radius: 0;
    }

    .dropdown.active .dropdown-menu-vizno {
        display: block;
        padding: 5px 0 5px 20px;
    }

    .dropdown-menu-vizno li a {
        padding: 10px 15px;
        font-size: 14px;
        color: #555;
        border-bottom: none;
    }

    .header {
        padding: 0 15px;
        height: 70px;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-icons-container {
        gap: 10px;
    }

    .user-display-name {
        display: none !important;
    }
}
/* --- پایان تغییرات --- */
/*-----------------------------------*/


.dropdown-menu-vizno {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.dropdown:hover .dropdown-menu-vizno {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-vizno li a {
    padding: 10px 20px;
    font-size: 14px;
}

    .dropdown-menu-vizno li a:hover {
        background-color: #f8f9fa;
        color: #FF8126;
    }
/* جدیده برای ایکون های هدر */
.nav-icons-container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
    direction: ltr;
}


.nav-icon-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 42px;
    padding: 0 10px;
    border-radius: 50%;
    color: #0F3057;
    text-decoration: none !important;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

    .nav-icon-item:hover {
        background-color: #f0f0f0;
        color: #FF8126;
    }

.nav-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #FF8126;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    z-index: 10;
}


.user-link-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}


.user-display-name {
    font-size: 10px;
    color: #0F3057;
    font-weight: 400;
    white-space: nowrap;
    display: none;
}


.user-dropdown {
    display: none;
    position: absolute;
    top: 55px;
    right: 0;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    border: 1px solid #eee;
    text-align: right;
}


#logoutBtn {
    width: 100%;
    padding: 8px 15px;
    border: none;
    background: #FF8126;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Bhoma', sans-serif;
    font-size: 14px;
    transition: 0.3s;
}

    #logoutBtn:hover {
        background: #e06b15;
    }


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.add-to-cart-btn {
    background-color: #FF8126;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
    font-family: inherit;
}

    .add-to-cart-btn:hover {
        background-color: #e06b15;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(255, 129, 38, 0.3);
    }

    .add-to-cart-btn:active {
        transform: scale(0.98);
    }

.added-success {
    background-color: #28a745 !important;
}


/*HERO SECTION */
.hero {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 0 15px;
}

.content {
    height: 600px;
    width: 100%;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.images {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

    .slide.active {
        display: block;
        opacity: 1;
        z-index: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.05);
        transition: transform 6s ease;
    }

    .slide.active img {
        transform: scale(1.1);
    }




    .slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
        z-index: 1;
    }

.caption {
    position: absolute;
    font-family: 'Bhoma';
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    max-width: 500px;
    z-index: 2;
    text-align: right;
}

.hero-title {
    font-size: 3.5rem;
    font-family: 'BHoma', sans-serif;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
}

.hero-desc {
    font-size: 1.2rem;
    font-family: 'BHoma', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: 0.2s;
}

.slide.active .hero-title {
    animation: fadeUp 0.8s ease forwards;
}

.slide.active .hero-desc {
    animation: fadeUp 0.8s ease forwards 0.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(to bottom right, #FF8126, #FFCC80);
    color: #0F3057;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 2rem;
    font-family: 'BHoma', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 129, 38, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition-delay: 0.4s;
}


.slide.active .btn {
    animation: fadeUp 0.8s ease forwards 0.4s;
}


.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 129, 38, 0.5);
}

/*CONTROLS  */

.btm-slides {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

    .btm-slides span {
        height: 12px;
        width: 12px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        cursor: pointer;
        transition: 0.3s;
    }

        .btm-slides span:hover,
        .btm-slides span.active {
            background: #FF8126;
            transform: scale(1.2);
        }

.sliders {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    z-index: 10;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

    .sliders:hover {
        background: #FF8126;
        border-color: #FF8126;
    }

.left {
    right: 30px;
}

.right {
    left: 30px;
}

/* RESPONSIVE  */
@media (max-width: 768px) {
    .content {
        height: 450px;
        border-radius: 15px;
    }

    .slide::before {
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
    }

    .caption {
        right: 20px;
        left: 20px;
        text-align: center;
        top: auto;
        bottom: 30px;
        transform: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .sliders {
        display: none;
    }
}




/* RESPONSIVE STYLES  */
@media (max-width: 768px) {
    .categories-section {
        padding: 40px 15px;
    }

    .categories-container {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .category-card {
        flex-direction: row;
        width: 100%;
        padding: 25px;
    }

    .category-image {
        width: 100px;
        height: 100px;
    }

    .category-content h3 {
        font-size: 22px;
    }

    .btn-outline {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .category-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .category-content {
        text-align: center;
        align-items: center;
        max-width: 100%;
    }

    .category-image {
        width: 120px;
        height: 120px;
    }
}

/* product */
.amazing-slider {
    background: linear-gradient(90deg, #f4e1c6, #0F3057);
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin: 20px auto;
    box-shadow: 0 10px 25px rgba(15, 48, 87, 0.3);
    box-sizing: border-box;
}

.slider-info {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-left: 20px;
    z-index: 2;
}

    .slider-info img {
        width: 100px;
        margin-bottom: 15px;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    }

    .slider-info h2 {
        font-size: 24px;
        font-family: 'Bhoma';
        margin-bottom: 5px;
        font-weight: 800;
        line-height: 1.2;
    }

    .slider-info p {
        font-size: 14px;
        font-family: 'Bhoma';
        margin-bottom: 15px;
        opacity: 0.9;
    }

.timer {
    display: flex;
    gap: 8px;
    direction: ltr;
}

.time-box {
    background: white;
    color: #0F3057;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    min-width: 45px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.products-container {
    flex: 1;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 10px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: stretch;
    width: 100%;
}

    .products-container::-webkit-scrollbar {
        display: none;
    }

.product-card {
    background: white;
    min-width: 200px;
    max-width: 200px;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        border-color: #FF8126;
    }

.product-image {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-title {
    font-size: 13px;
    font-family: 'Bhoma';
    color: #444;
    line-height: 1.5;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}

.price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.old-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 12px;
    margin-left: 5px;
}

.current-price {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.discount-badge {
    background: #ef394e;
    color: white;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 11px;
    margin-left: 5px;
}


.nav-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

    .nav-btn:hover {
        background: #FF8126;
    }

        .nav-btn:hover svg {
            fill: white;
        }

    .nav-btn svg {
        width: 24px;
        height: 24px;
        fill: #0F3057;
    }

.btn-prev {
    right: -2px;
}

.btn-next {
    left: -2px;
}

/* --- (Responsive) --- */
@media (max-width: 768px) {
    .amazing-slider {
        flex-direction: column;
        padding: 15px;
        margin: 10px;
        border-radius: 20px;
    }

    .slider-info {
        flex: none;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        width: 100%;
        margin-bottom: 20px;
        padding-left: 0;
        text-align: right;
    }

        .slider-info img {
            width: 70px;
            margin-bottom: 0;
        }

        .slider-info h2 {
            font-size: 18px;
            margin-bottom: 0;
        }

        .slider-info p {
            margin-bottom: 0;
            font-size: 12px;
        }

    .timer {
        gap: 5px;
    }

    .time-box {
        padding: 3px 8px;
        font-size: 16px;
        min-width: 35px;
    }

    .products-container {
        width: 100%;
        padding-bottom: 15px;
    }

    .product-card {
        min-width: 160px;
        max-width: 160px;
    }

    .product-image {
        height: 120px;
    }

    .nav-btn {
        display: none;
    }
}
/*BANNER STYLES */
.banner {
    background: linear-gradient(rgba(17, 17, 17, 0.4), rgba(17, 17, 17, 0.4)), url(https://uploadkon.ir/uploads/627903_26bl.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 120px 20px;
    margin: 70px auto;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .banner .content {
        position: relative;
        z-index: 10;
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
    }

        .banner .content h1 {
            font-size: 50px;
            color: #FF8126;
            margin-bottom: 40px;
            font-weight: 800;
            font-family: 'BHoma', sans-serif;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}


.btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'BHoma', sans-serif;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.orange-btn {
    background-color: #0F3057;
    color: #fff;
    border: 2px solid #0F3057;
}

    .orange-btn:hover {
        background-color: #ff8126;
        color: #0f3057;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 129, 38, 0.4);
    }

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
    .banner {
        padding: 80px 15px;
        margin: 30px 15px;
        background-attachment: scroll;
        border-radius: 15px;
    }

        .banner .content h1 {
            font-size: 32px;
            margin-bottom: 30px;
        }

    .banner-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}
/* ARTICLES SECTION  */
.articles {
    min-height: 50vh;
    padding: 60px 0;
    background-color: #E0E0E0;
    display: flex;
    flex-direction: column;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    flex-grow: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 800;
    color: #0F3057;
    position: relative;
}

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: #FF8126;
        margin: 10px auto 0;
        border-radius: 2px;
    }

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.article-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

    .article-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border-color: #FF8126;
    }

.article-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

    .article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .article-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
        color: #0F3057;
        font-weight: 700;
        line-height: 1.4;
    }

    .article-content p {
        font-size: 14px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
        flex-grow: 1;
    }

.read-more {
    color: #FF8126;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

    .read-more:hover {
        color: #0F3057;
        gap: 10px;
    }

/* RESPONSIVE STYLES  */
@media (max-width: 768px) {
    .articles {
        padding: 40px 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-image {
        height: 200px;
    }

    .article-content {
        padding: 20px;
    }

        .article-content h3 {
            font-size: 18px;
        }

        .article-content p {
            font-size: 13px;
            line-height: 1.6;
        }
}
/* RESPONSIVE STYLES  */
@media (max-width: 768px) {
    .articles {
        padding: 50px 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-image {
        height: 180px;
    }

    .article-content {
        padding: 20px;
    }

        .article-content h3 {
            font-size: 18px;
        }

        .article-content p {
            font-size: 13px;
            line-height: 1.6;
        }
}
/*------------------------------------------------*/
.vn-footer {
    background: linear-gradient(180deg, #f4e1c6 0%, #e6c7a3 100%);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    font-family: 'Bhoma', sans-serif;
    padding-bottom: 0;
}

.vn-footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vn-services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 10px;
    border-bottom: 1px solid rgba(15, 48, 87, 0.1);
}

.vn-service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0F3057;
    font-weight: 500;
    transition: transform 0.3s ease;
}

    .vn-service-item:hover {
        transform: translateY(-3px);
        color: #FF8126;
    }

    .vn-service-item img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

    .vn-service-item p {
        margin: 0;
        font-size: 14px;
        white-space: nowrap;
    }

.vn-footer-widgets {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px 0;
}

.vn-widget {
    flex: 1;
    min-width: 200px;
}

    .vn-widget h4 {
        color: #0F3057;
        font-size: 18px;
        margin-bottom: 20px;
        font-weight: 700;
        position: relative;
        padding-bottom: 10px;
    }

        .vn-widget h4::after {
            content: '';
            position: absolute;
            right: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background-color: #FF8126;
            border-radius: 2px;
        }

    .vn-widget ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .vn-widget ul li {
            margin-bottom: 12px;
        }

            .vn-widget ul li a {
                text-decoration: none;
                color: #0F3057;
                font-size: 14px;
                transition: all 0.3s ease;
                display: inline-block;
            }

                .vn-widget ul li a:hover {
                    color: #FF8126;
                    transform: translateX(-5px);
                }

.vn-contact-box {
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(15, 48, 87, 0.1);
    min-width: 250px;
    flex: 1;
}

.vn-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

    .vn-contact-item:last-child {
        margin-bottom: 0;
    }

    .vn-contact-item span {
        font-size: 20px;
        background: #fff;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .vn-contact-item strong {
        display: block;
        color: #0F3057;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .vn-contact-item p {
        margin: 0;
        color: #444;
        font-size: 13px;
        line-height: 1.5;
    }

.vn-footer-description {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 30px;
    margin-top: 10px;
}

.vn-description-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.vn-description-text h2 {
    color: #0F3057;
    font-size: 22px;
    margin-bottom: 10px;
}

.vn-description-text p {
    color: #333;
    font-size: 14px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0;
}

.vn-symbols {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

    .vn-symbols a img {
        width: 80px;
        height: auto;
        border: 1px solid #ddd;
        border-radius: 8px;
        transition: transform 0.3s;
    }

    .vn-symbols a:hover img {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

.vn-copyright {
    text-align: center;
    padding: 20px;
    background: #FF8126;
    color: #fff;
    font-size: 13px;
    margin-top: 40px;
    border-radius: 20px 20px 0 0;
}

.vn-back-to-top {
    display: flex;
    justify-content: center;
    padding: 0 0 20px 0;
}

.vn-top-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #0F3057;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(15, 48, 87, 0.3);
}

    .vn-top-icon a:hover {
        background: #FF8126;
        transform: translateY(-5px);
    }

.vn-top-icon i {
    font-size: 18px;
}



@media (max-width: 768px) {
    .vn-footer-container {
        gap: 30px;
    }

    .vn-services {
        justify-content: center;
        gap: 15px;
    }

    .vn-service-item p {
        font-size: 12px;
        white-space: normal;
        text-align: center;
    }

    .vn-service-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .vn-footer-widgets {
        flex-direction: column;
    }

    .vn-contact-box {
        width: 100%;
        margin-top: 10px;
    }

    .vn-description-content {
        flex-direction: column;
        text-align: center;
    }

    .vn-symbols {
        justify-content: center;
    }

    .vn-description-text h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .vn-service-item {
        width: 45%;
    }
}

/*------------------------------------------*/
.icon-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.user-name {
    font-size: 13px;
    white-space: nowrap;
    color: #0F3057;
    font-weight: 600;
}

.logout-form {
    margin: 0;
}

.btn-logout {
    background: none;
    border: none;
    color: #FF8126;
    cursor: pointer;
    padding: 0;
    font-size: 11px;
    font-family: 'Bhoma';
}

    .btn-logout:hover {
        color: #0F3057;
    }

/*-------------*/
.user-profile-item {
    width: auto;
    padding: 0 10px;
}
