

@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Secular+One&display=swap');

/* global */
*{
    padding: 0;
    margin: 0;
    font-family: 'Varela Round', sans-serif;
}

body{
    direction: rtl;
}

h1{
    font-size: 37px;
    font-family: 'Secular One', sans-serif;
}




/* Corporate Navigation Styles */
.corporate-navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #ecf0f1;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #ecf0f1;
}

.brand-text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1;
}

.brand-text span {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 500;
}

.navbar-search {
    flex: 1;
    max-width: 500px;
}

.search-container {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #ecf0f1;
    border-radius: 25px;
    font-size: 0.95rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
    border-color: #3498db;
    background: white;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.1);
    transform: translateY(-1px);
}


/* Breadcrumb Section */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.modern-breadcrumb {
    margin: 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.breadcrumb-link:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    text-decoration: none;
}

.breadcrumb-separator {
    color: #adb5bd;
    font-size: 0.8rem;
}

.breadcrumb-item.current span {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.9rem;
}


.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    font-size: 1rem;
    z-index: 10;
}

.search-input:focus + .search-icon {
    color: #3498db;
}

.search-results-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-top: 0.5rem;
}

#search-results-list-ul {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #ecf0f1;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

#search-results-list-ul li {
    margin: 0;
    padding: 0;
}

#search-results-list-ul li a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.2s ease;
}

#search-results-list-ul li a:hover {
    background: #f8f9fa;
    text-decoration: none;
}

#search-results-list-ul li:first-child a {
    border-radius: 13px 13px 0 0;
}

#search-results-list-ul li:last-child a {
    border-radius: 0 0 13px 13px;
}

.search-results-container.show {
    display: block;
}

#search-results-list-ul.show {
    display: block;
}

#search-results-list-ul li:last-child .d-flex {
    border-bottom: none !important;
}

#search-results-list-ul .d-flex {
    transition: background-color 0.2s ease;
}

#search-results-list-ul .d-flex:hover {
    background-color: #f8f9fa;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
}

.user-info i {
    font-size: 1.2rem;
    color: #3498db;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-dropdown .user-info {
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.user-dropdown .user-info:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.dropdown-arrow {
    font-size: 0.8rem !important;
    transition: transform 0.3s ease;
    margin-right: 0.5rem;
}

.user-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
    min-width: 220px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #2c3e50;
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: right;
    direction: rtl;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #3498db;
    text-decoration: none;
}

.dropdown-item i {
    font-size: 1rem;
    width: 16px;
    text-align: center;
    color: #6c757d;
    transition: color 0.3s ease;
}

.dropdown-item:hover i {
    color: #3498db;
}

.logout-btn {
    color: #e74c3c !important;
}

.logout-btn:hover {
    background: #fef5f5 !important;
    color: #c0392b !important;
}

.logout-btn:hover i {
    color: #c0392b !important;
}

.dropdown-divider {
    height: 1px;
    background: #e9ecef;
    margin: 0.5rem 0;
}

.help-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    font-size: 0.9rem;
}

.help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9, #3498db);
}

.help-btn i {
    font-size: 1rem;
}

/* Ticket Button */
.ticket-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.ticket-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.ticket-btn:hover::before {
    left: 100%;
}

.ticket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: white;
    text-decoration: none;
}

.ticket-btn i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.qr-code-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.qr-code-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.qr-code-btn:hover::before {
    left: 100%;
}

.qr-code-btn:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
    color: white;
    text-decoration: none;
}

.qr-code-btn i {
    font-size: 1.1rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .navbar-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar-search {
        order: 3;
        width: 100%;
        max-width: none;
    }
    
    .navbar-actions {
        order: 2;
        justify-content: center;
        width: 100%;
        gap: 1rem;
    }
    
    .brand-text h2 {
        font-size: 1.4rem;
    }
    
    .user-info,
    .user-dropdown {
        display: none;
    }
    
    .help-btn span,
    .ticket-btn span {
        display: none;
    }
    
    .help-btn,
    .ticket-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
        min-width: 50px;
    }
    
    .ticket-btn i {
        animation: none; /* Remove pulse animation on mobile for better performance */
    }
}

