/* ============================================================
   ONYXERP - MAIN STYLESHEET
   ============================================================ */

/* ============================================================
   GLOBAL
   ============================================================ */
body {
    font-family: 'Inter', sans-serif;
    padding-top: 0;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    font-size: 14px;
}

.top-bar a:hover {
    color: #facc15 !important;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    padding: 8px 0;
}

.navbar-brand {
    font-weight: 900;
    font-size: 28px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-height: 45px;
    width: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
}

.nav-link {
    font-size: 15px;
    padding: 10px 16px !important;
    transition: 0.2s;
    font-weight: 600;
    color: #1e293b !important;
}

.nav-link:hover {
    color: #facc15 !important;
}

@media (max-width: 991.98px) {
    .navbar {
        position: relative;
        z-index: 1100;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        z-index: 1100;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(12px);
        padding: 5.5rem 1.5rem 2rem;
        overflow-y: auto;
        transition: transform 0.35s ease, opacity 0.35s ease;
        transform: translateY(-100%);
        opacity: 0;
        display: block !important;
        visibility: hidden;
        pointer-events: none;
    }

    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .navbar-collapse .navbar-nav {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1rem;
    }

    .navbar-collapse .nav-item {
        width: 100%;
    }

    .navbar-collapse .nav-link {
        padding: 1rem 1.25rem !important;
        border-radius: 14px;
        background: rgba(11, 26, 51, 0.04);
        color: #0b1a33 !important;
    }

    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link:focus {
        background: rgba(250, 204, 21, 0.12);
        color: #0b1a33 !important;
    }

    .navbar-toggler {
        z-index: 1110;
    }

    .navbar-collapse {
        height: 100% !important;
    }
}

/* ============================================================
   MOBILE SIDE MENU
   ============================================================ */

/* Mobile Top Bar */
.mobile-top-bar {
    font-size: 12px;
}

.mobile-top-bar a {
    padding: 4px 8px;
    border-radius: 4px;
    transition: 0.2s;
}

.mobile-top-bar a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Side Menu - Off Canvas */
.mobile-side-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    display: block;
}

.mobile-side-menu.open {
    left: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #0b1a33;
    border-bottom: 3px solid #facc15;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-brand {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.mobile-brand .text-warning {
    color: #facc15 !important;
}

.mobile-brand img {
    max-height: 35px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
    transition: 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

/* Mobile Menu Body */
.mobile-menu-body {
    padding: 10px 0 30px;
}

/* Mobile Navigation */
.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    padding: 14px 20px;
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.2s ease;
    position: relative;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: #f8fafc;
    color: #facc15;
}

.mobile-nav-link .float-end {
    transition: 0.3s ease;
}

.mobile-nav-item.open > .mobile-nav-link .float-end {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8fafc;
    display: none;
}

.mobile-submenu.open {
    display: block;
}

.mobile-sub-link {
    display: block;
    padding: 10px 20px 10px 40px;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-sub-link:hover {
    background: #f1f5f9;
    color: #facc15;
    border-left-color: #facc15;
}

.mobile-sub-link i {
    width: 18px;
    text-align: center;
}

.mobile-submenu .mobile-submenu .mobile-sub-link {
    padding-left: 60px;
}

.mobile-divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 6px 20px;
}

/* Mobile Quote Button */
.mobile-quote-btn {
    background: #facc15 !important;
    color: #0b1a33 !important;
    border-radius: 30px !important;
    margin: 8px 20px;
    text-align: center;
    font-weight: 700 !important;
}

