﻿/* =============================================
   NAVBAR & HEADER STYLES
   ============================================= */

.navbar {
    background: #004aac;
    padding: 0;
    min-height: 45px;
    position: relative;
    z-index: 999;
}

.navbar > ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    max-width: 1400px;
    width: 100%;
}

.navbar > ul > li {
    position: relative;
}

.navbar > ul > li > a {
    display: block;
    padding: 14px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
    white-space: nowrap;
}

.navbar > ul > li:hover > a {
    color: var(--helpest-base);
}

/* DONATE link highlight */
.navbar > ul > li > a[href="{{route('donation')}}"] {
    color: #fff;
    background: var(--helpest-base);
    margin: 8px 6px;
    padding: 6px 35px;
    border-radius: 20px;
    font-size: 12px;
}

.navbar > ul > li > a[href="{{route('donation')}}"]:hover {
    background: var(--helpest-black);
    color: #fff;
}

/* =============================================
   DROPDOWN â€” override Bootstrap .dropdown-menu
   ============================================= */

.navbar > ul > li > ul.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: var(--helpest-black) !important;
    min-width: 200px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    z-index: 9999 !important;
    border: none !important;
    border-radius: 0 !important;
    float: none !important;
}

.navbar > ul > li:hover > ul.dropdown-menu {
    display: block !important;
}

.navbar > ul > li > ul.dropdown-menu > li > a {
    display: block;
    padding: 12px 18px;
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    white-space: nowrap;
}

.navbar > ul > li > ul.dropdown-menu > li > a:hover {
    background: var(--helpest-base) !important;
    color: #fff !important;
}

/* =============================================
   MOBILE TOGGLE BAR
   ============================================= */

.navbar-toggle {
    display: none;
}

.navbar-toggle .logo img {
    width: 65px;
    border-radius: 50%;
}

.navbar-toggle .menu-icon {
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    background: var(--helpest-base);
    padding: 8px 12px;
    border-radius: 4px;
}

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

.navbar.active .overlay {
    display: block;
}

/* =============================================
   RESPONSIVE NAVBAR â‰¤ 991px
   ============================================= */

@media (max-width: 991px) {

    .navbar-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        background: var(--helpest-black);
        width: 100%;
        box-sizing: border-box;
    }

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

    .navbar > ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--helpest-black);
        padding-top: 0;
        z-index: 9999;
        overflow-y: auto;
        transition: left 0.3s ease;
        margin: 0;
    }

    .navbar.active > ul {
        left: 0;
    }

    .navbar > ul > li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }

    .navbar > ul > li > a {
        padding: 14px 20px;
        font-size: 14px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar > ul > li > ul.dropdown-menu {
        position: static !important;
        display: none !important;
        background: rgba(0,0,0,0.25) !important;
        box-shadow: none !important;
        min-width: unset !important;
        width: 100% !important;
        border: none !important;
        float: none !important;
    }

    .navbar > ul > li.active > ul.dropdown-menu {
        display: block !important;
    }

    .navbar > ul > li > ul.dropdown-menu > li > a {
        padding: 11px 35px !important;
        font-size: 13px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
}

/* =============================================
   HEADER
   ============================================= */

.header {
    background: #fff;
    padding: 3px 0;
    border-bottom: 1px solid #eee;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    gap: 20px;
}

.header .logo img {
    width: 100px;
    border-radius: 50%;
}

.header .title h1 {
    font-size: 25px;
    color: var(--helpest-base);
    font-weight: 700;
    margin-left: 30px;
}

.header .title p {
    font-size: 16px;
    color: #666;
    margin-left: 63px;
}

.header .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.header .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header .contact-icon {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--helpest-base);
    flex-shrink: 0;
}

.header .contact-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--helpest-black);
}

/* =============================================
   ORANGE STRIP
   ============================================= */

.orange-strip {
    background: #eb2e32;
    padding: 10px 0;
}

.strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    gap: 12px;
}

