    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #fefeff;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    /* Custom Corporate Color Scheme */
    :root {
      --primary-dark: #0066cc;
      --primary-accent: #2C74B3;
      --secondary-accent: #205295;
      --success-green: #00b894;
      --gold-accent: #007afd;
      --blue-accent: #0A2647;
      --light-bg: #F8FAFE;
      --danger-red: #e76f51;
      --card-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12), 0 6px 12px -6px rgba(0, 0, 0, 0.05);
      --transition-default: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .brand-logo {
        height: 65px;
    }

    .brand-logo-footer {
        height: 65px;
    }

    .bg-light-blue {
        background: #f0f4fc;
    }

    .payment-footer {
        width: 250px;
        border-radius: 12px;       
    }

    .btn-close {
        float: right;
    }

    /* Animated gradient background for hero */
    .hero-gradient {
      background: linear-gradient(135deg, #0A2647 0%, #1B3A5C 50%, #0F2D44 100%);
      background-size: 200% 200%;
      animation: shimmerBg 12s ease infinite;
      position: relative;
      overflow: hidden;
    }

    @keyframes shimmerBg {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Floating elements animation */
    .floating-shape {
      position: absolute;
      background: rgba(255,255,240,0.05);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      animation: floatShape 18s infinite alternate;
      z-index: 0;
    }

    @keyframes floatShape {
      0% { transform: translate(0,0) rotate(0deg); }
      100% { transform: translate(40px, -40px) rotate(12deg); }
    }

    /* Navbar glass morph effect */
    .navbar-glass {
      /*background: rgba(10, 38, 71, 0.85);*/ 
      background: #fff;
      backdrop-filter: blur(12px);
      transition: all 0.3s ease;      
      border-bottom: 1px solid rgba(233, 183, 65, 0.2);
    }

    .navbar-glass.scrolled {
      padding: 0.6rem 0;
      background: #fff;
      /*background: rgba(10, 38, 71, 0.96);*/
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .nav-link { 
        font-weight: 500;
        color: rgba(10, 28, 47, 0.98) !important;
        margin: 0 0.5rem;
        transition: 0.2s;
        display: block;       
        font-size: 16px;
        position: relative;
    }

    .nav-link:hover {
      color: var(--secondary-accent) !important;      
      font-size: 16px;       
    }

    .nav-link.active {
      color: var(--secondary-accent) !important;      
      font-size: 16px; 
      font-weight: 700;      
    }

    .btn-gold {
      background: linear-gradient(135deg, #0A2647 0%, #1B3A5C 50%, #007bfd 100%);
      color: #fff;
      font-weight: 700;
      border-radius: 40px;
      padding: 0.6rem 1.8rem;
      transition: var(--transition-default);
      border: none;
      box-shadow: 0 6px 14px rgb(26 105 168);
    }

    .btn-gradient {
        background: linear-gradient(135deg, #1B3A5C, #007bfd);
        border: none;
        border-radius: 50px;
        padding: 10px 28px;
        font-weight: 600;
        color: white;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    }

    .btn-gold:hover {
      background: #f5c542;
      transform: scale(1.02) translateY(-3px);
      box-shadow: 0 12px 22px rgba(233, 183, 65, 0.4);
      color: #0A2647;
    }

    .btn-outline-light-custom {
      border: 1.5px solid rgba(233, 183, 65, 0.7);
      background: transparent;
      color: white;
      border-radius: 40px;
      padding: 0.6rem 1.8rem;
      font-weight: 500;
      transition: all 0.25s;
    }

    .btn-outline-light-custom:hover {
      background: var(--gold-accent);
      border-color: var(--gold-accent);
      color: #0A2647;
      transform: translateY(-2px);
    }

    .btn-outline-light {
        border-radius: 20px;
    }

    .navbar-toggler {
        padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
        font-size: var(--bs-navbar-toggler-font-size);
        line-height: 1;
        /* color: var(--bs-navbar-color); */
        background-color: #0966ca;
        border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
        border-radius: var(--bs-navbar-toggler-border-radius);
        transition: var(--bs-navbar-toggler-transition);
    }

    /* Toast Notifications */
    .corporate-toast {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 1300;
      background: #0A2647;
      color: white;
      border-left: 5px solid var(--gold-accent);
      border-radius: 20px;
      padding: 1rem 2rem;
      box-shadow: 0 20px 35px rgba(0,0,0,0.2);
      transform: translateX(400px);
      transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      font-weight: 500;
    }
    .corporate-toast.show {
      transform: translateX(0);
    }

    /* Footer Styles */
    .footer-corporate {
      background: #000c21;
      color: #94a3b8;
      position: relative;
      overflow: hidden;
    }
    .footer-corporate::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--gold-accent), var(--primary-accent), var(--gold-accent));
      animation: shimmer 3s infinite;
    }
    @keyframes shimmer {
      0% { background-position: -100% 0; }
      100% { background-position: 200% 0; }
    }
    .footer-corporate .footer-brand {
      font-size: 1.8rem;
      font-weight: 800;
      color: white;
      margin-bottom: 1rem;
    }
    .footer-corporate .footer-brand span {
      color: var(--gold-accent);
    }
    .footer-corporate .company-address {
      font-size: 0.85rem;
      line-height: 1.6;
      margin-top: 1rem;
    }
    .footer-corporate .footer-heading {
      color: var(--gold-accent);
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 1.2rem;
      position: relative;
      display: inline-block;
    }
    .footer-corporate .footer-heading::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--gold-accent);
      transition: width 0.3s ease;
    }
    .footer-corporate .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-corporate .footer-links li {
      margin-bottom: 0.6rem;
    }
    .footer-corporate .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.85rem;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-corporate .footer-links a i {
      font-size: 0.7rem;
      opacity: 0;
      transform: translateX(-5px);
      transition: all 0.25s;
    }
    .footer-corporate .footer-links a:hover {
      color: var(--gold-accent);
      transform: translateX(5px);
    }
    .footer-corporate .footer-links a:hover i {
      opacity: 1;
      transform: translateX(0);
    }
    /* Payment Icons */
    .payment-icons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin: 1rem 0;
    }
    .payment-icon {
      background: rgba(255,255,255,0.1);
      padding: 0.4rem 0.8rem;
      border-radius: 8px;
      font-size: 0.75rem;
      font-weight: 600;
      transition: all 0.25s;
    }
    .payment-icon:hover {
      background: var(--gold-accent);
      color: #0A2647;
      transform: translateY(-2px);
    }
    .rating-badge {
      background: rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 0.6rem 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .rating-stars i {
      color: #E9B741;
      font-size: 0.8rem;
    }
    /* Language Selector */
    .language-selector {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255,255,255,0.08);
      padding: 0.4rem 0.8rem;
      border-radius: 40px;
      width: fit-content;
    }
    .language-selector i {
      color: var(--gold-accent);
    }
    .language-selector span {
      font-size: 0.8rem;
    }
    /* Social Icons */
    .social-icons {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }
    .social-icons a {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #94a3b8;
      transition: all 0.25s;
    }
    .social-icons a:hover {
      background: var(--gold-accent);
      color: #0A2647;
      transform: translateY(-3px);
    }
    /* Footer Bottom */
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 1.2rem 0;
      margin-top: 2rem;
      font-size: 0.85rem;
    }
    /* Footer Bottom Links - Proper Hover Effect */
    .footer-bottom a {
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .footer-bottom a:hover {
        color: var(--gold-accent) !important;
        text-decoration: none !important;
    }

    /* Specific styling for ElyonSoftSolutions link */
    .footer-bottom a[href*="elyonsoft"] {
        color: var(--gold-accent);
        font-weight: 500;
    }

    .footer-bottom a[href*="elyonsoft"]:hover {
        color: #ffffff !important;
        text-decoration: none !important;
    }
    /* Responsive */
    @media (max-width: 768px) {
      .footer-corporate .footer-links {
        margin-bottom: 1.5rem;
      }
      .footer-corporate .footer-heading {
        margin-top: 0.5rem;
      }
    }
    /* Floating shape animation */
    .footer-floating {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(233,183,65,0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    /* ============================================ */
        /* FLOATING SIDE MENU - RIGHT SIDE */
        /* ============================================ */
        .floating-menu {
            position: fixed;
            right: 20px;
            bottom: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        /* Menu Items */
        .menu-item {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            text-decoration: none;
        }

        /* Tooltip Styles */
        .menu-item .tooltip {
            position: absolute;
            right: 70px;
            background: #0A2647;
            color: white;
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            pointer-events: none;
            font-family: 'Inter', sans-serif;
        }

        .menu-item .tooltip::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent transparent #0A2647;
        }

        .menu-item:hover .tooltip {
            opacity: 1;
            visibility: visible;
            right: 80px;
        }

        /* ============================================ */
        /* WHATSAPP BUTTON - PULSING RADIATION */
        /* ============================================ */
        .menu-whatsapp {
            background: #25D366;
            color: white;
            position: relative;
            overflow: visible;
        }

        .menu-whatsapp::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            background: #25D366;
            border-radius: 50%;
            z-index: -1;
            animation: pulse-ring-wa 1.8s infinite;
        }

        @keyframes pulse-ring-wa {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.8;
            }
            70% {
                transform: translate(-50%, -50%) scale(1.4);
                opacity: 0;
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0;
            }
        }

        .menu-whatsapp i {
            font-size: 1.6rem;
            transition: transform 0.3s;
        }

        .menu-whatsapp:hover {
            transform: scale(1.1);
            background: #128C7E;
        }

        .menu-whatsapp:hover i {
            transform: scale(1.1);
        }

        /* ============================================ */
        /* CALL BUTTON - SONAR PULSE */
        /* ============================================ */
        .menu-call {
            background: #2C74B3;
            color: white;
            animation: sonar-pulse-call 2s infinite;
        }

        @keyframes sonar-pulse-call {
            0% {
                box-shadow: 0 0 0 0 rgba(44, 116, 179, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(44, 116, 179, 0.3);
            }
            100% {
                box-shadow: 0 0 0 15px rgba(44, 116, 179, 0);
            }
        }

        .menu-call i {
            font-size: 1.5rem;
            transition: transform 0.3s;
        }

        .menu-call:hover {
            transform: scale(1.1);
            background: #1e5a8a;
            animation: none;
        }

        .menu-call:hover i {
            transform: rotate(15deg);
        }

        /* ============================================ */
        /* FEEDBACK BUTTON - GLOW EFFECT */
        /* ============================================ */
        .menu-feedback {
            background: #E9B741;
            color: #0A2647;
            animation: glow-feedback 2s infinite;
        }

        @keyframes glow-feedback {
            0% {
                box-shadow: 0 0 5px #E9B741;
            }
            50% {
                box-shadow: 0 0 20px #E9B741, 0 0 30px rgba(233, 183, 65, 0.5);
            }
            100% {
                box-shadow: 0 0 5px #E9B741;
            }
        }

        .menu-feedback i {
            font-size: 1.5rem;
            transition: transform 0.3s;
        }

        .menu-feedback:hover {
            transform: scale(1.1);
            background: #d4a130;
            animation: none;
        }

        .menu-feedback:hover i {
            transform: rotate(360deg);
        }

        /* ============================================ */
        /* BACK TO TOP BUTTON */
        /* ============================================ */
        .menu-top {
            background: #1e293b;
            color: white;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .menu-top.show {
            opacity: 1;
            visibility: visible;
        }

        .menu-top i {
            font-size: 1.3rem;
        }

        .menu-top:hover {
            background: #E9B741;
            color: #0A2647;
            transform: scale(1.1);
        }

        /* ============================================ */
        /* MENU EXPAND/COLLAPSE (Optional) */
        /* ============================================ */
        .menu-toggle {
            background: #E9B741;
            color: #0A2647;
            display: none;
        }

        /* Slide-in Animation */
        @keyframes slideIn {
            from {
                transform: translateX(100px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .menu-item {
            animation: slideIn 0.3s ease forwards;
        }

        .menu-item:nth-child(1) { animation-delay: 0s; }
        .menu-item:nth-child(2) { animation-delay: 0.1s; }
        .menu-item:nth-child(3) { animation-delay: 0.2s; }
        .menu-item:nth-child(4) { animation-delay: 0.3s; }

        /* Responsive */
        @media (max-width: 768px) {
            .floating-menu {
                right: 15px;
                bottom: 20px;
                gap: 10px;
            }
            .menu-item {
                width: 48px;
                height: 48px;
            }
            .menu-item i {
                font-size: 1.3rem;
            }
            .menu-item .tooltip {
                font-size: 0.75rem;
                padding: 6px 12px;
                right: 60px;
            }
            .menu-item:hover .tooltip {
                right: 65px;
            }
        }

        /* Modal Styles for Feedback */
        .feedback-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1100;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        .feedback-modal.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .feedback-content {
            background: white;
            border-radius: 28px;
            padding: 30px;
            max-width: 450px;
            width: 90%;
            position: relative;
            animation: slideUp 0.4s ease;
        }

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

        .feedback-content h3 {
            color: #0A2647;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .feedback-content textarea {
            width: 100%;
            padding: 12px;
            border: 1.5px solid #e2e8f0;
            border-radius: 16px;
            font-family: 'Inter', sans-serif;
            resize: vertical;
        }

        .feedback-content textarea:focus {
            outline: none;
            border-color: #E9B741;
        }

        .feedback-content button {
            background: #E9B741;
            border: none;
            border-radius: 40px;
            padding: 12px 24px;
            font-weight: 600;
            margin-top: 15px;
            width: 100%;
            cursor: pointer;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #94a3b8;
        }

        .footer-bottom-links {
          margin-top: 20px;
        }

/* Newsletter Section Styles */
.newsletter-wrapper {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border-radius: 28px;
    padding: 1.5rem 2rem;
    border: 1px solid #ffffff14;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-wrapper {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border-radius: 28px;
    padding: 1.5rem 2rem;   
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-wrapper:hover {
    border-color: #007bff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    /*background: #0A2647;*/
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-icon i {
    font-size: 2rem;
    color: var(--gold-accent);
    animation: pulse 2s infinite;
}

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

.newsletter-text {
    flex: 1;
}

.newsletter-text h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.newsletter-text p {
    color: #94a3b8;
    font-size: 0.8rem;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    min-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(233, 183, 65, 0.7);
    background: rgba(255,255,255,0.12);
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form button {
    background: var(--gold-accent);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    color: #0A2647;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #f5c542;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 183, 65, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-wrapper {
        padding: 1.2rem;
    }
}

/* ============================================
   CORPORATE TOAST NOTIFICATION
   ============================================ */

.toast-container-corporate {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
    width: 100%;
    pointer-events: none;
}

.toast-corporate {
    pointer-events: auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #0c5db3;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toast-corporate.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-corporate.hide {
    transform: translateX(120%);
    opacity: 0;
}

/* ===== TOAST ICON ===== */
.toast-icon-corporate {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.toast-icon-corporate.success {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
}

.toast-icon-corporate.error {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    color: #c62828;
}

.toast-icon-corporate.warning {
    background: linear-gradient(135deg, #fff8e6, #ffecb3);
    color: #e65100;
}

.toast-icon-corporate.info {
    background: linear-gradient(135deg, #e8f0fe, #d4e4f7);
    color: #0c5db3;
}

/* ===== TOAST CONTENT ===== */
.toast-content-corporate {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toast-title-corporate {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0a2647;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.toast-title-corporate.success { color: #2e7d32; }
.toast-title-corporate.error { color: #c62828; }
.toast-title-corporate.warning { color: #e65100; }
.toast-title-corporate.info { color: #0c5db3; }

.toast-message-corporate {
    font-size: 0.9rem;
    color: #1a2940;
    line-height: 1.4;
    font-weight: 500;
}

/* ===== TOAST PROGRESS BAR ===== */
.toast-progress-corporate {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #0c5db3, #E9B741);
    border-radius: 0 2px 2px 0;
    animation: toastProgress linear forwards;
}

.toast-progress-corporate.success {
    background: linear-gradient(90deg, #00b894, #00a381);
}

.toast-progress-corporate.error {
    background: linear-gradient(90deg, #e76f51, #d63031);
}

.toast-progress-corporate.warning {
    background: linear-gradient(90deg, #E9B741, #fdcb6e);
}

.toast-progress-corporate.info {
    background: linear-gradient(90deg, #0c5db3, #0984e3);
}

@keyframes toastProgress {
    0% { width: 100%; }
    100% { width: 0%; }
}

/* ===== TOAST CLOSE BUTTON ===== */
.toast-close-corporate {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close-corporate:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #0a2647;
    transform: rotate(90deg);
}

/* ===== TOAST ANIMATIONS ===== */
@keyframes toastSlideIn {
    0% {
        transform: translateX(120%) scale(0.9);
        opacity: 0;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    0% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(120%) scale(0.9);
        opacity: 0;
    }
}

/* ===== TOAST TYPES - BORDER COLORS ===== */
.toast-corporate.success {
    border-left-color: #00b894;
}

.toast-corporate.error {
    border-left-color: #e76f51;
}

.toast-corporate.warning {
    border-left-color: #E9B741;
}

.toast-corporate.info {
    border-left-color: #0c5db3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .toast-container-corporate {
        top: 20px;
        right: 16px;
        left: 16px;
        max-width: 100%;
    }
    
    .toast-corporate {
        padding: 14px 18px;
        border-radius: 14px;
        gap: 12px;
    }
    
    .toast-icon-corporate {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .toast-title-corporate {
        font-size: 0.7rem;
    }
    
    .toast-message-corporate {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .toast-corporate {
        padding: 12px 14px;
        border-radius: 12px;
        gap: 10px;
    }
    
    .toast-icon-corporate {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .toast-message-corporate {
        font-size: 0.8rem;
    }
}

/* ============================================
   ANIMATED LOGIN BUTTON - CORPORATE STYLE
   ============================================ */

.login-btn-container {
    display: inline-block;
    position: relative;
    margin-left: 10px;
}

.btn-login-corporate {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #27dc2e, #004bec);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(12, 93, 179, 0.25);
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
}

.btn-login-corporate:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 35px rgba(12, 93, 179, 0.35);
    background: linear-gradient(135deg, #0a4a8f, #0c5db3);
    color: #ffffff;
    text-decoration: none;
}

.btn-login-corporate:active {
    transform: scale(0.95);
}

/* ===== LOGIN ICON ===== */
.login-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;   
}

.login-icon {
    font-size: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

/* Icon Animation - Bounce on Hover */
.btn-login-corporate:hover .login-icon {
    animation: loginIconBounce 0.8s ease;
}

@keyframes loginIconBounce {
    0% {
        transform: translateX(0) scale(1);
    }
    20% {
        transform: translateX(4px) scale(1.2);
    }
    40% {
        transform: translateX(-2px) scale(0.9);
    }
    60% {
        transform: translateX(3px) scale(1.1);
    }
    80% {
        transform: translateX(-1px) scale(0.95);
    }
    100% {
        transform: translateX(0) scale(1);
    }
}

/* ===== ICON RIPPLE EFFECT ===== */
.login-icon-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.btn-login-corporate:hover .login-icon-ripple {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
}

/* ===== SHIMMER EFFECT ===== */
.login-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    animation: shimmerSlide 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerSlide {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

/* ===== GLOW EFFECT ===== */
.login-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 183, 65, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

.btn-login-corporate:hover .login-glow {
    opacity: 1;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

/* ===== BORDER ANIMATION ===== */
.btn-login-corporate::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;
    background: linear-gradient(45deg, #0c5db3, #E9B741, #0c5db3, #E9B741);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderRotate 3s linear infinite;
}

.btn-login-corporate:hover::before {
    opacity: 1;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ===== PULSE ANIMATION (Idle State) ===== */
.btn-login-corporate.pulse {
    animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(12, 93, 179, 0.25);
    }
    50% {
        box-shadow: 0 4px 30px rgba(12, 93, 179, 0.45), 0 0 60px rgba(12, 93, 179, 0.08);
    }
}

/* ===== ICON FLOATING ANIMATION ===== */
.btn-login-corporate .login-icon {
    animation: loginIconFloat 3s ease-in-out infinite;
}

@keyframes loginIconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.btn-login-corporate:hover .login-icon {
    animation: loginIconBounce 0.8s ease;
}

@keyframes loginIconBounce {
    0% {
        transform: translateX(0) scale(1);
    }
    20% {
        transform: translateX(4px) scale(1.2);
    }
    40% {
        transform: translateX(-2px) scale(0.9);
    }
    60% {
        transform: translateX(3px) scale(1.1);
    }
    80% {
        transform: translateX(-1px) scale(0.95);
    }
    100% {
        transform: translateX(0) scale(1);
    }
}

/* ===== LOADING STATE ===== */
.btn-login-corporate.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-login-corporate.loading .login-text {
    display: none;
}

.btn-login-corporate.loading .login-icon {
    animation: loginSpin 0.8s linear infinite;
}

@keyframes loginSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== SUCCESS STATE ===== */
.btn-login-corporate.success {
    background: linear-gradient(135deg, #00b894, #00a381);
    box-shadow: 0 4px 20px rgba(0, 184, 148, 0.3);
}

.btn-login-corporate.success .login-icon {
    animation: successBounce 0.6s ease;
}

@keyframes successBounce {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.5);
    }
    50% {
        transform: scale(0.8);
    }
    70% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== GOLD VARIANT ===== */
.btn-login-corporate.gold {
    background: linear-gradient(135deg, #E9B741, #d4a02e);
    box-shadow: 0 4px 20px rgba(233, 183, 65, 0.3);
}

.btn-login-corporate.gold:hover {
    box-shadow: 0 8px 35px rgba(233, 183, 65, 0.4);
    background: linear-gradient(135deg, #d4a02e, #E9B741);
}

.btn-login-corporate.gold::before {
    background: linear-gradient(45deg, #E9B741, #0c5db3, #E9B741, #0c5db3);
}

/* ===== OUTLINE VARIANT ===== */
.btn-login-corporate.outline {
    background: transparent;
    color: #0c5db3;
    border: 2px solid #0c5db3;
    box-shadow: none;
}

.btn-login-corporate.outline:hover {
    background: linear-gradient(135deg, #0c5db3, #0a4a8f);
    color: #ffffff;
    box-shadow: 0 8px 35px rgba(12, 93, 179, 0.3);
}

.btn-login-corporate.outline .login-icon {
    color: #0c5db3;
}

.btn-login-corporate.outline:hover .login-icon {
    color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .btn-login-corporate {
        padding: 8px 18px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .login-icon-wrapper {
        width: 22px;
        height: 22px;
    }    
    .login-btn-container {
        display: inline-block;
        position: relative;
        margin-left: 10px;
        margin-top: 10px;
    }

    .login-icon {
        font-size: 0.85rem;
    }

    .login-text {
        font-size: 0.85rem;
    }

    .btn-gold {
        background: linear-gradient(135deg, #0A2647 0%, #1B3A5C 50%, #007bfd 100%);
        color: #fff;
        font-weight: 500;
        border-radius: 40px;
        padding: 0.4rem 1.2rem;
        transition: var(--transition-default);
        border: none;
        box-shadow: 0 6px 14px rgb(26 105 168);
        font-size: 0.85rem;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .btn-login-corporate {
        padding: 6px 14px;
        font-size: 0.8rem;
        gap: 6px;
        border-radius: 40px;
    }

    .login-icon-wrapper {
        width: 20px;
        height: 20px;
    }

    .login-icon {
        font-size: 0.75rem;
    }

    .login-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .btn-login-corporate {
        padding: 5px 12px;
        font-size: 0.75rem;
        gap: 5px;
        border-radius: 30px;
    }

    .login-icon-wrapper {
        width: 18px;
        height: 18px;
    }

    .login-icon {
        font-size: 0.7rem;
    }

    .login-text {
        font-size: 0.75rem;
    }
}

/* ============================================
   FEEDBACK MODAL - CORPORATE STYLE
   ============================================ */

.feedback-modal-content {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* ===== ANIMATED BACKGROUND ===== */
.feedback-modal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.feedback-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.feedback-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: feedbackFloat 10s ease-in-out infinite;
}

.feedback-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: #0c5db3;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.feedback-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: #E9B741;
    bottom: -100px;
    left: -100px;
    animation-delay: 2.5s;
}

.feedback-shape.shape-3 {
    width: 150px;
    height: 150px;
    background: #00b894;
    top: 50%;
    right: -50px;
    animation-delay: 5s;
}

@keyframes feedbackFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(20px, -30px) scale(1.1) rotate(120deg);
    }
    66% {
        transform: translate(-10px, 20px) scale(0.9) rotate(240deg);
    }
}

/* ===== CLOSE BUTTON ===== */
.feedback-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-close:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #0a2647;
    transform: rotate(90deg);
}

/* ===== ICON ===== */
.feedback-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.feedback-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f0fe, #d4e4f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c5db3;
    font-size: 1.8rem;
    position: relative;
    animation: iconPulse 2s ease-in-out infinite;
}

.feedback-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid rgba(12, 93, 179, 0.1);
    animation: iconRing 2s ease-in-out infinite;
}

/* ===== TITLE ===== */
.feedback-title {
    text-align: center;
    color: #0a2647;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.feedback-subtitle {
    text-align: center;
    color: #4a5a72;
    font-size: 0.95rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

/* ===== FORM FIELDS ===== */
.feedback-field-wrapper {
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.feedback-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a2940;
    margin-bottom: 6px;
}

.feedback-label i {
    color: #0c5db3;
    font-size: 0.85rem;
    width: 16px;
}

.feedback-label .required {
    color: #e76f51;
    font-weight: 700;
}

.feedback-label .optional {
    color: #94a3b8;
    font-weight: 400;
    font-size: 0.8rem;
}

.feedback-input-group {
    position: relative;
}

.feedback-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    z-index: 2;
}

.feedback-input-group:focus-within .feedback-input-icon {
    color: #0c5db3;
}

.feedback-input {
    width: 100%;
    padding: 13px 18px 13px 44px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1a2940;
    font-family: 'Inter', sans-serif;
}

.feedback-input:focus {
    border-color: #0c5db3;
    box-shadow: 0 0 0 4px rgba(12, 93, 179, 0.08);
    outline: none;
}

.feedback-textarea {
    width: 100%;
    padding: 13px 18px 13px 44px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1a2940;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    min-height: 100px;
}

.feedback-textarea:focus {
    border-color: #0c5db3;
    box-shadow: 0 0 0 4px rgba(12, 93, 179, 0.08);
    outline: none;
}

.feedback-textarea::placeholder {
    color: #b0bccd;
}

.feedback-input.is-valid,
.feedback-textarea.is-valid {
    border-color: #00b894;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2300b894' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.feedback-input.is-invalid,
.feedback-textarea.is-invalid {
    border-color: #e76f51;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23e76f51' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='15' y1='9' x2='9' y2='15'/%3E%3Cline x1='9' y1='9' x2='15' y2='15'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.feedback-input-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0c5db3, #E9B741);
    transition: all 0.4s ease;
    border-radius: 2px;
}

.feedback-input-group:focus-within .feedback-input-line {
    width: 100%;
    left: 0;
}

.feedback-validation {
    font-size: 0.85rem;
    margin-top: 6px;
    min-height: 20px;
}

.feedback-validation .text-success {
    color: #00b894 !important;
}

.feedback-validation .text-danger {
    color: #e76f51 !important;
}

/* ===== RATING STARS ===== */
.feedback-rating {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    font-size: 2rem;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: #E9B741;
    transform: scale(1.1);
}

.rating-stars label:hover {
    transform: scale(1.2);
}

.rating-text {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
    transition: all 0.3s ease;
}

.rating-text.active {
    color: #0c5db3;
}

/* ===== CAPTCHA ===== */
.feedback-captcha-wrapper {
    background: linear-gradient(135deg, #f8faff, #f0f4fc);
    border-radius: 14px;
    padding: 16px 18px;
    border: 1px solid #e8edf4;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.feedback-captcha-wrapper:focus-within {
    border-color: #0c5db3;
    box-shadow: 0 0 0 4px rgba(12, 93, 179, 0.06);
}

.feedback-captcha-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a2940;
    margin-bottom: 10px;
}

.feedback-captcha-label i {
    color: #0c5db3;
}

.feedback-captcha-label .required {
    color: #e76f51;
}

.feedback-captcha-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.feedback-captcha-display {
    position: relative;
    background: linear-gradient(135deg, #0a2647, #0c5db3);
    border-radius: 10px;
    padding: 10px 16px;
    min-width: 110px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(12, 93, 179, 0.2);
}

.feedback-captcha-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 6px;
    font-family: 'Courier New', monospace;
    z-index: 2;
    position: relative;
    animation: numberPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@keyframes numberPop {
    0% {
        transform: scale(0.5) rotate(-10deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.feedback-captcha-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.12;
}

.feedback-captcha-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    height: 1px;
    width: 100%;
}

.feedback-captcha-line.line-1 {
    top: 25%;
    transform: rotate(-3deg);
    animation: lineMove 8s linear infinite;
}

.feedback-captcha-line.line-2 {
    top: 50%;
    transform: rotate(2deg);
    animation: lineMove 6s linear infinite reverse;
}

.feedback-captcha-line.line-3 {
    top: 75%;
    transform: rotate(-2deg);
    animation: lineMove 10s linear infinite;
}

@keyframes lineMove {
    0% {
        transform: translateX(-100%) rotate(-3deg);
    }
    100% {
        transform: translateX(100%) rotate(-3deg);
    }
}

.feedback-captcha-input-group {
    flex: 1;
    display: flex;
    gap: 8px;
    align-items: center;
}

.feedback-captcha-input-wrapper {
    flex: 1;
    position: relative;
}

.feedback-captcha-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    z-index: 2;
}

.feedback-captcha-input-wrapper:focus-within .feedback-captcha-input-icon {
    color: #0c5db3;
}

.feedback-captcha-input {
    width: 100%;
    padding: 10px 12px 10px 34px;
    font-size: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #ffffff;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 2px;
    color: #1a2940;
    height: 44px;
}

.feedback-captcha-input::placeholder {
    color: #b0bccd;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.feedback-captcha-input:focus {
    border-color: #0c5db3;
    box-shadow: 0 0 0 3px rgba(12, 93, 179, 0.08);
    outline: none;
}

.feedback-captcha-input.is-valid {
    border-color: #00b894;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2300b894' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
    padding-right: 34px;
}

.feedback-captcha-input.is-invalid {
    border-color: #e76f51;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23e76f51' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='15' y1='9' x2='9' y2='15'/%3E%3Cline x1='9' y1='9' x2='15' y2='15'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
    padding-right: 34px;
}

.feedback-captcha-refresh {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #f8faff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    color: #4a5a72;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feedback-captcha-refresh:hover {
    background: #0c5db3;
    border-color: #0c5db3;
    color: #ffffff;
    transform: rotate(60deg);
    box-shadow: 0 4px 12px rgba(12, 93, 179, 0.15);
}

.feedback-captcha-refresh:active {
    transform: scale(0.9) rotate(60deg);
}

.feedback-captcha-refresh.loading i {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feedback-captcha-feedback {
    margin-top: 6px;
    font-size: 0.8rem;
    min-height: 18px;
    padding-left: 2px;
}

.feedback-captcha-feedback .text-success {
    color: #00b894 !important;
    display: flex;
    align-items: center;
    gap: 4px;
}

.feedback-captcha-feedback .text-danger {
    color: #e76f51 !important;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== ALERT ===== */
.feedback-alert-container {
    margin-bottom: 16px;
}

.feedback-alert {
    border-radius: 12px;
    padding: 14px 18px;
    border: none;
    position: relative;
    z-index: 1;
}

.feedback-alert-danger {
    background: linear-gradient(135deg, #fff5f5, #ffebee);
    border-left: 4px solid #e76f51;
    color: #c62828;
}

.feedback-alert-success {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-left: 4px solid #00b894;
    color: #1b5e20;
}

/* ===== SUBMIT BUTTON ===== */
.feedback-btn-submit {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #0c5db3, #0a4a8f);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(12, 93, 179, 0.25);
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.feedback-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 93, 179, 0.35);
}

.feedback-btn-submit:active {
    transform: scale(0.95);
}

.feedback-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.feedback-btn-submit .btn-loading {
    display: none;
}

.feedback-btn-submit.loading .btn-text {
    display: none;
}

.feedback-btn-submit.loading .btn-loading {
    display: inline-flex;
    align-items: center;
}

/* ===== SUCCESS MODAL ===== */
.feedback-success-modal .modal-content {
    border-radius: 24px;
    border: none;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.feedback-success-modal .modal-body {
    padding: 40px;
}

.feedback-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b894, #00a381);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 184, 148, 0.3);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(0, 184, 148, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 60px rgba(0, 184, 148, 0.5);
    }
}

.feedback-success-title {
    color: #0a2647;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feedback-success-message {
    color: #4a5a72;
    font-size: 1rem;
    margin-bottom: 24px;
}

.feedback-btn-success {
    background: linear-gradient(135deg, #0c5db3, #0a4a8f);
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.feedback-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 93, 179, 0.3);
    color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-body {
        padding: 30px 20px !important;
    }
    
    .feedback-title {
        font-size: 1.3rem;
    }
    
    .feedback-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feedback-captcha-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .feedback-captcha-display {
        width: 100%;
        min-width: unset;
        height: 40px;
    }
    
    .feedback-captcha-number {
        font-size: 1.3rem;
        letter-spacing: 4px;
    }
    
    .feedback-captcha-input-group {
        width: 100%;
    }
    
    .feedback-captcha-input {
        height: 40px;
        font-size: 0.85rem;
        padding: 8px 10px 8px 32px;
    }
    
    .feedback-captcha-refresh {
        width: 40px;
        height: 40px;
    }
    
    .rating-stars label {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .modal-body {
        padding: 24px 16px !important;
    }
    
    .feedback-title {
        font-size: 1.1rem;
    }
    
    .feedback-subtitle {
        font-size: 0.85rem;
    }
    
    .feedback-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feedback-input,
    .feedback-textarea {
        font-size: 0.85rem;
        padding: 11px 14px 11px 38px;
    }
    
    .feedback-captcha-wrapper {
        padding: 12px 12px;
        border-radius: 10px;
    }
    
    .feedback-captcha-display {
        height: 36px;
        padding: 6px 10px;
        border-radius: 8px;
    }
    
    .feedback-captcha-number {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }
    
    .feedback-captcha-input {
        height: 36px;
        font-size: 0.8rem;
        padding: 6px 8px 6px 28px;
        border-radius: 8px;
    }
    
    .feedback-captcha-refresh {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
    
    .rating-stars label {
        font-size: 1.3rem;
    }
    
    .feedback-btn-submit {
        font-size: 0.9rem;
        padding: 12px 16px;
    }
}

/* ============================================
   RATING STARS - CORPORATE STYLE
   ============================================ */

.feedback-rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-stars-container {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    font-size: 2rem;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1;
    padding: 0 2px;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: #E9B741;
    transform: scale(1.08);
}

.rating-stars label:hover {
    transform: scale(1.15);
}

.rating-stars input:checked ~ label {
    animation: starPop 0.3s ease;
}

@keyframes starPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1.08);
    }
}

.rating-text {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 120px;
}

.rating-text.active {
    color: #0c5db3;
}

/* ===== RATING VALIDATION ===== */
.feedback-rating.is-invalid .rating-text {
    color: #e76f51;
}

.feedback-rating.is-invalid .rating-stars label {
    color: #f5c6cb;
}

.feedback-rating.is-invalid .rating-stars input:checked ~ label {
    color: #e76f51;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .rating-stars-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .rating-stars label {
        font-size: 1.6rem;
    }
    
    .rating-text {
        font-size: 0.85rem;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .rating-stars label {
        font-size: 1.3rem;
        padding: 0 1px;
    }
    
    .rating-stars {
        gap: 2px;
    }
}

/* Add this to your styles for logout confirmation */
.logout-confirm-modal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.logout-confirm-modal .modal-body {
    padding: 30px;
    text-align: center;
}

.logout-confirm-modal .logout-icon {
    font-size: 4rem;
    color: #e76f51;
    margin-bottom: 15px;
}

.logout-confirm-modal .btn-logout-confirm {
    background: linear-gradient(135deg, #e76f51, #d63031);
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.logout-confirm-modal .btn-logout-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.3);
}

.navbar-nav .nav-link {
    color:#000 !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #205295;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link.active {
    color: #205295 !important;
}

/* ============================================
   USER DROPDOWN - CORPORATE STYLE
   ============================================ */

.user-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

/* ===== DROPDOWN BUTTON ===== */
.user-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgb(233 183 65);
    border-radius: 50px;
    color: #000;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(4px);
}

.user-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.user-dropdown-btn:active {
    transform: scale(0.95);
}

/* ===== AVATAR ===== */
.user-dropdown-btn .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E9B741, #d4a02e);
    color: #0a2647;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(233, 183, 65, 0.3);
    transition: all 0.3s ease;
}

.user-dropdown-btn:hover .avatar {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(233, 183, 65, 0.4);
}

/* ===== USER NAME ===== */
.user-dropdown-btn .user-name {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;   
}

/* ===== DROPDOWN ARROW ===== */
.user-dropdown-btn .fa-chevron-down {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-left: 2px;
}

.user-dropdown:hover .user-dropdown-btn .fa-chevron-down {
    transform: rotate(180deg);
}

/* ===== DROPDOWN MENU ===== */
.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    border: 1px solid #e8edf4;
    min-width: 240px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transform-origin: top right;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1001;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.98);
}

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

/* ===== DROPDOWN TRIANGLE ===== */
.user-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.04));
}

/* ===== USER INFO SECTION ===== */
.user-dropdown-menu .user-info {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f4fc;
    margin-bottom: 4px;
}

.user-dropdown-menu .user-info .name {
    font-weight: 600;
    color: #0a2647;
    font-size: 0.9rem;
    line-height: 1.4;
}

.user-dropdown-menu .user-info .email {
    color: #94a3b8;
    font-size: 0.75rem;
    word-break: break-all;
    margin-top: 2px;
}

/* ===== MENU ITEMS ===== */
.user-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #4a5a72;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.user-dropdown-menu a:hover {
    background: #f8faff;
    color: #0c5db3;
}

.user-dropdown-menu a i {
    width: 20px;
    color: #94a3b8;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}

.user-dropdown-menu a:hover i {
    color: #0c5db3;
    transform: translateX(2px);
}

/* ===== DIVIDER ===== */
.user-dropdown-menu .divider {
    height: 1px;
    background: #f0f4fc;
    margin: 4px 8px;
}

/* ===== LOGOUT LINK ===== */
.user-dropdown-menu .logout-link {
    color: #e76f51;
}

.user-dropdown-menu .logout-link:hover {
    background: #fff5f5;
    color: #c62828;
}

.user-dropdown-menu .logout-link i {
    color: #e76f51;
}

.user-dropdown-menu .logout-link:hover i {
    color: #c62828;
}

/* ===== MENU BADGE ===== */
.user-dropdown-menu .menu-badge {
    margin-left: auto;
    background: #e8f0fe;
    color: #0c5db3;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.user-dropdown-menu a:hover .menu-badge {
    background: #d4e4f7;
}

/* ===== ACTIVE STATE ===== */
.user-dropdown-menu a.active {
    background: #e8f0fe;
    color: #0c5db3;
}

.user-dropdown-menu a.active i {
    color: #0c5db3;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes dropdownSlide {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.user-dropdown-menu.show {
    animation: dropdownSlide 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .user-dropdown {
        width: 100%;
        margin-left: 0;
    }

    .user-dropdown-btn {
        width: 100%;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.05);
        padding: 8px 16px;
    }

    .user-dropdown-btn .user-name {
        max-width: none;
        flex: 1;
    }

    .user-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 8px;
        display: none;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 6px;
    }

    .user-dropdown-menu::before {
        display: none;
    }

    .user-dropdown-menu .user-info .name {
        color: #ffffff;
    }

    .user-dropdown-menu .user-info .email {
        color: rgba(255, 255, 255, 0.6);
    }

    .user-dropdown-menu a {
        color: rgba(255, 255, 255, 0.8);
        border-radius: 8px;
        padding: 10px 14px;
    }

    .user-dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #E9B741;
    }

    .user-dropdown-menu a i {
        color: rgba(255, 255, 255, 0.5);
    }

    .user-dropdown-menu a:hover i {
        color: #E9B741;
    }

    .user-dropdown-menu .divider {
        background: rgba(255, 255, 255, 0.1);
    }

    .user-dropdown-menu .logout-link {
        color: #e76f51;
    }

    .user-dropdown-menu .logout-link:hover {
        background: rgba(231, 111, 81, 0.15);
        color: #e76f51;
    }

    .user-dropdown.open .user-dropdown-menu {
        display: block;
    }

    .user-dropdown-menu .menu-badge {
        background: rgba(255, 255, 255, 0.1);
        color: #E9B741;
    }
}

@media (max-width: 768px) {
    .user-dropdown-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .user-dropdown-btn .avatar {
        width: 26px;
        height: 26px;
        font-size: 0.65rem;
    }

    .user-dropdown-menu {
        min-width: unset;
        width: 100%;
    }
    .brand-logo {
        height: 50px;
    }
    
    .user-dropdown-menu a i {       
        color: #94a3b8;
        font-size: 0.9rem;
        text-align: center;
        transition: all 0.3s ease;
    }
    
}

@media (max-width: 480px) {
    .user-dropdown-btn {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .user-dropdown-btn .avatar {
        width: 22px;
        height: 22px;
        font-size: 0.55rem;
    }

    .user-dropdown-menu a {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    .brand-logo {
        height: 40px;
    }
    .user-dropdown-menu a i {       
        color: #94a3b8;
        font-size: 0.9rem;
        text-align: center;
        transition: all 0.3s ease;
    }
    
}

/* ============================================
   NAV LINK UNDERLINE - DESKTOP ONLY
   ============================================ */

/* Default styles for all devices */
.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    position: relative;
}

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

/* ===== UNDERLINE EFFECT - DESKTOP ONLY ===== */
@media (min-width: 992px) {
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 50%;
        width: 0;
        height: 2px;
        background: #205295;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 60%;
    }

    .navbar-nav .nav-link.active {
        color: #205295 !important;
    }
}

/* ===== MOBILE VIEW - NO UNDERLINE ===== */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 12px 16px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link::after {
        display: none !important;
    }

    .navbar-nav .nav-link.active {
        color: #205295 !important;
        background: rgba(32, 82, 149, 0.05);
        border-radius: 8px;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(32, 82, 149, 0.03);
        border-radius: 8px;
    }
}

/* ===== TOUCH DEVICES - DISABLE HOVER EFFECTS ===== */
@media (hover: none) {
    .navbar-nav .nav-link::after {
        display: none !important;
    }

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

    .navbar-nav .nav-link.active {
        color: #205295 !important;
    }
}

/* ============================================
   MOBILE MENU - FIX
   ============================================ */

/* Ensure navbar toggler is visible and clickable */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3) !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    z-index: 1050 !important;
    position: relative !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(233, 183, 65, 0.3) !important;
}

.navbar-toggler-icon {
    width: 28px !important;
    height: 28px !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    background-size: 100% 100% !important;
    transition: all 0.3s ease !important;
}

/* Mobile menu collapse */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff !important;
        padding: 16px 20px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-top: none;
        max-height: 80vh;
        overflow-y: auto;
        z-index: 1040;
    }

    .navbar-collapse .navbar-nav {
        padding: 0 !important;
        margin: 0 !important;
        border-top: none !important;
    }

    .navbar-collapse .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

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

    .navbar-collapse .navbar-nav .nav-link {
        color: #000 !important;
        padding: 12px 0 !important;
        font-size: 0.95rem !important;
        border-bottom: none !important;
    }

    .navbar-collapse .navbar-nav .nav-link:hover {
        color: #0c5db3 !important;
        background: transparent !important;
    }

    .navbar-collapse .navbar-nav .nav-link.active {
        color: #0c5db3 !important;
        background: transparent !important;
    }

    .navbar-collapse .navbar-nav .btn-gold {
        width: 100% !important;
        justify-content: center !important;
        margin: 8px 0 !important;
    }

    .navbar-collapse .navbar-nav .login-btn-container {
        width: 100% !important;
    }

    .navbar-collapse .navbar-nav .btn-login-corporate {
        width: 100% !important;
        justify-content: center !important;
    }

    .navbar-collapse .user-dropdown {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .navbar-collapse .user-dropdown-btn {
        width: 100% !important;
        justify-content: space-between !important;
        background: #f5f5f5 !important;
        border: 1px solid #e8edf4 !important;
        color: #000 !important;
    }

    .navbar-collapse .user-dropdown-btn .user-name {
        color: #000 !important;
    }

    .navbar-collapse .user-dropdown-btn .avatar {
        background: linear-gradient(135deg, #0c5db3, #0a4a8f) !important;
        color: #ffffff !important;
    }

    .navbar-collapse .user-dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: 1px solid #e8edf4 !important;
        margin-top: 8px !important;
        display: none !important;
        background: #f8faff !important;
        border-radius: 12px !important;
        padding: 8px !important;
    }

    .navbar-collapse .user-dropdown.open .user-dropdown-menu {
        display: block !important;
    }

    .navbar-collapse .user-dropdown-menu .user-info .name {
        color: #0a2647 !important;
    }

    .navbar-collapse .user-dropdown-menu .user-info .email {
        color: #94a3b8 !important;
    }

    .navbar-collapse .user-dropdown-menu a {
        color: #4a5a72 !important;
        padding: 10px 14px !important;
    }

    .navbar-collapse .user-dropdown-menu a:hover {
        background: #f0f4fc !important;
        color: #0c5db3 !important;
    }

    .navbar-collapse .user-dropdown-menu .logout-link {
        color: #e76f51 !important;
    }

    .navbar-collapse .user-dropdown-menu .logout-link:hover {
        background: #fff5f5 !important;
        color: #c62828 !important;
    }
}

@media (max-width: 576px) {
    .navbar-collapse {
        padding: 12px 16px !important;
    }

    .navbar-collapse .navbar-nav .nav-link {
        font-size: 0.85rem !important;
        padding: 10px 0 !important;
    }

    .navbar-toggler {
        padding: 6px 10px !important;
    }

    .navbar-toggler-icon {
        width: 22px !important;
        height: 22px !important;
    }
}

/* ============================================
   SIDEBAR - MOBILE RESPONSIVE
   ============================================ */

/* ===== SIDEBAR BASE STYLES ===== */
.dashboard-sidebar {
    width: var(--sidebar-width);
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 0;
    box-shadow: var(--card-shadow);
    border: 1px solid #e8edf4;
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* ===== USER CARD ===== */
.dashboard-sidebar .user-card {
    text-align: center;
    padding: 0 20px 20px;
    border-bottom: 1px solid #e8edf4;
}

.dashboard-sidebar .user-card .avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c5db3, #0a4a8f);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 12px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(12, 93, 179, 0.25);
}

.dashboard-sidebar .user-card h5 {
    color: #0a2647;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.dashboard-sidebar .user-card .student-id {
    color: #94a3b8;
    font-size: 0.75rem;
}

/* ===== SIDEBAR MENU ===== */
.dashboard-sidebar .sidebar-menu {
    list-style: none;
    padding: 16px 12px;
    margin: 0;
}

.dashboard-sidebar .sidebar-menu li {
    margin-bottom: 2px;
}

.dashboard-sidebar .sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #4a5a72;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dashboard-sidebar .sidebar-menu li a:hover,
.dashboard-sidebar .sidebar-menu li a.active {
    background: #f8faff;
    color: #0c5db3;
}

.dashboard-sidebar .sidebar-menu li a i {
    width: 20px;
    color: #94a3b8;
    font-size: 1rem;
    text-align: center;
}

.dashboard-sidebar .sidebar-menu li a:hover i,
.dashboard-sidebar .sidebar-menu li a.active i {
    color: #0c5db3;
}

.dashboard-sidebar .sidebar-menu .logout-link {
    margin-top: 12px;
    border-top: 1px solid #e8edf4;
    padding-top: 12px;
}

.dashboard-sidebar .sidebar-menu .logout-link a {
    color: #e76f51;
}

.dashboard-sidebar .sidebar-menu .logout-link a i {
    color: #e76f51;
}

.dashboard-sidebar .sidebar-menu .logout-link a:hover {
    background: #fff5f5;
    color: #c62828;
}

/* ============================================
   SIDEBAR - TABLET & MOBILE RESPONSIVE
   ============================================ */

/* ===== TABLET - Horizontal Menu ===== */
@media (max-width: 992px) {
    .dashboard-sidebar {
        width: 100%;
        position: static;
        max-height: none;
        overflow-y: visible;
        border-radius: 16px;
        padding: 16px 0;
    }

    /* User Card - Horizontal layout */
    .dashboard-sidebar .user-card {
        padding: 0 16px 16px;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        flex-wrap: wrap;
    }

    .dashboard-sidebar .user-card .avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0;
        flex-shrink: 0;
    }

    .dashboard-sidebar .user-card h5 {
        font-size: 0.95rem;
        margin-bottom: 0;
    }

    .dashboard-sidebar .user-card .student-id {
        font-size: 0.7rem;
    }

    /* Menu - Horizontal layout */
    .dashboard-sidebar .sidebar-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        padding: 8px 12px;
        justify-content: flex-start;
    }

    .dashboard-sidebar .sidebar-menu li {
        flex: 1 1 auto;
        min-width: auto;
        margin-bottom: 0;
    }

    .dashboard-sidebar .sidebar-menu li a {
        padding: 8px 14px;
        font-size: 0.85rem;
        border-radius: 8px;
        justify-content: center;
        white-space: nowrap;
    }

    .dashboard-sidebar .sidebar-menu li a i {
        font-size: 0.9rem;
        margin-right: 6px;
    }

    /* Logout link - full width */
    .dashboard-sidebar .sidebar-menu .logout-link {
        flex: 0 0 100%;
        margin-top: 6px;
        padding-top: 6px;
        border-top: 1px solid #e8edf4;
    }

    .dashboard-sidebar .sidebar-menu .logout-link a {
        justify-content: center;
    }
}

/* ===== MOBILE - 3 Items Per Row ===== */
@media (max-width: 768px) {
    .dashboard-sidebar {
        padding: 12px 0;
        border-radius: 14px;
    }

    .dashboard-sidebar .user-card {
        padding: 0 12px 12px;
        gap: 12px;
    }

    .dashboard-sidebar .user-card .avatar {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .dashboard-sidebar .user-card h5 {
        font-size: 0.85rem;
    }

    .dashboard-sidebar .user-card .student-id {
        font-size: 0.65rem;
    }

    /* 3 items per row on mobile */
    .dashboard-sidebar .sidebar-menu {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        padding: 6px 10px;
    }

    .dashboard-sidebar .sidebar-menu li {
        flex: none;
        width: 100%;
    }

    .dashboard-sidebar .sidebar-menu li a {
        padding: 8px 6px;
        font-size: 0.7rem;
        border-radius: 8px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 4px;
        white-space: normal;
        word-break: break-word;
        min-height: 50px;
    }

    .dashboard-sidebar .sidebar-menu li a i {
        font-size: 1rem;
        margin-right: 0;
        width: auto;
    }

    .dashboard-sidebar .sidebar-menu li a span {
        font-size: 0.6rem;
        line-height: 1.2;
    }

    /* Logout link - full width on mobile */
    .dashboard-sidebar .sidebar-menu .logout-link {
        grid-column: 1 / -1;
        margin-top: 4px;
        padding-top: 6px;
        border-top: 1px solid #e8edf4;
    }

    .dashboard-sidebar .sidebar-menu .logout-link a {
        flex-direction: row;
        gap: 8px;
        min-height: auto;
        padding: 8px 12px;
    }

    .dashboard-sidebar .sidebar-menu .logout-link a i {
        font-size: 0.9rem;
    }

    .dashboard-sidebar .sidebar-menu .logout-link a span {
        font-size: 0.8rem;
    }
}

/* ===== VERY SMALL MOBILE - 2 Items Per Row ===== */
@media (max-width: 480px) {
    .dashboard-sidebar .sidebar-menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
        padding: 4px 8px;
    }

    .dashboard-sidebar .sidebar-menu li a {
        padding: 6px 4px;
        font-size: 0.65rem;
        min-height: 44px;
        border-radius: 6px;
    }

    .dashboard-sidebar .sidebar-menu li a i {
        font-size: 0.85rem;
    }

    .dashboard-sidebar .sidebar-menu li a span {
        font-size: 0.55rem;
    }

    .dashboard-sidebar .sidebar-menu .logout-link {
        grid-column: 1 / -1;
    }

    .dashboard-sidebar .user-card .avatar {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .dashboard-sidebar .user-card h5 {
        font-size: 0.75rem;
    }

    .dashboard-sidebar .user-card .student-id {
        font-size: 0.55rem;
    }
}

/* ===== EXTRA SMALL - 2 Items with smaller text ===== */
@media (max-width: 360px) {
    .dashboard-sidebar .sidebar-menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
        padding: 4px 6px;
    }

    .dashboard-sidebar .sidebar-menu li a {
        padding: 5px 3px;
        font-size: 0.55rem;
        min-height: 38px;
        border-radius: 4px;
    }

    .dashboard-sidebar .sidebar-menu li a i {
        font-size: 0.7rem;
    }

    .dashboard-sidebar .sidebar-menu li a span {
        font-size: 0.5rem;
    }
}

/* ============================================
   IDLE SESSION TIMEOUT MODAL - CSS FIX
   ============================================ */

/* Make sure modal is on top */
.modal {
    z-index: 99999 !important;
}

.modal-backdrop {
    z-index: 99998 !important;
}

.idle-modal-content {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

/* ===== ANIMATED BACKGROUND ===== */
.idle-modal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.idle-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.idle-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: idleFloat 10s ease-in-out infinite;
}

.idle-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: #0c5db3;
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.idle-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: #E9B741;
    bottom: -100px;
    left: -100px;
    animation-delay: 2.5s;
}

.idle-shape.shape-3 {
    width: 150px;
    height: 150px;
    background: #e76f51;
    top: 50%;
    right: -50px;
    animation-delay: 5s;
}

@keyframes idleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(20px, -30px) scale(1.1) rotate(120deg);
    }
    66% {
        transform: translate(-10px, 20px) scale(0.9) rotate(240deg);
    }
}

/* ===== TIMER RING ===== */
.idle-timer-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    z-index: 1;
}

.idle-ring-svg {
    transform: rotate(-90deg);
    width: 120px;
    height: 120px;
}

.idle-ring-bg {
    stroke: #e8edf4;
    stroke-width: 6;
}

.idle-ring-progress {
    stroke: #00b894;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.5s ease, stroke 0.5s ease;
}

.idle-timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.idle-timer-text span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a2647;
    line-height: 1;
}

.idle-timer-text small {
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== ICON ===== */
.idle-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.idle-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff8e6, #ffecb3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E9B741;
    font-size: 2rem;
    position: relative;
    animation: idleIconPulse 2s ease-in-out infinite;
}

.idle-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid rgba(233, 183, 65, 0.15);
    animation: idleIconRing 2s ease-in-out infinite;
}

@keyframes idleIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes idleIconRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* ===== TITLE ===== */
.idle-title {
    text-align: center;
    color: #0a2647;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.idle-subtitle {
    text-align: center;
    color: #4a5a72;
    font-size: 1rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.idle-subtitle strong {
    color: #e76f51;
}

/* ===== ACTIONS ===== */
.idle-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.idle-btn-stay {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #0c5db3, #0a4a8f);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(12, 93, 179, 0.25);
}

.idle-btn-stay:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(12, 93, 179, 0.35);
    color: #ffffff;
}

.idle-btn-stay:active {
    transform: scale(0.95);
}

.idle-btn-logout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: #e76f51;
    border: 2px solid #e76f51;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.idle-btn-logout:hover {
    background: #e76f51;
    color: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.2);
}

.idle-btn-logout:active {
    transform: scale(0.95);
}

/* ===== SHORTCUT ===== */
.idle-shortcut {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e8edf4;
    font-size: 0.75rem;
    color: #94a3b8;
    position: relative;
    z-index: 1;
}

.idle-shortcut i {
    color: #0c5db3;
}

.idle-shortcut kbd {
    background: #f0f4fc;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #0a2647;
    border: 1px solid #e2e8f0;
}

/* ===== MODAL ANIMATION ===== */
.modal.fade .modal-dialog {
    transform: scale(0.9) translateY(-30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.fade.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-body {
        padding: 30px 20px !important;
    }
    
    .idle-title {
        font-size: 1.2rem;
    }
    
    .idle-subtitle {
        font-size: 0.9rem;
    }
    
    .idle-timer-ring {
        width: 100px;
        height: 100px;
    }
    
    .idle-ring-svg {
        width: 100px;
        height: 100px;
    }
    
    .idle-timer-text span {
        font-size: 2rem;
    }
    
    .idle-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .idle-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .idle-btn-stay,
    .idle-btn-logout {
        width: 100%;
        justify-content: center;
    }
    
    .idle-shortcut {
        font-size: 0.7rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .modal-body {
        padding: 24px 16px !important;
    }
    
    .idle-title {
        font-size: 1rem;
    }
    
    .idle-subtitle {
        font-size: 0.85rem;
    }
    
    .idle-timer-ring {
        width: 80px;
        height: 80px;
    }
    
    .idle-ring-svg {
        width: 80px;
        height: 80px;
    }
    
    .idle-timer-text span {
        font-size: 1.6rem;
    }
    
    .idle-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
.footer-comp-brand{
    letter-spacing: 1px;
}

.footer-bottom a.footer-comp-brand:hover{
    color: #E9B741 !important;
}