/* ==========================================================================
   CADDAM TECHNOLOGIES — PREMIUM HEADER STYLESHEET
   Design: Clean Corporate · Glassmorphism · Navy + Crimson
   Fully Responsive: 320px → 4K
   ========================================================================== */

/* ── CSS Variables ─────────────────────────────────── */
:root {
    --pri: #0A1128;
    --pri-mid: #000411;
    --pri-light: #1C2541;
    --caddam-brand: #0136e4;
    --acc: #e95b57ff;
    --acc-dark: #d12626ff;
    --acc-gold: rgb(228, 0, 197);
    --txt: #0A1128;
    --txt-mid: #334155;
    --txt-soft: #64748B;
    --bdr: #E2E8F0;
    --bg: #ffffff;
    --bg-alt: #F8FAFC;
    --topbg: #000411;
    --shadow-s: 0 4px 12px rgba(10, 17, 40, 0.04);
    --shadow-m: 0 10px 30px rgba(10, 17, 40, 0.08);
    --shadow-l: 0 20px 50px rgba(10, 17, 40, 0.12);
    --r: 8px;
    --r-lg: 16px;
    --dur: 0.28s;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font: 'Outfit', 'DM Sans', system-ui, sans-serif;
    --font-d: 'Sora', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    font-family: var(--font);
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.body--locked {
    overflow: hidden !important;
}

/* ── WHATSAPP FLOAT ─────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
    z-index: 998;
    text-decoration: none;
    transition: transform var(--dur) var(--ease);
    animation: waFloat 3.5s ease-in-out infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, .25);
    animation: waPing 2.2s ease-out infinite;
    pointer-events: none;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    color: #fff;
}

@keyframes waPing {
    0% {
        transform: scale(1);
        opacity: .8;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes waFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ── ANNOUNCEMENT BAR ───────────────────────────────── */
.announce-bar {
    background: linear-gradient(90deg, var(--pri-mid) 0%, var(--pri) 50%, var(--pri-light) 100%);
    overflow: hidden;
    position: relative;
}

.announce-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
    pointer-events: none;
}

.announce-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 52px 9px 20px;
    position: relative;
    flex-wrap: wrap;
}

.announce-badge {
    background: var(--acc);
    color: #fff;
    font-size: .62rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 6px;
    white-space: nowrap;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.35);
}

.announce-text {
    font-size: .78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .88);
    margin: 0;
    text-align: center;
}

.announce-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--acc-gold);
    font-weight: 700;
    text-decoration: none;
    margin-left: 4px;
    white-space: nowrap;
    transition: opacity .2s;
}

.announce-cta:hover {
    opacity: 0.85;
    color: var(--acc-gold);
}

.announce-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: rgba(255, 255, 255, .7);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.announce-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* ── TOP INFO BAR ───────────────────────────────────── */
.top-bar {
    background: var(--topbg);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    position: relative;
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.3), transparent);
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 7px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.top-contacts {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.tci {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    font-size: .73rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    padding: 3px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: color .2s;
}

.tci:first-child {
    padding-left: 0;
}

.tci:last-child {
    border-right: none;
}

.tci i {
    color: var(--acc);
    font-size: 11px;
    flex-shrink: 0;
}

.tci:hover {
    color: #fff;
}

.top-socials {
    display: flex;
    gap: 6px;
    align-items: center;
}

.top-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #94a3b8;
    font-size: 11px;
    transition: all .22s;
    text-decoration: none;
}

.top-socials a:hover {
    background: var(--acc);
    border-color: var(--acc);
    color: #fff;
    transform: translateY(-2px);
}

/* ── MAIN HEADER ────────────────────────────────────── */
.site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(228, 234, 243, 0.8);
    box-shadow: var(--shadow-s);
    position: relative;
    z-index: 1000;
    width: 100%;
    overflow-x: visible;
    transition: box-shadow .3s ease, background .3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-m);
    background: rgba(255, 255, 255, 0.98);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    overflow-x: visible;
    flex-wrap: nowrap;
}

/* ── LOGO ───────────────────────────────────────────── */
.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    padding: 6px 0;
}

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: transparent;
    overflow: hidden;
    transition: transform var(--dur) var(--ease);
}

.custom-logo-img-header {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-logo:hover .logo-wrapper {
    transform: scale(1.05);
}

.logo-brand-info {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-title {
    font-family: var(--font-d);
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--caddam-brand);
    letter-spacing: 0.25em;
    /* Standard premium spacing */
   
    white-space: nowrap;
    line-height: 1;
    transition: color var(--dur) var(--ease);
}

.site-logo .brand-title {
    color: var(--caddam-brand);
}

.brand-subtitle {
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--caddam-brand);
    /* Matches the brand color */
    
    /* Uppercase aligns characters much more evenly */
    white-space: nowrap;
    /* letter-spacing: 0.40em; */
    margin-top: 3px;
    line-height: 1;
}