.mobile-quote-btn:hover {
    background: #eab308 !important;
    color: #0b1a33 !important;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #e2e8f0;
    margin-top: 10px;
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.mobile-contact-item {
    color: #1e293b;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    transition: 0.2s ease;
}

.mobile-contact-item:hover {
    color: #facc15;
}

.mobile-social-icons {
    display: flex;
    gap: 16px;
}

.mobile-social-icons a {
    width: 38px;
    height: 38px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    text-decoration: none;
    transition: 0.3s ease;
}

.mobile-social-icons a:hover {
    background: #facc15;
    color: #0b1a33;
    transform: translateY(-3px);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.mobile-overlay.active {
    display: block;
}

/* ============================================================
   RESPONSIVE - MOBILE MENU
   ============================================================ */
@media (min-width: 992px) {
    .mobile-side-menu,
    .mobile-overlay,
    .mobile-top-bar {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .mobile-side-menu {
        display: block;
    }
    
    .mobile-overlay {
        display: none;
    }
    
    .mobile-overlay.active {
        display: block;
    }
    
    /* Hide desktop navbar collapse on mobile */
    .navbar-collapse {
        display: none !important;
    }
    
    /* Brand text on mobile */
    .brand-text {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .mobile-side-menu {
        width: 300px;
        max-width: 88%;
    }
    
    .mobile-brand {
        font-size: 16px;
    }
    
    .mobile-brand img {
        max-height: 30px;
    }
    
    .mobile-nav-link {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .mobile-sub-link {
        font-size: 13px;
        padding: 8px 16px 8px 32px;
    }
    
    .mobile-submenu .mobile-submenu .mobile-sub-link {
        padding-left: 48px;
    }
    
    .brand-text {
        display: none !important;
    }
}

/* ============================================================
   DROPDOWN ON HOVER (Desktop)
   ============================================================ */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navbar-nav .dropdown > .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
        pointer-events: none;
        margin-top: 0;
    }

    .navbar-nav .dropdown:hover > .dropdown-menu {
        pointer-events: auto;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
    }

    .dropdown-submenu > .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
        pointer-events: none;
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: 6px;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        pointer-events: auto;
    }
}

/* ============================================================
   DROPDOWN STYLES
   ============================================================ */
.dropdown-menu {
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    padding: 10px;
    min-width: 230px;
    background: #fff;
}

.dropdown-item {
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 500;
    color: #1e293b;
    transition: 0.2s;
}

.dropdown-item:hover {
    background: #f1f5f9;
    color: #0b1a33;
}

.dropdown-item i {
    width: 22px;
    text-align: center;
    color: #facc15;
}

.dropdown-mega .dropdown-menu {
    min-width: 280px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-toggle::after {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.dropdown-submenu:hover > .dropdown-toggle {
    background: #f1f5f9;
    border-radius: 10px;
}

/* ============================================================
   SLIDER / CAROUSEL
   ============================================================ */
.hero-slider {
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.carousel-item {
    height: 85vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-slide-pos {
    background-image: linear-gradient(rgba(11, 26, 51, 0.72), rgba(11, 26, 51, 0.72)), url('../images/industry-minimart.jpg');
}

.carousel-slide-erp {
    background-image: linear-gradient(rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.72)), url('../images/service-property.jpg');
}

.carousel-slide-growth {
    background-image: linear-gradient(rgba(11, 26, 51, 0.68), rgba(45, 31, 10, 0.72)), url('../images/service-marketing.jpg');
}

.carousel-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.carousel-content h1 {
    font-size: 52px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators button {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    border: 2px solid #fff !important;
    margin: 0 6px !important;
}

.carousel-indicators .active {
    background: #facc15 !important;
    border-color: #facc15 !important;
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.divider {
    width: 60px;
    height: 4px;
    background: #facc15;
    border-radius: 4px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    background: #f8fafc;
}

.service-card {
    border-radius: 16px !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #facc15;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10) !important;
}

.service-icon {
    width: 65px;
    height: 65px;
    background: rgba(250, 204, 21, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #facc15;
    transition: 0.3s ease;
}

.service-image-card {
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
}

.service-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image-card img {
    transform: scale(1.06);
}

.service-card:hover .service-icon {
    background: #facc15;
    color: #0b1a33;
    transform: scale(1.05);
}

.service-card .card-title {
    color: #0b1a33;
    font-size: 18px;
}

.service-card .card-text {
    font-size: 14px;
    line-height: 1.7;
}

.service-card .btn-outline-warning {
    border-color: #facc15;
    color: #0b1a33;
    font-weight: 600;
}

.service-card .btn-outline-warning:hover {
    background: #facc15;
    border-color: #facc15;
    color: #0b1a33;
}

/* ============================================================
   INDUSTRIES / WHO WE SERVE
   ============================================================ */
.industries-section {
    background: #ffffff;
}

.industry-card {
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    cursor: default;
}

.industry-card:hover {
    background: #ffffff;
    border-color: #facc15;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-8px);
}

.industry-image {
    height: 145px;
    overflow: hidden;
    border-radius: 12px;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.06);
}

.industry-card h6 {
    color: #0b1a33;
    font-size: 15px;
}

.industry-card p {
    font-size: 13px;
    line-height: 1.6;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
    background: #0b1a33;
}

.stats p {
    font-size: 16px;
    opacity: 0.8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    background: #ffffff;
}

.testimonials .card {
    border-radius: 16px !important;
    transition: 0.3s ease;
}

.testimonials .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
    background: #facc15;
}

.cta .btn-dark {
    background: #0b1a33;
    border: none;
    font-weight: 600;
}

.cta .btn-dark:hover {
    background: #1a2d4a;
    transform: scale(1.02);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer a:hover {
    color: #facc15 !important;
}

footer .input-group .form-control {
    border: none;
    border-radius: 30px 0 0 30px;
    padding: 12px 20px;
}

footer .input-group .btn {
    border-radius: 0 30px 30px 0;
    padding: 12px 24px;
}

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
    padding: 60px 0;
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    transition: 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #facc15;
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.15);
}

.contact-form .form-control::placeholder {
    color: #a0aec0;
}

.contact-form label {
    font-size: 14px;
    color: #1e293b;
}

.contact-info-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-info-item {
    transition: 0.3s ease;
}

.contact-info-item:hover {
    background: #f1f5f9 !important;
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(250, 204, 21, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-links .btn-outline-dark {
    border-color: #e2e8f0;
    transition: 0.3s ease;
}

.social-links .btn-outline-dark:hover {
    background: #facc15;
    border-color: #facc15;
    color: #0b1a33;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.25);
}

/* ============================================================
   MAPS SECTION
   ============================================================ */
.maps-section {
    background: #f8fafc;
}

.nav-pills .nav-link {
    color: #1e293b;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px;
    transition: 0.3s ease;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    margin: 0 4px;
}

.nav-pills .nav-link:hover {
    background: rgba(250, 204, 21, 0.1);
    border-color: #facc15;
}

.nav-pills .nav-link.active {
    background: #facc15 !important;
    color: #0b1a33 !important;
    border-color: #facc15 !important;
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.3);
}

.nav-pills .nav-link i {
    font-size: 14px;
}

.map-container {
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.branch-info {
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.branch-info .btn-outline-warning {
    border-color: #facc15;
    color: #0b1a33;
    font-weight: 600;
}

.branch-info .btn-outline-warning:hover {
    background: #facc15;
    border-color: #facc15;
    color: #0b1a33;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.accordion-item {
    border-radius: 12px !important;
}

.accordion-button {
    padding: 18px 24px;
    font-size: 16px;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #ffffff !important;
    color: #0b1a33 !important;
    border-bottom: 2px solid #facc15 !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: #facc15 !important;
}

.accordion-button::after {
    background-size: 16px;
}

.accordion-body {
    padding: 20px 24px 24px;
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.search-wrapper .form-control {
    border: 2px solid #e2e8f0;
    padding: 14px 50px 14px 50px;
    font-size: 15px;
    transition: 0.3s ease;
}

.search-wrapper .form-control:focus {
    border-color: #facc15;
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.12);
}

.search-wrapper .btn-warning {
    font-weight: 600;
    z-index: 2;
}

.search-wrapper .btn-warning:hover {
    background: #eab308;
    transform: scale(1.02);
}

.featured-post .card {
    transition: 0.3s ease;
}

.featured-post .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
}

.featured-badge .badge {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 12px;
}

.blog-card {
    transition: all 0.4s ease;
    border-radius: 16px !important;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10) !important;
}

.blog-card .card-img-top {
    border-radius: 16px 16px 0 0;
}

.blog-card .badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.blog-card .card-title {
    font-size: 18px;
    line-height: 1.4;
}

.blog-card .card-title a {
    transition: 0.2s ease;
}

.blog-card .card-title a:hover {
    color: #facc15 !important;
}

.pagination .page-link {
    border: 2px solid #e2e8f0;
    color: #1e293b;
    font-weight: 600;
    padding: 10px 18px;
    transition: 0.3s ease;
    background: transparent;
}

.pagination .page-link:hover {
    background: #facc15;
    border-color: #facc15;
    color: #0b1a33;
}

.pagination .page-item.active .page-link {
    background: #facc15;
    border-color: #facc15;
    color: #0b1a33;
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
}

.sidebar-widget {
    border-radius: 16px !important;
    transition: 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
}

.sidebar-widget .list-unstyled li a {
    transition: 0.2s ease;
    font-size: 14px;
}

.sidebar-widget .list-unstyled li a:hover {
    color: #facc15 !important;
    padding-left: 5px;
}

.sidebar-widget .list-unstyled li .badge {
    font-size: 11px;
    font-weight: 600;
}

.hover-tag {
    transition: 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}

.hover-tag:hover {
    background: #facc15 !important;
    color: #0b1a33 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
}

.sidebar-widget .border-bottom {
    border-color: #e2e8f0 !important;
}

.sidebar-widget .border-bottom:last-child {
    border-bottom: none !important;
}

.sidebar-widget .text-dark {
    transition: 0.2s ease;
}

.sidebar-widget .text-dark:hover {
    color: #facc15 !important;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-image .experience-badge {
    background: #facc15 !important;
    border-radius: 16px !important;
}

.about-image .experience-badge h3 {
    font-weight: 900;
}

.about-image .experience-badge p {
    font-size: 14px;
}

.mission-card,
.vision-card {
    transition: 0.4s ease;
    border-radius: 20px !important;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 70px;
    height: 70px;
    background: rgba(250, 204, 21, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.value-card {
    transition: 0.4s ease;
    border-radius: 16px !important;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06) !important;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(250, 204, 21, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #facc15;
    transition: 0.3s ease;
}

.value-card:hover .value-icon {
    background: #facc15;
    color: #0b1a33;
    transform: scale(1.1);
}

.why-card {
    transition: 0.4s ease;
    border-radius: 16px !important;
    border: 2px solid transparent !important;
}

.why-card:hover {
    border-color: #facc15 !important;
    transform: translateX(8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(250, 204, 21, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.team-card {
    transition: 0.4s ease;
    border-radius: 16px !important;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
}

.team-card img {
    border: 4px solid #facc15;
}

.team-card .social-links a {
    width: 35px;
    height: 35px;
    background: #f1f5f9;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    text-decoration: none;
}

.team-card .social-links a:hover {
    background: #facc15;
    color: #0b1a33 !important;
    transform: translateY(-3px);
}

.branch-card {
    transition: 0.4s ease;
    border-radius: 16px !important;
    border: 2px solid transparent !important;
}

.branch-card:hover {
    border-color: #facc15 !important;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06) !important;
}

.branch-card .btn-outline-warning {
    border-color: #facc15;
    color: #0b1a33;
    font-weight: 600;
}

.branch-card .btn-outline-warning:hover {
    background: #facc15;
    border-color: #facc15;
    color: #0b1a33;
}

.border-dashed {
    border-style: dashed !important;
}

/* ============================================================
   QUOTATION PAGE
   ============================================================ */
.quotation-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.quotation-form .form-section {
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.quotation-form .form-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.quotation-form .form-control,
.quotation-form .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    transition: 0.3s ease;
}

.quotation-form .form-control:focus,
.quotation-form .form-select:focus {
    border-color: #facc15;
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.12);
}

.quotation-form .form-control::placeholder {
    color: #a0aec0;
}

.quotation-form label {
    font-size: 14px;
    color: #1e293b;
}

.service-check-item {
    margin-bottom: 8px;
}

.service-check-item .btn-check:checked + .btn {
    background: #facc15 !important;
    border-color: #facc15 !important;
    color: #0b1a33 !important;
    font-weight: 600;
}

.service-check-item .btn-check:checked + .btn i {
    color: #0b1a33 !important;
}

.service-check-item .btn-outline-dark {
    border-color: #e2e8f0;
    color: #1e293b;
    transition: 0.3s ease;
}

.service-check-item .btn-outline-dark:hover {
    background: rgba(250, 204, 21, 0.1);
    border-color: #facc15;
    color: #0b1a33;
}

.service-check-item .btn-outline-dark i {
    color: #facc15;
}

.quotation-sidebar .sidebar-widget {
    border-radius: 16px !important;
    transition: 0.3s ease;
}

.quotation-sidebar .sidebar-widget:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
}

.quotation-sidebar .contact-item {
    transition: 0.3s ease;
}

.quotation-sidebar .contact-item:hover {
    background: #f1f5f9;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-features .feature-item {
    padding: 6px 0;
}

.service-features .feature-item span {
    font-size: 14px;
}

.pricing-card {
    transition: 0.4s ease;
    border-radius: 20px !important;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
}

.pricing-card .btn-outline-warning {
    border-color: #facc15;
    color: #0b1a33;
    font-weight: 600;
}

.pricing-card .btn-outline-warning:hover {
    background: #facc15;
    border-color: #facc15;
    color: #0b1a33;
}

.pricing-card .btn-warning:hover {
    background: #eab308;
}

.popular-badge {
    top: -12px;
}

/* ============================================================
   CLIENTS PAGE
   ============================================================ */
.client-stats {
    border-bottom: 1px solid rgba(250, 204, 21, 0.2);
}

.client-stats h3 {
    font-weight: 900;
}

.client-categories .btn {
    font-weight: 600;
    transition: 0.3s ease;
    font-size: 14px;
}

.client-categories .btn-outline-dark:hover {
    background: #facc15;
    border-color: #facc15;
    color: #0b1a33;
}

.client-categories .btn.active {
    background: #facc15 !important;
    border-color: #facc15 !important;
    color: #0b1a33 !important;
}

.client-card {
    transition: all 0.4s ease;
    border-radius: 16px !important;
    border: 2px solid transparent !important;
    cursor: default;
}

.client-card:hover {
    transform: translateY(-8px);
    border-color: #facc15 !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
}

.client-card .client-logo-placeholder {
    transition: 0.4s ease;
    font-weight: 800;
    letter-spacing: 1px;
}

.client-card:hover .client-logo-placeholder {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-card .rating {
    font-size: 13px;
}

.client-card small {
    font-size: 12px;
}

.client-item {
    transition: all 0.4s ease;
}

.client-item.hide {
    display: none;
}

.testimonial-card {
    transition: 0.3s ease;
    border-radius: 16px !important;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
}

.case-card {
    transition: 0.3s ease;
    border-radius: 16px !important;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
}

.case-card .case-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   CAREER PAGE
   ============================================================ */
.benefit-card {
    transition: 0.4s ease;
    border-radius: 16px !important;
    border: 2px solid transparent !important;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #facc15 !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06) !important;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(250, 204, 21, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #facc15;
    transition: 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: #facc15;
    color: #0b1a33;
    transform: scale(1.1);
}

.culture-badge {
    background: #facc15 !important;
    border-radius: 16px !important;
}

.culture-icon {
    width: 30px;
    flex-shrink: 0;
}

.job-card {
    transition: 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
}

.job-card .card-header {
    border-bottom: 2px solid #f1f5f9;
}

.job-card .btn-warning {
    font-weight: 600;
}

.job-card .btn-warning:hover {
    background: #eab308;
    transform: scale(1.02);
}

.job-details {
    background: #f8fafc;
}

.job-details ul {
    list-style: none;
    padding-left: 0;
}

.job-details ul li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.job-details ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #facc15;
    font-weight: bold;
}

.application-form-wrapper {
    background: #ffffff;
}

.career-form .form-control,
.career-form .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    transition: 0.3s ease;
}

.career-form .form-control:focus,
.career-form .form-select:focus {
    border-color: #facc15;
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.12);
}

.career-form .form-control::placeholder {
    color: #a0aec0;
}

.career-form input[type="file"] {
    padding: 12px;
}

.employee-card {
    transition: 0.3s ease;
    border-radius: 16px !important;
}

.employee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06) !important;
}

/* ============================================================
   FLOATING SIDE BUTTONS (LEFT)
   ============================================================ */
.floating-side-buttons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.side-btn {
    width: 48px;
    height: 48px;
    background: #0b1a33;
    color: #fff;
    border: 2px solid rgba(250, 204, 21, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.side-btn i {
    font-size: 18px;
    transition: 0.3s ease;
}

.side-btn:hover {
    background: #facc15;
    color: #0b1a33;
    border-color: #facc15;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.3);
}

/* YouTube button specific */
.side-btn:nth-child(2):hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
}

.side-btn:nth-child(2):hover i {
    color: #fff;
}

/* Tooltip for side buttons */
.side-btn .tooltip-text {
    position: absolute;
    left: 58px;
    background: #0b1a33;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.side-btn .tooltip-text::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #0b1a33;
}

.side-btn:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ============================================================
   LAUNCHER BUTTON & MENU
   ============================================================ */
.launcher-btn {
    background: #1e3a6b;
    border-color: #facc15;
    position: relative;
    z-index: 1111;
}

.launcher-btn:hover {
    background: #facc15;
    border-color: #facc15;
}

.launcher-btn.is-open {
    background: #facc15;
    color: #0b1a33;
}

.launcher-btn .fa-ellipsis-h,
.launcher-btn .fa-times {
    font-size: 20px;
}

.launcher-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 26, 51, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1090;
    pointer-events: none;
}

.launcher-backdrop.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.launcher-menu {
    position: absolute;
    top: 50%;
    left: calc(100% + 12px);
    min-width: 320px;
    max-width: 420px;
    width: min(420px, calc(100vw - 120px));
    background: rgba(255, 255, 255, 0.98);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) scale(0.98);
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
    transform-origin: left center;
    pointer-events: none;
    z-index: 1112;
    
    overflow: hidden;
    max-height: 80vh;
}

.launcher-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
    pointer-events: auto;
}

.launcher-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.launcher-header h5 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: #0b1a33;
}

.launcher-header p {
    margin: 0;
    color: #475569;
    font-size: 13px;
    line-height: 1.5;
}

.launcher-close {
    border: none;
    background: #f1f5f9;
    color: #0b1a33;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.launcher-close:hover {
    background: #facc15;
    color: #0b1a33;
    transform: scale(1.05);
}

.launcher-search {
    display: grid;
    grid-template-columns: 1fr 46px;
    gap: 10px;
    margin-bottom: 18px;
}

.launcher-search input {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    color: #0b1a33;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.launcher-search input:focus {
    border-color: #facc15;
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.12);
}

.launcher-search button {
    border: none;
    background: #facc15;
    color: #0b1a33;
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.launcher-search button:hover {
    background: #eab308;
}

.launcher-item {
    position: relative;
    margin-bottom: 10px;
}

.launcher-item.dropdown-hover {
    overflow: visible;
    z-index: 2;
}

.launcher-item.dropdown-hover > .launcher-submenu {
    z-index: 1350;
    display: block;
}

.launcher-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    color: #0b1a33;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.launcher-link:hover {
    background: #f8fafc;
    color: #0b1a33;
    border-color: #cbd5e1;
}

.launcher-link i:first-child {
    width: 24px;
    font-size: 16px;
    text-align: center;
}

.launcher-link .fa-chevron-right {
    margin-left: auto;
    font-size: 12px;
    color: #94a3b8;
}

.launcher-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    min-width: 260px;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px) scale(0.95);
    transition: all 0.25s ease;
    transform-origin: left center;
    pointer-events: none;
    z-index: 1320;
}