/* Tablet specific adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .navbar-actions {
        gap: 1rem;
    }
    
    .ticket-btn,
    .help-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .user-dropdown .user-info {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .dropdown-menu {
        min-width: 200px;
    }
    
    .dropdown-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .corporate-navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-content {
        gap: 0.75rem;
    }
    
    .brand-text h2 {
        font-size: 1.2rem;
    }
    
    .brand-text span {
        font-size: 0.75rem;
    }
    
    .navbar-actions {
        gap: 0.75rem;
    }
    
    .help-btn,
    .ticket-btn {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .search-input {
        font-size: 14px;
        padding: 0.6rem 1rem 0.6rem 2.5rem;
    }
}

/* Old header styles - keeping for backward compatibility but updating */

#search-results-list-ul{
    width: 100%;
    max-width: 780px;
    max-height: 386px;
    overflow: hidden auto;
    position: relative;
    z-index: 99999;
    background-color: #FFFFFF;
    border-radius: 6px;
    margin: 0 auto;
    margin-top: 5px;
    padding: 0;
}


#fixed-color{
    width: 100%; 
    height: 100%; 
    background-color: #00000080; 
    z-index: 600;
    display: none;
    position: fixed; 
    top: 0;
}

a{
    color: #4b4c4d;
    text-decoration: none;
}

a:hover{
    color: #4b4c4d;
}

p{
    white-space: wrap;
}

ul{
    margin: 0;
}

li{
    font-style: none;
}

.long-row-1{
    min-height: 24px;
    margin: 0 auto;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.fw-600{
    font-weight: 600;
}

li{
    list-style: none;
}

.resp-header-menu-item-text{
    padding: 4px 6px;
    text-align: right;
}

.required{
    position: relative;
}

.required:after {
    content: "*";
    color: red;
    margin-right: 2px;
}


#close-sidebar-btn i{
    color: #495057;
    font-size: 22px;
}

#search-resp-wrapper{
    max-width: 680px;
    display: none;
}

#search-results-list{
    width: 100%;
    max-height: 300px;
    display: none;
    padding: 0;
    overflow: hidden auto;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: #FFFFFF;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    z-index: 1000;
}

.search-item-box{
    border-top: 1px solid #f1f3f4;
    padding: 1rem 1.5rem;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.search-item-box:first-child{
    border-top: none;
    border-radius: 15px 15px 0 0;
}

.search-item-box:last-child{
    border-radius: 0 0 15px 15px;
}

.search-item-box:hover {
    background-color: #f8f9fa;
}

.resp-menu-list-item-wrapper{
    max-width: 343px;
    border-radius: 5px;
    padding: 0 15px;
    color: inherit;
}

.resp-menu-list-item-wrapper:hover{
    background-color: #81dd95;
    color: black!important;
}

.resp-menu-list-item-wrapper i, .resp-menu-list-item-wrapper span{
    color: inherit;
}

.resp-menu-list-item-wrapper button{
    width: 100%; 
    text-align: right; 
    font-size: 18px;
    padding: 10px 0px;
}

.resp-menu-list-item-title{
    font-weight: 600; 
    font-size: 15px; 
    text-align: right; 
    margin: 0; 
    margin-top: 15px;
}

.fa-minus{
    display: none;
}

.btn:hover{
    color: unset;
}

.align-center{
    display: inline-flex;
    align-items: center;
}

.alert{
    display: none;
}

.main-wrapper{
    max-width: 550px; 
    margin: 0 auto;
}


/* breadcrumb */
#breadcrumb-nav{
    margin-top: 35px;
}

.breadcrumb{
    background-color: unset;
    padding-right: 28px;
}

.breadcrumb li{
    margin: 0;
}

.breadcrumb-item+.breadcrumb-item{
    padding-left: 0;
}

.breadcrumb-item+.breadcrumb-item::before{
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    float: right;
}

.breadcrumb a{
    color: #007bff;
}


/* body */





/* SideNavBar */
.menu-container {
    width: 100%;
    padding: 10px 0;
    padding-left: 15px;
    overflow-x: scroll; /* Enable horizontal scrolling */
    white-space: nowrap; /* Prevent line breaks */
    scrollbar-width: none; /* Hide Firefox scrollbar */
    -ms-overflow-style: none; /* Hide IE scrollbar */
}

.menu-container::-webkit-scrollbar {
    display: none;
}

.menu {
    display: inline-block;
}

.menu-item {
    display: inline-block;
    margin-right: 20px;
    /* background-color: #fff; */
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.menu-item a{
    color: #4e7507;
    padding: 3px 5px;
    font-size: 19px;
}

.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: #ff9800;
}