/* ── DESKTOP NAVIGATION ─────────────────────────────── */
.desktop-nav {
    flex: 1;
    display: none;
    align-items: center;
    justify-content: center;
    overflow-x: visible;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    flex-wrap: nowrap;
    justify-content: center;
}

.desktop-nav li {
    position: relative;
}

.desktop-nav li a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--txt);
    font-family: var(--font);
    font-size: .88rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--r);
    text-decoration: none;
    white-space: nowrap;
    transition: all .22s;
    position: relative;
}

.desktop-nav li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--pri);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform .25s var(--ease);
    transform-origin: left;
}

.desktop-nav li a:hover {
    color: var(--pri);
    background: rgba(0, 49, 97, 0.05);
}

.desktop-nav li a:hover::after {
    transform: scaleX(1);
}

/* Active link from PHP */
.desktop-nav li a[style*="background"],
.desktop-nav li a.active {
    color: var(--pri) !important;
    background: rgba(0, 49, 97, 0.07) !important;
}

.desktop-nav li a[style*="background"]::after,
.desktop-nav li a.active::after {
    transform: scaleX(1);
}

/* Dropdown chevron */
.desktop-nav .fa-chevron-down {
    font-size: .65rem;
    color: var(--txt-soft);
    transition: transform .25s ease;
}

.dropdown-nav-item:hover .fa-chevron-down {
    transform: rotate(180deg);
}

/* ── DESKTOP DROPDOWN ───────────────────────────────── */
.dropdown-nav-item {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 240px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 49, 97, 0.12), 0 5px 15px rgba(0, 0, 0, 0.04);
    padding: 12px;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    z-index: 1010;
    border: 1px solid rgba(0, 49, 97, 0.08);

    /* Vertical layout */
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-menu-custom::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    background: #fff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-left: 1px solid rgba(0, 49, 97, 0.08);
    border-right: 1px solid rgba(0, 49, 97, 0.08);
}

.dropdown-nav-item:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
}

.dropdown-menu-custom li {
    margin-bottom: 2px;
}

.dropdown-menu-custom li:last-child {
    margin-bottom: 0;
}

.dropdown-menu-custom li a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: var(--txt);
    font-family: var(--font);
    font-size: 0.86rem;
    font-weight: 600;
    transition: all 0.25s ease;
    border-radius: 10px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.dropdown-menu-custom li a::after {
    display: none;
}

.dropdown-menu-custom li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 4px;
    height: 16px;
    background-color: var(--acc);
    border-radius: 0 4px 4px 0;
    transition: transform 0.25s ease;
    transform-origin: left;
}

.dropdown-menu-custom li a:hover {
    background: rgba(0, 49, 97, 0.04);
    color: var(--pri);
    padding-left: 22px;
}

.dropdown-menu-custom li a:hover::before {
    transform: translateY(-50%) scaleX(1);
}

.dropdown-menu-custom li a i {
    width: 22px;
    color: var(--acc);
    font-size: .85rem;
    text-align: center;
}

/* ── MEGA DROPDOWN ───────────────────────────────────── */
.mega-dropdown-trigger {
    position: static !important;
}

.site-header {
    position: relative !important;
}

.mega-menu-container {
    position: absolute;
    top: 100%;
    left: 5px;
    right: 5px;
    width: calc(100% - 10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 49, 97, 0.08);
    border: 1px solid var(--bdr);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1009;
    padding: 40px 0;
}

.mega-dropdown-trigger:hover .mega-menu-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mega-menu-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mega-menu-title {
    font-family: var(--font-d);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--pri);
    border-bottom: 1px solid var(--bdr);
    padding-bottom: 10px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu-title i {
    color: var(--acc);
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-menu-links li {
    position: relative;
}

.mega-menu-links li a {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;
    padding: 8px 12px !important;
    border-radius: 8px;
    transition: all 0.22s ease;
}

.mega-menu-links li a::after {
    display: none !important;
}

.mega-menu-links li a:hover {
    background: rgba(0, 49, 97, 0.04) !important;
}

.mega-menu-links li a .m-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--pri);
}

.mega-menu-links li a .m-desc {
    font-size: 0.72rem;
    color: var(--txt-soft);
    margin-top: 2px;
    white-space: normal;
    line-height: 1.3;
}

/* ── HEADER ACTIONS ─────────────────────────────────── */
.header-actions {
    display: none;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-bsi-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--bdr);
    padding: 6px 12px;
    border-radius: var(--r);
    box-shadow: var(--shadow-s);
    transition: var(--dur);
}

.header-bsi-badge:hover {
    border-color: var(--pri);
    box-shadow: var(--shadow-m);
}