.launcher-submenu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.dropdown-hover:hover .launcher-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.launcher-sub-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    color: #0b1a33;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    margin-bottom: 8px;
}

.launcher-sub-item:last-child {
    margin-bottom: 0;
}

.launcher-sub-item:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.sub-item-avatar {
    width: 36px;
    height: 36px;
    background: rgba(250, 204, 21, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sub-item-avatar i {
    font-size: 18px;
    color: #facc15;
}

.sub-item-info {
    flex: 1;
}

.sub-item-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0b1a33;
}

.sub-item-phone {
    display: block;
    font-size: 11px;
    color: #64748b;
}

.sub-item-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    flex-shrink: 0;
}

.sub-item-badge.online {
    background: #dcfce7;
    color: #16a34a;
}

.sub-item-badge.away {
    background: #fef3c7;
    color: #b45309;
}

body.launcher-open {
    overflow: hidden;
}

@media (max-width: 992px) {
    .launcher-menu {
        right: 0;
        left: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 24px 24px 0 0;
        padding: 18px;
        height: auto;
        max-height: 82vh;
    }

    .launcher-backdrop {
        z-index: 1080;
    }
}

@media (max-width: 576px) {
    .launcher-menu {
        padding: 16px;
    }

    .launcher-header {
        gap: 12px;
    }

    .launcher-search {
        grid-template-columns: 1fr 44px;
    }

    .launcher-close {
        width: 34px;
        height: 34px;
    }
}