.orange-strip .location {
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.orange-strip .actions {
    display: flex;
    justify-content: space-evenly;
    gap: 133px;
    flex-wrap: wrap;
}

.orange-strip .btn-donate,
.orange-strip .btn-apply,
.orange-strip .btn-lang {
    padding: 6px 16px;
    border-radius: 20px;
    border: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.orange-strip .btn-donate {
    background: #004aac;
    color: white;
}

.orange-strip .btn-apply,
.orange-strip .btn-lang {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* =============================================
   MARQUEE
   ============================================= */

.marquee-container {
    background:#004aac;
    padding: 8px 0;
    overflow: hidden;
}

.marquee-iso {
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin: 0;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* =============================================
   SIDEBAR â€” Premium Design
   ============================================= */

.xs-sidebar-group {
    z-index: 99999;
}

.xs-sidebar-group .xs-sidebar-widget {
    background: #0d1535 !important;
    width: 320px !important;
}

.sidebar-widget-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    background: #1a2744;
    border-bottom: 2px solid var(--helpest-base);
    flex-shrink: 0;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-logo-wrap {
    position: relative;
}

.sidebar-logo-wrap img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--helpest-base);
    object-fit: cover;
    display: block;
}

.sidebar-logo-wrap::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(var(--helpest-base-rgb), 0.3);
}

.sidebar-brand-text h3 {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.sidebar-brand-text span {
    color: var(--helpest-base);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-full-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
}

.sidebar-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    flex-shrink: 0;
}

.sidebar-close:hover {
    background: var(--helpest-base);
    border-color: var(--helpest-base);
    color: #fff;
}

.sidebar-donate-cta {
    padding: 16px 22px;
    background: linear-gradient(135deg, rgba(var(--helpest-base-rgb), 0.15), rgba(var(--helpest-base-rgb), 0.05));
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sidebar-donate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 20px;
    background: var(--helpest-base);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.25s;
    box-shadow: 0 4px 15px rgba(var(--helpest-base-rgb), 0.35);
}

.sidebar-donate-btn:hover {
    background: linear-gradient(135deg, var(--helpest-black), var(--helpest-base));
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(var(--helpest-base-rgb), 0.5);
}

.sidebar-section-title {
    color: rgba(255,255,255,0.35);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 4px;
    padding: 16px 22px 4px;
}

.sidebar-nav-section {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 8px;
}

.sidebar-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav-list li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 22px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    position: relative;
}

.sidebar-nav-list li a i {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(var(--helpest-base-rgb), 0.9);
    flex-shrink: 0;
}

.sidebar-nav-list li a span {
    flex: 1;
}

.sidebar-nav-list li a::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 9px;
    color: rgba(255,255,255,0.2);
    transition: all 0.2s;
}

.sidebar-nav-list li a:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
    border-left-color: var(--helpest-base);
    padding-left: 26px;
}

.sidebar-nav-list li a:hover i {
    color: var(--helpest-base);
}

.sidebar-nav-list li a:hover::after {
    color: rgba(255,255,255,0.5);
    transform: translateX(3px);
}

.sidebar-account-section {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 16px;
}

.sidebar-account-btns {
    display: flex;
    gap: 10px;
    padding: 8px 22px 0;
}

.sidebar-btn-login,
.sidebar-btn-signup {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.sidebar-btn-login {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}

.sidebar-btn-login:hover {
    background: var(--helpest-base);
    border-color: var(--helpest-base);
    color: #fff;
}

.sidebar-btn-signup {
    background: var(--helpest-base);
    border: 1px solid var(--helpest-base);
    color: #fff;
}

.sidebar-btn-signup:hover {
    background: var(--helpest-black);
    border-color: var(--helpest-black);
    color: #fff;
}

.sidebar-contact-section {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 12px;
}

.sidebar-contact-list {
    list-style: none;
    margin: 0;
    padding: 0 22px;
}

.sidebar-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.sidebar-contact-list li:last-child {
    border-bottom: none;
}

.sidebar-contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(var(--helpest-base-rgb), 0.15);
    border: 1px solid rgba(var(--helpest-base-rgb), 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-contact-icon i {
    color: var(--helpest-base);
    font-size: 11px;
}

.sidebar-contact-list li span,
.sidebar-contact-list li a {
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s;
    padding-top: 5px;
}

.sidebar-contact-list li a:hover {
    color: var(--helpest-base);
}

.sidebar-social-section {
    padding-bottom: 24px;
}

.sidebar-social-links {
    display: flex;
    gap: 10px;
    padding: 4px 22px 0;
}

.sidebar-social-links a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}

.sidebar-social-links a:hover {
    background: var(--helpest-base);
    border-color: var(--helpest-base);
    color: #fff;
    transform: translateY(-2px);
}

/* =============================================
   RESPONSIVE â€” hide header & strip on tablet/mobile
   ============================================= */

@media (max-width: 1024px) {
    .header,
    .orange-strip {
        display: none;
    }
}

/* =============================================
   FOOTER & PRELOADER LOGO
   ============================================= */

.loader.js-preloader .loader-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%       { transform: scale(1.1); opacity: 0.75; }
}

.footer-brand-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
}

.footer-widget-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
}