#navbar-section{
    width: 0;
    max-width: 400px;
    height: 100%;
    position: fixed;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 1031;
    top: 0;
    right: 0;
    background-color: #f9fafb;
    overflow-x: hidden;
    transition: 0.5s;
}



/* disapear arrows in input type number */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  display: none;
}

.switch-container {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Arial, sans-serif;
}

.switch-label {
    font-size: 14px;
}

.switch {
    position: relative;
    margin: 0 auto;
}

.toggle-input {
    display: none;
}

.toggle {
    width: 60px;
    height: 30px;
    background-color: #497716;
    border-radius: 15px;
    display: block;
    cursor: pointer;
    position: relative;
}

.toggle::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: white;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}

.toggle-input:checked + .toggle::before {
    transform: translateX(30px);
}

.switch-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    pointer-events: none;
    font-size: 12px;
}

.switch-text-left {
    left: 8px;
}

.switch-text-right {
    right: 8px;
}


        /* Footer Styling */
        footer {
            background: #0066ff;
            color: #fff;
            text-align: center;
            padding: 20px 0;
            font-size: 1em;
        }

        footer p {
            margin: 0;
        }

        footer a {
            color: #ffdd57;
            text-decoration: none;
            font-weight: bold;
        }

        footer a:hover {
            text-decoration: underline;
        }

/* header */
/* 
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
}

.logo img {
    height: 40px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    transition: opacity 0.3s ease;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
} */
/* 
.nav-list a:hover,
.nav-list a:focus {
    color: #ff9800;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    outline: none;
}

.menu-icon {
    font-size: 24px;
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 60px;
        right: 0;
        background-color: #333;
        width: 250px;
        height: calc(100vh - 60px);
        border-radius: 0 0 0 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px;
        gap: 15px;
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
        transform: translateX(100%);
    }

    .nav-list.show {
        display: flex;
        opacity: 1;
        transform: translateX(0);
    }

    .menu-toggle {
        display: block;
    }
}

.main {
    padding-top: 70px; 
}

.header-hidden {
    top: -70px;
} */




/* checkout button */
.button-21 {
    align-items: center;
    appearance: none;
    background-color: #3EB2FD;
    background-image: linear-gradient(1deg, #4F58FD, #149BF3 99%);
    background-size: calc(100% + 20px) calc(100% + 20px);
    border-radius: 100px;
    border-width: 0;
    box-shadow: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-flex;
    font-family: CircularStd,sans-serif;
    font-size: 1rem;
    height: auto;
    justify-content: center;
    line-height: 1.5;
    padding: 6px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color .2s,background-position .2s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
}

.button-21:active,
.button-21:focus {
    outline: none;
}

.button-21:hover {
    background-position: -20px -20px;
}

.button-21:focus:not(:active) {
    box-shadow: rgba(40, 170, 255, 0.25) 0 0 0 .125em;
}
/* end of checkout button */


@media only screen and (min-width: 0px)and (max-width: 320px) {
    body {
        width: 1900px;
    }
}

/* Corporate Footer Styles */
.corporate-footer {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 3rem 0 0;
    margin-top: 4rem;
    position: relative;
}

.corporate-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9, #27ae60, #f39c12);
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #bdc3c7;
    font-size: 0.85rem;
}

.contact-item i {
    width: 16px;
    color: #3498db;
    font-size: 0.9rem;
}

.footer-section h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: #3498db;
    border-radius: 1px;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: #3498db;
    transform: translateX(-3px);
}

.system-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-item i {
    width: 20px;
    color: #3498db;
    font-size: 1rem;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    color: #95a5a6;
    margin-bottom: 0.1rem;
}

.info-value {
    font-size: 0.85rem;
    font-weight: 500;
}

.info-value.online {
    color: #27ae60;
}

.info-value.secure {
    color: #f39c12;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.1);
}

.copyright {
    margin: 0;
    color: #bdc3c7;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #3498db;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .corporate-footer {
        padding: 2.5rem 0 0;
        margin-top: 3rem;
    }
    
    .footer-brand {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .footer-section h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-quick,
    .system-info {
        align-items: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom .row {
        text-align: center;
    }
}

@media only screen and (min-width: 321px)and (max-width: 766px) {

    .search-bar input[type="text"] {
        width: 100%;
        max-width: auto;
    }
}

@media only screen and (min-width: 767px) {

    .menu-item a{
        font-size: 16px;
        display: block;
        padding: 8px;
    }

    .menu-container{
        white-space: unset;
    }

    #footer-resp-menu-wrapper{
        display: none;
    }

}