/* ============================================================
   WHATSAPP WIDGET (Floating Chat) - BOTTOM LEFT
   ============================================================ */
.whatsapp-widget {
    position: fixed;
    left: 24px;
    bottom: 24px;
    right: auto;
    z-index: 1000;
}

/* Toggle Button */
.whatsapp-widget-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: #fff;
    padding: 9px 14px 9px 11px;
    border-radius: 60px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: none;
    min-width: 164px;
}

.whatsapp-widget-toggle:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

.whatsapp-widget-toggle .widget-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.whatsapp-widget-toggle .widget-label {
    display: flex;
    flex-direction: column;
}

.whatsapp-widget-toggle .widget-title {
    font-weight: 600;
    font-size: 14px;
}

.whatsapp-widget-toggle .widget-subtitle {
    font-size: 11px;
    opacity: 0.8;
}

.whatsapp-widget-toggle .widget-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-widget-toggle .widget-arrow {
    font-size: 12px;
    transition: 0.3s ease;
    margin-left: 4px;
}

.whatsapp-widget-toggle.active .widget-arrow {
    transform: rotate(180deg);
}

.whatsapp-widget-toggle.active {
    background: #0b1a33;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.whatsapp-widget-toggle.active .widget-icon {
    background: rgba(250, 204, 21, 0.2);
    color: #facc15;
}