.header-bsi-badge img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.header-bsi-text {
    font-family: var(--font);
    font-size: .64rem;
    font-weight: 700;
    color: var(--txt-mid);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.header-bsi-text span {
    color: var(--pri);
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--txt-mid);
    font-family: var(--font);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    border: 1.5px solid var(--bdr);
    border-radius: var(--r);
    white-space: nowrap;
    transition: all .22s;
    background: #fff;
}

.btn-call i {
    color: var(--pri);
    font-size: 0.8rem;
}

.btn-call:hover {
    border-color: var(--pri);
    color: var(--pri);
    background: rgba(0, 49, 97, 0.04);
    transform: translateY(-2px);
    box-shadow: var(--shadow-s);
}

.btn-enquire {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--acc) 0%, var(--acc-dark) 100%);
    color: #fff !important;
    font-family: var(--font);
    font-size: .84rem;
    font-weight: 700;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: var(--r);
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 102, 204, .3);
    transition: all .22s;
}

.btn-enquire:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, .4);
    color: #fff !important;
}

.btn-enquire i {
    font-size: 12px;
}

/* ── HAMBURGER ──────────────────────────────────────── */
.hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1.5px solid var(--bdr);
    border-radius: var(--r);
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
    transition: all .22s;
}

.hamburger:hover {
    border-color: var(--pri);
    background: rgba(0, 49, 97, 0.04);
}

.ham-bar {
    width: 20px;
    height: 2px;
    background: var(--txt);
    border-radius: 2px;
    transition: all .3s var(--ease);
}

.ham--open .ham-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ham--open .ham-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.ham--open .ham-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-badge {
    background: var(--acc);
    color: #fff;
    font-size: .55rem;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 4px;
    margin-left: 3px;
    letter-spacing: 0.04em;
}

/* ── RESPONSIVE: DESKTOP ────────────────────────────── */
@media (min-width: 1200px) {
    .header-inner {
        padding: 0 36px;
        height: 90px;
    }

    .logo-icon,
    .logo-icon img {
        height: 78px;
    }

    .desktop-nav {
        display: flex;
    }

    .header-actions {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .top-bar {
        display: block;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .header-inner {
        padding: 0 24px;
        height: 82px;
    }

    .logo-icon,
    .logo-icon img {
        height: 70px;
    }

    .desktop-nav {
        display: flex;
    }

    .header-actions {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .desktop-nav li a {
        font-size: .82rem;
        padding: 7px 10px;
    }

    .header-bsi-badge {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .header-actions {
        display: flex;
    }

    .header-actions .btn-call {
        display: none;
    }

    .header-bsi-badge {
        display: none;
    }

    .header-inner {
        padding: 0 20px;
        height: 76px;
    }

    .logo-icon,
    .logo-icon img {
        height: 64px;
    }
}

@media (max-width: 767px) {
    .header-actions {
        display: none;
    }

    .logo-tagline {
        display: none;
    }

    .header-inner {
        padding: 0 14px;
        height: 68px;
    }

    .logo-icon,
    .logo-icon img {
        height: 56px;
    }

    .top-bar {
        display: none;
    }

    /* Fix header logo and brand text overflow on mobile */
    .brand-title {
        font-size: 1.25rem !important;
        letter-spacing: 0.05em !important;
    }

    .brand-subtitle {
        font-size: 0.36rem !important;
        letter-spacing: 0.02em !important;
    }

    .logo-wrapper {
        width: 38px !important;
        height: 38px !important;
    }

    .site-logo {
        gap: 8px !important;
    }

    /* Adjust floating buttons on mobile to avoid overlap */
    .whatsapp-float {
        width: 48px !important;
        height: 48px !important;
        font-size: 20px !important;
        bottom: 20px !important;
        left: 14px !important;
        right: auto !important;
    }

    .floating-enquire-btn {
        padding: 10px 5px !important;
        font-size: 0.6rem !important;
        letter-spacing: 0.8px !important;
        top: 40% !important;
    }
}

@media (max-width: 380px) {
    .brand-title {
        font-size: 1.1rem !important;
        letter-spacing: 0.05em !important;
    }

    .brand-subtitle {
        font-size: 0.32rem !important;
        letter-spacing: 0.02em !important;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 0 12px;
        gap: 8px;
    }

    .logo-name {
        font-size: 0.9rem;
    }
}

/* ── MOBILE OVERLAY ─────────────────────────────────── */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 10, 30, .65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1090;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.mobile-overlay.overlay--show {
    opacity: 1;
    pointer-events: all;
}

/* ── MOBILE PANEL ───────────────────────────────────── */
.mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 330px);
    height: 100svh;
    background: #fff;
    box-shadow: -12px 0 40px rgba(0, 0, 0, .18);
    z-index: 1095;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .32s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-panel.panel--open {
    transform: translateX(0);
}

/* Panel Header */
.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid var(--bdr);
    background: linear-gradient(135deg, var(--pri-mid) 0%, var(--pri) 100%);
    flex-shrink: 0;
}

.panel-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon--sm {
    height: 38px;
}

.logo-icon--sm img {
    height: 38px;
}

.panel-logo .logo-name {
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
}

.panel-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 13px;
    transition: all .2s;
}

.panel-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Panel Body */
.panel-body {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
}

.panel-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.panel-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--txt);
    font-weight: 600;
    font-size: .9rem;
    transition: all .22s;
}

