/* ================= HEADER BASE STYLES ================= */
.custom-header {
    background-color: #111111; /* Solid dark background as per your image */
    transition: all 0.4s ease-in-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0; 
}

.header-inner {
    min-height: 85px; /* Standard Desktop Height */
}

/* Nav Links Styling */
.nav-link {
    font-size: 16px;
    position: relative;
    transition: 0.3s;
    padding: 0 !important;
 border-bottom: 2px solid transparent;
}
.nav-link:hover {
    color: #ffc107 !important;
    border-bottom: 2px solid goldenrod;
    transition: 0.5s;
}

/* Button Styling */
.header-btn {
    background-color: #d89f0f;
    border-color: #d89f0f;
    color: #fff;
    padding: 12px 24px;
    font-size: 15px;
    transition: 0.3s;
}
.header-btn:hover {
    background-color: #fff;
    color: #000;
}

/* Icons Styling */
.icon-link {
    font-size: 18px;
    transition: 0.3s;
}
.icon-link:hover {
    color: #d89f0f !important;
}

/* ================= DESKTOP BORDERS (Lines) ================= */
@media (min-width: 992px) {
    .logo-block {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    .icons-wrapper {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* ================= MOBILE HEADER EXACT MATCH ================= */
@media (max-width: 991px) {
    .header-inner {
        min-height: 65px; 
    }

    /* Vertical Lines (Borders) for Mobile */
    .logo-block {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }
    .btn-wrapper {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    /* Scale Down to fit */
    .logo-block { padding-left: 12px !important; padding-right: 12px !important; }
    .logo-block .navbar-brand h4 { font-size: 16px; }
    .logo-block .navbar-brand i { font-size: 18px !important; }
    .logo-block .navbar-brand small { font-size: 8px !important; }

    .btn-wrapper { padding-left: 12px !important; padding-right: 12px !important; }
    .header-btn {
        padding: 6px 12px;
        font-size: 11px; 
        white-space: nowrap; 
    }
    .header-btn i { font-size: 10px; }

    .icons-wrapper {
        padding-left: 12px !important;
        padding-right: 12px !important;
        gap: 12px !important;
    }
    .icon-link { font-size: 14px; }
    .icon-link .fa-bars { font-size: 20px !important; }
}