/* Widget Popup */
.whatsapp-widget-popup {
    position: absolute;
    bottom: 75px;
    left: 0;
    width: 320px;
    max-width: min(320px, calc(100vw - 24px));
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s ease;
    transform-origin: bottom left;
    pointer-events: none;
    overflow: hidden;
}

.whatsapp-widget-popup.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Widget Header */
.widget-header {
    background: linear-gradient(135deg, #075e54, #128C7E);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.widget-header-info {
    display: flex;
    gap: 12px;
    flex: 1;
}

.widget-avatar {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.widget-header h6 {
    font-size: 15px;
    margin-bottom: 2px;
}

.widget-header small {
    font-size: 12px;
    opacity: 0.85;
    display: block;
    line-height: 1.4;
}

.widget-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s ease;
    padding: 4px;
    margin-top: -4px;
}

.widget-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Widget Body */
.widget-body {
    padding: 16px 20px;
    max-height: 460px;
    overflow-y: auto;
}

.widget-body::-webkit-scrollbar {
    width: 4px;
}

.widget-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

/* Member Groups */
.widget-members {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.member-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.member-group-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 0.5px;
    padding-bottom: 4px;
    border-bottom: 1px solid #f1f5f9;
}

/* Member Item */
.member-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.2s ease;
    background: #f8fafc;
    border: 1px solid transparent;
}

.member-item:hover {
    background: #f1f5f9;
    border-color: #25d366;
    transform: translateX(4px);
}

.member-item .member-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.member-item .member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-item .member-info {
    flex: 1;
}

.member-item .member-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0b1a33;
}