.panel-link:hover {
    background: rgba(0, 49, 97, 0.06);
    color: var(--pri);
    padding-left: 18px;
}

.pl-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 49, 97, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pri);
    font-size: 14px;
    flex-shrink: 0;
    transition: all .22s;
}

.panel-link:hover .pl-icon {
    background: var(--pri);
    color: #fff;
}

/* Mobile Dropdown */
.panel-dropdown-item {
    position: relative;
}

.panel-dropdown-menu {
    list-style: none;
    padding: 4px 0 4px 16px !important;
    margin: 0;
    background: rgba(0, 49, 97, 0.03) !important;
    border-left: 2px solid rgba(0, 49, 97, 0.15);
    border-radius: 0 0 10px 10px;
    margin-left: 14px;
}

.panel-dropdown-menu .panel-link {
    font-size: .85rem;
    font-weight: 500;
    padding: 9px 12px;
}

/* Panel Footer */
.panel-foot {
    padding: 18px 16px;
    border-top: 1px solid var(--bdr);
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    flex-shrink: 0;
}

.panel-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.pc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--txt-mid);
    font-family: var(--font);
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 14px;
    background: #fff;
    border-radius: 12px;
    transition: all .22s;
    border: 1.5px solid var(--bdr);
}

.pc-item:hover {
    background: linear-gradient(135deg, var(--pri) 0%, var(--pri-light) 100%);
    border-color: transparent;
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(0, 49, 97, .15);
}

.pc-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 49, 97, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pri);
    font-size: 15px;
    flex-shrink: 0;
    transition: all .22s;
}

.pc-item:hover .pc-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-enquire--block {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    border-radius: 12px;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--acc) 0%, var(--acc-dark) 100%);
    border: none;
    box-shadow: 0 4px 14px rgba(0, 102, 204, .25);
    transition: all .22s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff !important;
    cursor: pointer;
}

.btn-enquire--block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 102, 204, .35);
    color: #fff !important;
}

.panel-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--bdr);
}

.panel-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1.5px solid var(--bdr);
    border-radius: 12px;
    color: var(--pri);
    font-size: 17px;
    text-decoration: none;
    transition: all .22s;
}

.panel-socials a:hover {
    background: linear-gradient(135deg, var(--pri) 0%, var(--pri-light) 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 49, 97, .2);
}

/* ── FLOATING ENQUIRE BUTTON ────────────────────────── */
.floating-enquire-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(180deg, var(--acc) 0%, var(--acc-dark) 100%);
    color: #fff !important;
    padding: 20px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    font-family: var(--font);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: -4px 0 18px rgba(0, 102, 204, .35);
    z-index: 9999;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .3s var(--ease);
}

.floating-enquire-btn i {
    transform: rotate(90deg);
    font-size: .95rem;
}

.floating-enquire-btn:hover {
    background: linear-gradient(180deg, var(--pri) 0%, var(--pri-mid) 100%);
    box-shadow: -6px 0 24px rgba(0, 49, 97, .4);
    transform: translateY(-50%) translateX(-4px);
    color: #fff !important;
}

@media (max-width: 380px) {
    .panel-foot {
        padding: 14px 12px;
    }

    .pc-item {
        padding: 8px 12px;
        font-size: .8rem;
    }

    .pc-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .panel-socials a {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .btn-enquire--block {
        padding: 11px 14px;
        font-size: .85rem;
    }
}

/* 25 Years Badge Styling */
.badge-25-years-img {
    height: 50px; /* Increased from 44px */
    width: auto;
    object-fit: contain;
    transition: transform var(--dur) var(--ease);
}

.badge-25-years-img:hover {
    transform: scale(1.08);
}

.badge-25-years-divider {
    width: 1px;
    height: 34px; /* Increased from 30px */
    background-color: rgba(0, 49, 97, 0.12);
    margin: 0 16px;
    align-self: center;
}

@media (min-width: 1200px) {
    .badge-25-years-img {
        height: 62px; /* Increased from 50px */
    }
    .badge-25-years-divider {
        height: 42px; /* Taller divider for larger logo */
    }
}

/* 25 Years Badge Responsive Styling */
@media (max-width: 576px) {
    .badge-25-years-divider,
    .badge-25-years-img {
        display: none !important;
    }
}