.member-item .member-status {
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.member-item .member-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.member-item .member-status.online::before {
    background: #22c55e;
}

.member-item .member-status.online {
    color: #16a34a;
}

.member-item .member-status.away::before {
    background: #f59e0b;
}

.member-item .member-status.away {
    color: #d97706;
}

.member-item .member-status.offline::before {
    background: #94a3b8;
}

.member-item .member-status.offline {
    color: #94a3b8;
}

/* Privacy Policy */
.widget-privacy {
    margin-top: 16px;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 12px;
}

.widget-privacy .form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.widget-privacy .form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 1px;
    transition: 0.2s ease;
}

.widget-privacy .form-check-input:checked {
    background-color: #25d366;
    border-color: #25d366;
}

.widget-privacy .form-check-label {
    font-size: 13px;
    color: #64748b;
    cursor: pointer;
}

.widget-privacy .privacy-link {
    color: #25d366;
    text-decoration: none;
    font-weight: 500;
}

.widget-privacy .privacy-link:hover {
    text-decoration: underline;
}

/* Widget Footer Note */
.widget-footer-note {
    margin-top: 12px;
    text-align: center;
}

.widget-footer-note small {
    font-size: 12px;
    color: #94a3b8;
}

.widget-footer-note small i {
    color: #25d366;
}

/* ============================================================
   CHATBOT - BOTTOM RIGHT
   ============================================================ */
.chatbot-bottom-right {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
}

.chatbot-container {
    position: relative;
}

.chatbot-toggle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b1a33, #1e3a6b);
    border: 3px solid #facc15;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(250, 204, 21, 0.3);
}

.chatbot-toggle .chatbot-icon {
    font-size: 28px;
}

.chatbot-toggle .chatbot-label {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.chatbot-pulse {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid #facc15;
    animation: chatbotPulse 2s ease-out infinite;
}

@keyframes chatbotPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 500px;
    max-height: 70vh;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideUp 0.3s ease;
}

.chatbot-window.open {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, #0b1a33, #1e3a6b);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-avatar {
    width: 36px;
    height: 36px;
    background: rgba(250, 204, 21, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #facc15;
}

.chatbot-header h6 {
    font-size: 15px;
}

.chatbot-header small {
    font-size: 11px;
    opacity: 0.8;
}

.chatbot-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s ease;
}

.chatbot-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    padding: 16px 20px;
    overflow-y: auto;
    background: #f8fafc;
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.chatbot-message {
    margin-bottom: 12px;
    display: flex;
}

.chatbot-message.bot {
    justify-content: flex-start;
}

.chatbot-message.user {
    justify-content: flex-end;
}

.chatbot-message .message-content {
    max-width: 85%;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.6;
}

.chatbot-message.bot .message-content {
    background: #fff;
    color: #1e293b;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.chatbot-message.user .message-content {
    background: #facc15;
    color: #0b1a33;
    border-bottom-right-radius: 4px;
}

.chatbot-message .message-content p {
    margin-bottom: 6px;
}

.chatbot-message .message-content p:last-child {
    margin-bottom: 0;
}

.quick-reply-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.quick-reply-btn {
    background: rgba(250, 204, 21, 0.15);
    border: 1px solid rgba(250, 204, 21, 0.3);
    color: #0b1a33;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.quick-reply-btn:hover {
    background: #facc15;
    border-color: #facc15;
    transform: scale(1.02);
}

.chatbot-input-area {
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.chatbot-input {
    flex: 1;
    border: 2px solid #e2e8f0;
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

.chatbot-input:focus {
    border-color: #facc15;
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.1);
}

.chatbot-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #facc15;
    border: none;
    color: #0b1a33;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-send:hover {
    background: #eab308;
    transform: scale(1.05);
}

.chatbot-send:active {
    transform: scale(0.95);
}

/* ============================================================
   RESPONSIVE - WHATSAPP WIDGET & FLOATING BUTTONS
   ============================================================ */
@media (max-width: 992px) {
    .launcher-menu {
        position: fixed;
        left: 0;
        right: auto;
        top: auto;
        bottom: 12px;
        width: min(520px, calc(100vw - 24px));
        min-width: 0;
        max-width: calc(100vw - 24px);
        max-height: min(82vh, 640px);
        overflow-y: auto;
        transform: translateY(16px) scale(0.98);
        transform-origin: bottom center;
    }

    .launcher-menu.open {
        transform: translateY(0) scale(1);
    }

    .launcher-submenu {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 4px;
        padding: 6px;
        transform: translateY(0) scale(1);
        transform-origin: top center;
    }

    .dropdown-hover:hover .launcher-submenu,
    .dropdown-hover:focus-within .launcher-submenu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px) scale(0.98);
        pointer-events: none;
    }

    .dropdown-hover .launcher-submenu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .whatsapp-widget {
        left: 16px;
        bottom: 16px;
        right: auto;
    }

    .whatsapp-widget-popup {
        width: 300px;
        left: 0;
        right: auto;
        bottom: 62px;
    }

    .floating-side-buttons {
        left: 10px;
        gap: 8px;
    }
    
    .side-btn {
        width: 40px;
        height: 40px;
    }
    
    .side-btn i {
        font-size: 15px;
    }
    
    .side-btn .tooltip-text {
        display: none;
    }
    
    .launcher-menu {
        position: fixed;
        left: 0;
        right: auto;
        top: auto;
        bottom: 12px;
        width: min(520px, calc(100vw - 24px));
        min-width: 0;
        max-width: calc(100vw - 24px);
        max-height: min(82vh, 640px);
        overflow-y: auto;
    }
    
    .launcher-submenu {
        position: static;
        width: 100%;
        min-width: 0;
        left: auto;
        margin-top: 8px;
        transform: translateY(-6px) scale(0.98);
    }
    
    .launcher-link {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .launcher-sub-item {
        padding: 8px 12px;
    }
    
    .sub-item-avatar {
        width: 30px;
        height: 30px;
    }
    
    .sub-item-avatar i {
        font-size: 16px;
    }
    
    .sub-item-name {
        font-size: 12px;
    }
    
    .sub-item-phone {
        font-size: 10px;
    }
    
    .whatsapp-widget {
        right: 16px;
        bottom: 16px;
        left: auto;
    }
    
    .whatsapp-widget-popup {
        width: 300px;
        left: auto;
        right: 0;
        bottom: 62px;
    }
    
    .whatsapp-widget-toggle {
        padding: 10px 16px 10px 12px;
        min-width: 150px;
    }
    
    .whatsapp-widget-toggle .widget-icon {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
    
    .whatsapp-widget-toggle .widget-title {
        font-size: 12px;
    }
    
    .whatsapp-widget-toggle .widget-subtitle {
        font-size: 10px;
    }
    
    .chatbot-bottom-right {
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-toggle {
        width: 60px;
        height: 60px;
    }
    
    .chatbot-toggle .chatbot-icon {
        font-size: 22px;
    }
    
    .chatbot-window {
        width: 340px;
        height: 450px;
        right: 0;
    }
}

@media (max-width: 576px) {
    .floating-side-buttons {
        left: 6px;
        gap: 6px;
    }
    
    .side-btn {
        width: 42px;
        height: 42px;
    }
    
    .side-btn i {
        font-size: 17px;
    }

    .launcher-btn {
        border-width: 2px;
    }

    .launcher-btn .fa-ellipsis-h,
    .launcher-btn .fa-times {
        font-size: 19px;
    }
    
    .launcher-menu {
        left: 0;
        right: auto;
        bottom: 8px;
        width: calc(100vw - 16px);
        min-width: 0;
        max-width: calc(100vw - 16px);
        padding: 16px;
        max-height: min(84vh, 680px);
    }
    
    .launcher-submenu {
        min-width: 0;
        width: 100%;
        left: auto;
        padding: 6px;
    }
    
    .launcher-link {
        font-size: 14px;
        line-height: 1.3;
        padding: 11px 12px;
        gap: 10px;
    }
    
    .launcher-link i:first-child {
        width: 22px;
        font-size: 16px;
    }
    
    .launcher-sub-item {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .sub-item-avatar {
        width: 32px;
        height: 32px;
    }
    
    .sub-item-avatar i {
        font-size: 16px;
    }
    
    .sub-item-name {
        font-size: 13px;
    }
    
    .sub-item-phone {
        font-size: 11px;
    }
    
    .sub-item-badge {
        font-size: 8px;
        padding: 3px 7px;
    }
    
    .whatsapp-widget {
        left: 12px;
        bottom: 12px;
        right: auto;
    }
    
    .whatsapp-widget-toggle {
        padding: 10px 14px 10px 10px;
        min-width: auto;
        border-radius: 50px;
    }
    
    .whatsapp-widget-toggle .widget-label {
        display: none;
    }
    
    .whatsapp-widget-toggle .widget-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .whatsapp-widget-toggle .widget-badge {
        width: 18px;
        height: 18px;
        font-size: 9px;
        top: -3px;
        right: -3px;
    }
    
    .whatsapp-widget-toggle .widget-arrow {
        display: none;
    }
    
    .whatsapp-widget-popup {
        width: calc(100vw - 32px);
        left: -4px;
        right: auto;
        bottom: 60px;
        border-radius: 16px;
    }
    
    .widget-header {
        padding: 14px 16px;
    }
    
    .widget-body {
        padding: 14px 16px;
        max-height: 400px;
    }
    
    .member-item {
        padding: 8px 12px;
    }
    
    .member-item .member-avatar {
        width: 34px;
        height: 34px;
    }
    
    .member-item .member-name {
        font-size: 13px;
    }
    
    .widget-privacy .form-check-label {
        font-size: 12px;
    }
    
    .chatbot-bottom-right {
        bottom: 16px;
        right: 16px;
    }
    
    .chatbot-toggle {
        width: 52px;
        height: 52px;
    }
    
    .chatbot-toggle .chatbot-icon {
        font-size: 18px;
    }
    
    .chatbot-toggle .chatbot-label {
        font-size: 7px;
    }
    
    .chatbot-window {
        width: calc(100vw - 32px);
        height: 400px;
        right: -8px;
        bottom: 68px;
    }
    
    .chatbot-message .message-content {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .quick-reply-btn {
        font-size: 11px;
        padding: 3px 10px;
    }
}

/* ============================================================
   RESPONSIVE - GENERAL
   ============================================================ */
@media (max-width: 992px) {
    .hero-slider,
    .carousel-item {
        height: 60vh;
        min-height: 400px;
    }

    .carousel-content h1 {
        font-size: 32px;
    }

    .carousel-content p {
        font-size: 16px;
    }

    .navbar-nav .dropdown > .dropdown-menu,
    .dropdown-submenu > .dropdown-menu {
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto !important;
        position: static;
        box-shadow: none;
        padding-left: 20px;
        margin: 0;
        background: transparent;
    }

    .navbar-nav .dropdown.show > .dropdown-menu,
    .dropdown-submenu.show > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu > .dropdown-menu {
        left: 0;
        margin-left: 20px;
        margin-top: 0;
        border-radius: 10px;
    }

    .dropdown-submenu > .dropdown-toggle::after {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
    }

    .dropdown-item {
        padding: 10px 16px;
    }

    .service-card .card-title {
        font-size: 16px;
    }

    .industry-card h6 {
        font-size: 14px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .map-container iframe {
        min-height: 300px;
    }
    
    .branch-info {
        min-height: auto;
        padding: 25px !important;
    }
    
    .nav-pills .nav-link {
        padding: 8px 16px;
        font-size: 14px;
        margin: 2px;
    }

    .featured-post .card-img-top {
        height: 250px !important;
    }
    
    .featured-post .card-title {
        font-size: 24px !important;
    }
    
    .blog-card .card-title {
        font-size: 16px;
    }
    
    .blog-card img {
        height: 180px !important;
    }
    
    .search-wrapper .btn-warning {
        position: relative !important;
        transform: none !important;
        width: 100%;
        margin-top: 8px;
        border-radius: 30px !important;
    }
    
    .search-wrapper .form-control {
        border-radius: 30px !important;
    }

    .about-image .experience-badge {
        transform: translate(10px, 10px) !important;
        padding: 15px !important;
    }
    
    .about-image .experience-badge h3 {
        font-size: 28px !important;
    }
    
    .about-image .experience-badge p {
        font-size: 12px !important;
    }

    .service-detail {
        padding: 25px;
    }
    
    .service-image img {
        height: 250px;
    }
    
    .pricing-card {
        transform: none !important;
    }
    
    .pricing-card .popular-badge {
        top: -10px;
    }

    .quotation-form-wrapper {
        padding: 25px;
    }

    .client-stats h3 {
        font-size: 28px !important;
    }
    
    .case-card .case-image {
        min-height: 120px !important;
    }

    .application-form-wrapper {
        padding: 30px !important;
    }
}

@media (max-width: 768px) {
    .client-categories .btn {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .client-card .client-logo-placeholder {
        width: 80px !important;
        height: 80px !important;
        font-size: 16px !important;
    }
    
    .client-card h6 {
        font-size: 14px;
    }

    .job-card .card-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
    }
    
    .job-card .card-header .btn {
        width: 100%;
    }
    
    .culture-badge {
        transform: translate(10px, 10px) !important;
        padding: 12px !important;
    }
    
    .culture-badge .fs-2 {
        font-size: 20px !important;
    }
    
    .culture-badge h5 {
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {
    .hero-slider,
    .carousel-item {
        height: 50vh;
        min-height: 350px;
    }

    .carousel-content h1 {
        font-size: 26px;
    }

    .carousel-content .btn {
        font-size: 14px;
        padding: 10px 24px !important;
    }

    .navbar-brand {
        font-size: 22px;
    }

    .navbar-brand img {
        max-height: 35px;
    }

    .service-card {
        margin-bottom: 0;
    }

    .service-image-card {
        height: 150px;
    }

    .services-section h2 {
        font-size: 28px;
    }

    .industry-card {
        padding: 20px 12px !important;
    }

    .industry-card h6 {
        font-size: 13px;
    }

    .industry-card p {
        font-size: 12px;
    }

    .industry-image {
        height: 105px;
    }

    .industries-section h2 {
        font-size: 24px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 20px;
    }
    
    .page-banner h1 {
        font-size: 28px;
    }
    
    .map-container {
        min-height: 250px;
    }
    
    .map-container iframe {
        min-height: 250px;
    }
    
    .nav-pills .nav-link {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .contact-info-item {
        padding: 15px !important;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 18px !important;
    }
    
    .contact-icon i {
        font-size: 18px !important;
    }

    .featured-post .card-img-top {
        height: 200px !important;
    }
    
    .featured-post .card-title {
        font-size: 20px !important;
    }
    
    .blog-card .card-title {
        font-size: 15px;
    }
    
    .blog-card img {
        height: 160px !important;
    }
    
    .blog-card .card-body {
        padding: 16px !important;
    }
    
    .sidebar-widget {
        padding: 20px !important;
    }
    
    .pagination .page-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    .about-image .experience-badge {
        transform: translate(5px, 5px) !important;
        padding: 12px !important;
    }
    
    .about-image .experience-badge h3 {
        font-size: 22px !important;
    }
    
    .about-image .experience-badge p {
        font-size: 11px !important;
    }
    
    .team-card img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .why-card {
        padding: 16px !important;
    }
    
    .value-card {
        padding: 20px !important;
    }

    .service-detail {
        padding: 20px;
    }
    
    .service-image img {
        height: 200px;
    }
    
    .nav-pills .nav-link {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .pricing-card {
        padding: 20px !important;
    }
    
    .pricing-price .display-5 {
        font-size: 28px !important;
    }
    
    .service-features .feature-item span {
        font-size: 13px;
    }

    .quotation-form-wrapper {
        padding: 20px;
    }
    
    .quotation-form .btn-lg {
        font-size: 15px;
        padding: 12px 24px !important;
    }
    
    .service-check-item .btn {
        font-size: 14px;
        padding: 8px 16px !important;
    }

    .client-stats h3 {
        font-size: 22px !important;
    }
    
    .client-stats p {
        font-size: 12px !important;
    }
    
    .client-card {
        padding: 16px !important;
    }
    
    .client-card .client-logo-placeholder {
        width: 70px !important;
        height: 70px !important;
        font-size: 14px !important;
    }
    
    .client-card h6 {
        font-size: 13px;
    }
    
    .testimonial-card {
        padding: 20px !important;
    }
    
    .case-card .case-image {
        min-height: 80px !important;
    }

    .application-form-wrapper {
        padding: 20px !important;
    }
    
    .benefit-card {
        padding: 20px !important;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .job-card .card-header {
        padding: 16px !important;
    }
    
    .job-card .card-body {
        padding: 16px !important;
    }
    
    .employee-card {
        padding: 20px !important;
    }
}
