:root {
            --primary-blue: #0b4f8c;    /* Lanexang Corporate Blue */
            --primary-dark: #07355e;    /* Dark Navy Blue */
            --primary-light: #e6f0fa;   /* Very Light Blue */
            --accent-yellow: #f1b318;   /* Lanexang Brand Yellow */
            --accent-hover: #d99b04;    /* Darker Yellow */
            --white: #ffffff;
            --gray-light: #f8fafc;      /* Background Light Gray */
            --gray-border: #e2e8f0;    /* Light Gray Border */
            --text-dark: #0f172a;       /* Dark text */
            --text-muted: #64748b;      /* Muted Gray text */
            --text-light: #f8fafc;      /* Light text */
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 8px 20px rgba(11, 79, 140, 0.08);
            --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.08);
            
            /* Animations */
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --transition-speed: 0.4s;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        *, input::placeholder, textarea::placeholder {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans Lao', 'Inter', sans-serif;
        }

        body {
            background-color: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--primary-dark);
            color: var(--text-light);
            font-size: 0.85rem;
            padding: 0.5rem 2rem;
            border-bottom: 2px solid var(--accent-yellow);
        }

        .top-bar-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-contact-info {
            display: flex;
            gap: 1.5rem;
        }

        .top-contact-info a {
            color: var(--text-light);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: color 0.3s ease;
        }

        .top-contact-info a:hover {
            color: var(--accent-yellow);
        }

        /* Header / Navigation */
        header {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--gray-border);
            box-shadow: var(--shadow-sm);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 0.2rem 0;
            box-shadow: var(--shadow-md);
            background: rgba(255, 255, 255, 0.98);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo img {
            height: 75px;
            display: block;
            width: auto;
            transition: transform 0.3s var(--ease-out-expo);
        }

        .logo:hover img {
            transform: scale(1.03);
        }

        nav {
            display: flex;
            gap: 1.25rem;
            align-items: center;
        }

        nav a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            position: relative;
            padding-bottom: 0.25rem;
            transition: color 0.3s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-yellow);
            transition: width 0.3s var(--ease-out-expo);
        }

        nav a:hover::after, nav a.active::after, .dropdown:hover .dropbtn::after, nav .dropdown.active .dropbtn::after {
            width: 100%;
        }

        nav a:hover, nav a.active, .dropdown:hover .dropbtn, nav .dropdown.active .dropbtn {
            color: var(--primary-blue);
        }

        /* Dropdown Menu Container */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        /* Dropdown content box */
        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 250px;
            box-shadow: var(--shadow-lg);
            border-radius: 8px;
            border: 1px solid var(--gray-border);
            padding: 0.5rem 0;
            z-index: 1001;
            transform: translateY(10px);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        }

        /* Links inside dropdown */
        nav .dropdown-content a {
            color: var(--text-dark);
            padding: 0.75rem 1.25rem;
            text-decoration: none;
            display: block;
            font-weight: 500;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            transition: background 0.2s, color 0.2s;
            text-align: left;
            white-space: nowrap;
        }

        /* Remove underline animation inside dropdown content links */
        nav .dropdown-content a::after {
            display: none;
        }

        /* Hover & active states for links inside dropdown */
        nav .dropdown-content a:hover, nav .dropdown-content a.active {
            background-color: var(--primary-light);
            color: var(--primary-blue);
        }

        /* Hover trigger for showing dropdown content */
        .dropdown:hover .dropdown-content {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            white-space: nowrap;
        }
.header-actions .btn {
            white-space: nowrap;
        }

        .hotline {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #e53e3e;
            font-weight: 700;
            font-size: 1.35rem;
            transition: transform 0.3s ease;
            white-space: nowrap;
        }

        .hotline:hover {
            transform: scale(1.05);
        }

        .hotline span {
            color: var(--primary-blue);
            font-size: 0.95rem;
            font-weight: 600;
        }

        /* Buttons with Shine Overlay effect */
        .btn {
            background-color: var(--accent-yellow);
            color: var(--primary-dark);
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            font-weight: 700;
            text-decoration: none;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            display: inline-block;
            transition: all 0.3s var(--ease-out-expo);
            box-shadow: 0 4px 6px rgba(241, 179, 24, 0.15);
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 20%;
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
            transform: skewX(-25deg);
            transition: 0.75s;
        }

        .btn:hover::after {
            left: 120%;
        }

        .btn:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(241, 179, 24, 0.25);
        }

        .btn-blue {
            background-color: var(--primary-blue);
            color: var(--white);
            box-shadow: 0 4px 6px rgba(11, 79, 140, 0.15);
        }

        .btn-blue:hover {
            background-color: var(--primary-dark);
            box-shadow: 0 8px 16px rgba(11, 79, 140, 0.25);
        }

        .btn-yellow {
            background-color: var(--accent-yellow);
            color: var(--primary-dark);
            box-shadow: 0 4px 10px rgba(241, 179, 24, 0.3);
            border: 2px solid var(--accent-yellow);
        }

        .btn-yellow:hover {
            background-color: var(--accent-hover);
            border-color: var(--accent-hover);
            color: var(--primary-dark);
            box-shadow: 0 8px 20px rgba(241, 179, 24, 0.4);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            box-shadow: none;
        }

        .btn-outline:hover {
            background-color: var(--primary-light);
            color: var(--primary-dark);
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 8rem 2rem;
            background: url('images/Background.png') no-repeat right bottom;
            background-size: cover;
            border-bottom: 2px solid var(--accent-yellow);
            display: flex;
            align-items: center;
            min-height: 580px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.4) 45%, rgba(255, 255, 255, 0.0) 100%);
            z-index: 1;
        }

        .hero-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-content h1 span {
            color: var(--primary-blue);
        }

        .hero-content h1 span.slogan-en {
            display: block;
            font-size: 2.25rem;
            color: var(--accent-yellow);
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            margin-top: 0.5rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .hero-content p {
            color: var(--text-dark);
            font-weight: 500;
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        .hero-badge {
            background: var(--primary-light);
            color: var(--primary-blue);
            border: 1px solid rgba(11, 79, 140, 0.15);
            padding: 0.4rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 1.25rem;
            transform: translateY(0);
            animation: bounce 3s infinite ease-in-out;
        }

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

        /* Hero Image/Promo Panel */
        .hero-image-panel {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            padding: 3rem 2.5rem;
            box-shadow: var(--shadow-lg);
            text-align: center;
            border-top: 5px solid var(--accent-yellow);
            transition: all 0.5s var(--ease-out-expo);
        }

        .hero-image-panel:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 20px 40px rgba(11, 79, 140, 0.12);
        }

        .shield-icon {
            font-size: 4rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            animation: pulse-shield 3s infinite ease-in-out;
            display: inline-block;
        }

        @keyframes pulse-shield {
            0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(11,79,140,0)); }
            50% { transform: scale(1.08); filter: drop-shadow(0 4px 10px rgba(11,79,140,0.2)); }
        }

        .hero-image-panel h2 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 0.75rem;
        }

        .hero-image-panel p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

        /* Products Section */
        .section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            scroll-margin-top: 100px; /* Offset for sticky header when scrolling */
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 0.75rem;
        }

        .section-header h2 span {
            color: var(--primary-blue);
            position: relative;
        }

        .section-header h2 span::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 10%;
            width: 80%;
            height: 4px;
            background-color: var(--accent-yellow);
            border-radius: 2px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .product-card {
            background: var(--white);
            border: 1px solid var(--gray-border);
            border-radius: 16px;
            padding: 3rem 2.25rem;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            will-change: transform, box-shadow;
            transition: border-color var(--transition-speed) var(--ease-out-expo), 
                        box-shadow var(--transition-speed) var(--ease-out-expo);
            box-shadow: var(--shadow-sm);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: transparent;
            transition: background-color 0.3s ease;
            z-index: 10;
        }

        .product-card:hover {
            border-color: var(--primary-blue);
            box-shadow: 0 20px 40px rgba(11, 79, 140, 0.12), 0 1px 3px rgba(11, 79, 140, 0.04);
        }

        .product-card:hover::before {
            background-color: var(--accent-yellow);
        }

        .product-icon {
            font-size: 3rem;
            color: var(--primary-blue);
            transition: transform 0.5s var(--ease-out-expo);
            transform: translateZ(30px);
            display: inline-block;
            width: fit-content;
        }

        @keyframes float-icon {
            0%, 100% { transform: translateZ(35px) translateY(0) scale(1.08) rotate(3deg); }
            50% { transform: translateZ(35px) translateY(-6px) scale(1.08) rotate(3deg); }
        }

        .product-card:hover .product-icon {
            animation: float-icon 2.5s infinite ease-in-out;
        }

        .product-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-dark);
            transform: translateZ(25px);
            transition: transform 0.5s var(--ease-out-expo);
        }

        .product-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            flex-grow: 1;
            transform: translateZ(15px);
            transition: transform 0.5s var(--ease-out-expo);
        }

        .product-card .link {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
            transform: translateZ(20px);
            transition: color 0.3s ease, gap 0.3s ease, transform 0.5s var(--ease-out-expo);
        }

        .product-card .link:hover {
            color: var(--accent-yellow);
            gap: 0.75rem;
        }

        /* About Section */
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            border: 4px solid var(--white);
            transition: transform 0.5s var(--ease-out-expo);
        }

        .about-image:hover img {
            transform: scale(1.03);
        }

        .about-text {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        /* Board of Directors Section */
        .bg-gray {
            background-color: var(--gray-light);
            border-top: 1px solid var(--gray-border);
            border-bottom: 1px solid var(--gray-border);
        }

        .directors-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }
        @media (min-width: 769px) {
            .directors-container .director-row:first-child {
                grid-column: 1 / -1;
                width: calc(50% - 1rem);
                margin: 0 auto;
            }
        }

        .director-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--white);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-border);
            transform-style: preserve-3d;
            will-change: transform, box-shadow;
            transition: border-color 0.4s var(--ease-out-expo), 
                        box-shadow 0.4s var(--ease-out-expo);
        }

        .director-row:hover {
            box-shadow: 0 20px 40px rgba(11, 79, 140, 0.1), 0 1px 3px rgba(11, 79, 140, 0.04);
            border-color: var(--primary-blue);
        }

        .director-details {
            flex: 1;
            padding-right: 3rem;
            transform: translateZ(20px);
            transition: transform 0.5s var(--ease-out-expo);
        }

        .director-details .name-la {
            font-size: 1.6rem;
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .director-details .name-en {
            font-size: 1.15rem;
            color: var(--text-muted);
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .position-tag {
            display: inline-block;
            background: var(--primary-light);
            padding: 12px 24px;
            border-radius: 10px;
            border-left: 5px solid var(--primary-blue);
            transform: translateZ(25px);
            transition: border-left-color 0.3s ease, background-color 0.3s ease, transform 0.5s var(--ease-out-expo);
        }

        .director-row:hover .position-tag {
            border-left-color: var(--accent-yellow);
            background-color: #fef3c7; /* Light Yellow */
        }

        .pos-la {
            display: block;
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 1.05rem;
        }

        .pos-en {
            display: block;
            color: var(--text-muted);
            font-size: 0.85rem;
            text-transform: uppercase;
            margin-top: 2px;
            letter-spacing: 0.5px;
        }

        .director-image {
            flex: 0 0 200px;
            height: 240px;
            border-radius: 12px;
            overflow: hidden;
            border: 3px solid var(--white);
            background-color: #fff;
            box-shadow: var(--shadow-sm);
            position: relative;
            transform: translateZ(30px);
            transition: transform 0.5s var(--ease-out-expo);
        }

        .director-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: bottom center;
            transition: transform 0.5s var(--ease-out-expo);
        }

        .director-row:hover .director-image img {
            transform: scale(1.08);
        }

        /* Board Members Grid */
        .board-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 4rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        .board-grid .board-card {
            flex: 1 1 250px;
            max-width: calc(33.333% - 1.5rem);
        }

        .board-card {
            background: var(--white);
            border: 1px solid var(--gray-border);
            border-radius: 12px;
            padding: 2rem 1.5rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transform-style: preserve-3d;
            will-change: transform, box-shadow;
            transition: border-color 0.4s var(--ease-out-expo), 
                        box-shadow 0.4s var(--ease-out-expo);
        }

        .board-card:hover {
            border-color: var(--primary-blue);
            box-shadow: 0 15px 30px rgba(11, 79, 140, 0.1), 0 1px 3px rgba(11, 79, 140, 0.04);
        }

        .board-card-image {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1.25rem;
            border: 3px solid var(--gray-light);
            box-shadow: var(--shadow-sm);
            transform: translateZ(25px);
            transition: transform 0.5s var(--ease-out-expo);
        }

        .board-card:hover .board-card-image {
            transform: translateZ(30px) scale(1.08);
        }

        .board-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top; /* Shift image all the way down to show heads and faces */
            transition: transform 0.5s var(--ease-out-expo);
        }

        .board-card h4 {
            font-size: 1.1rem;
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 0.2rem;
            transform: translateZ(15px);
            transition: transform 0.5s var(--ease-out-expo);
        }

        .board-card .name-en {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
            font-style: italic;
            transform: translateZ(10px);
            transition: transform 0.5s var(--ease-out-expo);
        }

        .board-card .role-badge {
            background-color: var(--gray-light);
            color: var(--primary-blue);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid var(--gray-border);
            display: inline-block;
            transform: translateZ(20px);
            transition: all 0.3s ease, transform 0.5s var(--ease-out-expo);
        }

        .board-card:hover .role-badge {
            background-color: var(--primary-blue);
            color: var(--white);
            border-color: var(--primary-blue);
        }

        /* Document Folder / Downloads */
        .document-box {
            border: 1px solid var(--primary-blue);
            border-radius: 12px;
            overflow: hidden;
            margin: 2rem 0;
            background: var(--white);
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease;
        }

        .document-box:hover {
            box-shadow: var(--shadow-md);
        }

        .folder-header {
            width: 100%;
            padding: 1.25rem;
            background: var(--primary-blue);
            color: var(--white);
            border: none;
            text-align: left;
            font-size: 1.15rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .folder-header:hover {
            background: var(--primary-dark);
        }

        .folder-content {
            background: var(--white);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s var(--ease-out-expo);
        }

        .folder-content.open {
            max-height: 500px;
        }

        .file-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--gray-border);
            transition: background 0.3s;
        }

        .file-row:hover {
            background: var(--gray-light);
        }

        .file-row:last-child {
            border-bottom: none;
        }

        .file-row span {
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 500;
        }

        .dl-btn {
            background: var(--accent-yellow);
            color: var(--primary-dark);
            padding: 6px 16px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 700;
            transition: all 0.3s;
        }

        .dl-btn:hover {
            background: var(--primary-dark);
            color: var(--white);
        }

        /* Claims Support Section */
        .claims-box {
            background: var(--primary-dark);
            color: var(--text-light);
            border-radius: 20px;
            padding: 4rem;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: center;
            box-shadow: var(--shadow-lg);
            border-left: 6px solid var(--accent-yellow);
            position: relative;
            overflow: hidden;
        }

        .claims-box h2 {
            font-size: 2.25rem;
            margin-bottom: 1rem;
        }

        .claims-box h2 span {
            color: var(--accent-yellow);
        }

        .claims-steps {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .step-item {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
            transform: translateX(0);
            transition: transform 0.3s ease;
        }

        .step-item:hover {
            transform: translateX(8px);
}

        .step-number {
            background: var(--accent-yellow);
            color: var(--primary-dark);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .step-item:hover .step-number {
            transform: scale(1.1) rotate(360deg);
        }

        .step-text h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .step-text p {
            color: #cbd5e1;
            font-size: 0.9rem;
        }

        /* Contact Details Section */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-card {
            background: var(--white);
            border: 1px solid var(--gray-border);
            border-radius: 16px;
            padding: 2.5rem 1.5rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s var(--ease-out-expo);
            border-top: 4px solid var(--gray-border);
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }

        .contact-card.border-red { border-top-color: #e53e3e; }
        .contact-card.border-blue { border-top-color: var(--primary-blue); }
        .contact-card.border-gold { border-top-color: var(--accent-yellow); }
        .contact-card.border-green { border-top-color: #38a169; }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .contact-card:hover .contact-icon {
            transform: scale(1.15);
        }

        .contact-card h3 {
            font-size: 1.25rem;
            color: var(--primary-dark);
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

        .contact-card .main-num {
            font-size: 2.25rem;
            font-weight: 800;
            color: #e53e3e;
            margin-bottom: 0.25rem;
        }

        .contact-card .phone-line {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }

        .contact-card .link-text {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .contact-card .link-text:hover {
            color: var(--accent-yellow);
        }

        .contact-card p {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* Footer */
        footer {
            background: #031c33;
            color: #e2e8f0;
            border-top: 4px solid var(--accent-yellow);
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo img {
            height: 55px;
            margin-bottom: 1.25rem;
            width: auto;
        }

        .footer-logo p {
            color: #cbd5e1;
            font-size: 0.9rem;
            max-width: 300px;
        }

        .footer-col h4 {
            font-size: 1.1rem;
            margin-bottom: 1.25rem;
            color: var(--white);
            border-left: 3px solid var(--accent-yellow);
            padding-left: 0.5rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.75rem;
        }

        .footer-col ul li a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: var(--accent-yellow);
        }

        .copyright {
            max-width: 1200px;
            margin: 0 auto;
            border-top: 1px solid #07355e;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            color: #94a3b8;
            font-size: 0.85rem;
        }

        /* WhatsApp Floating Widget */
        .whatsapp-widget {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Moved to left like Trivico usually does, or we can do right. Let's do left so it doesn't overlap with 'back to top' */
    background-color: #F5A623;
    color: white;
    height: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 0 20px 0 5px;
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}
.whatsapp-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.6);
}
.whatsapp-icon-wrapper {
    background-color: #F5A623;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    position: relative;
}
.whatsapp-icon-wrapper i {
    font-size: 24px;
    color: white;
}
.whatsapp-icon-wrapper::before, .whatsapp-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #F5A623;
    opacity: 0.6;
    z-index: -1;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.whatsapp-icon-wrapper::after {
    animation-delay: 1s;
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}
.whatsapp-widget span {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

        /* Scroll Animation Utility Classes */
        .reveal {
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s var(--ease-out-expo);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            position: relative;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s var(--ease-out-expo);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            position: relative;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s var(--ease-out-expo);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-zoom {
            position: relative;
            opacity: 0;
            transform: scale(0.92) translateY(10px);
            transition: all 0.8s var(--ease-out-expo);
        }

        .reveal-zoom.active {
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        /* Scroll Progress Bar */
        #scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(to right, var(--accent-yellow), #fcd34d);
            width: 0%;
            z-index: 2001;
            transition: width 0.1s ease-out;
        }

        /* Back to Top Button */
        #back-to-top {
            position: fixed;
            bottom: 170px;
            right: 30px;
            background-color: var(--primary-blue);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--accent-yellow);
            font-size: 1.15rem;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: var(--shadow-md);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s var(--ease-out-expo);
            transform: translateY(20px);
        }

        #back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        #back-to-top:hover {
            background-color: var(--accent-yellow);
            color: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(241, 179, 24, 0.35);
        }

        /* Card Glow Overlay */
        .card-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
            mix-blend-mode: screen;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        /* Stagger delays for grids */
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
        .delay-5 { transition-delay: 0.5s; }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .nav-container {
                padding: 1rem 1.25rem;
            }
            nav {
                gap: 1rem;
            }
            nav a {
                font-size: 0.88rem;
            }
            .header-actions {
                gap: 1rem;
            }
            .hotline {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 1024px) {
            nav {
                gap: 0.8rem;
            }
            nav a {
                font-size: 0.82rem;
            }
            .hotline {
                display: none; /* Hide hotline to make room for nav */
            }
        }

        @media (max-width: 880px) {
            nav {
                gap: 0.6rem;
            }
            nav a {
                font-size: 0.78rem;
            }
            .header-actions .btn {
                padding: 0.6rem 1rem;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 992px) {
            .hero {
                background-position: center center;
                padding: 4rem 1.5rem;
                min-height: auto;
            }
            .hero::before {
                background: rgba(255, 255, 255, 0.88);
            }
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .hero-content h1 span.slogan-en {
                font-size: 1.75rem;
            }
            .hero-container, .claims-box, .about-container, .directors-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }
            .director-row {
                flex-direction: column;
                padding: 1.5rem;
                text-align: center;
                gap: 2rem;
            }
            .director-image {
                width: 100%;
                max-width: 280px;
                height: auto;
                margin: 0 auto;
            }
            .director-image img {
                height: auto;
                object-position: top center;
            }
            .hero-content p, .director-details, .about-text {
                margin-left: auto;
                margin-right: auto;
                padding-right: 0;
            }
            .about-image {
                margin: 0 auto;
            }
            .hero-buttons {
                justify-content: center;
            }
            .director-image {
                margin: 0 auto;
            }
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        

        /* Image Lightbox Modal Styles */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 3000;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            background-color: rgba(3, 28, 51, 0.85);
            backdrop-filter: blur(8px);
            opacity: 0;
            transition: opacity 0.4s var(--ease-out-expo);
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .lightbox.show {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            margin: auto;
            display: block;
            width: auto;
            height: auto;
            max-width: 85vw;
            max-height: 80vh;
            min-width: 0;
            min-height: 0;
            object-fit: contain;
            border-radius: 12px;
            border: 3px solid var(--white);
            box-shadow: 0 25px 50px rgba(0,0,0,0.5);
            transform: scale(0.9);
            transition: transform 0.4s var(--ease-out-expo);
        }

        .lightbox.show .lightbox-content {
            transform: scale(1);
        }

        .lightbox-close {
            position: absolute;
            top: 40px;
            right: 40px;
            color: var(--white);
            font-size: 3rem;
            font-weight: 300;
            cursor: pointer;
            transition: transform 0.3s ease, color 0.3s ease;
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .lightbox-close:hover {
            color: var(--accent-yellow);
            transform: rotate(90deg);
            background-color: rgba(255, 255, 255, 0.2);
        }

        #lightbox-caption {
            margin-top: 20px;
            color: var(--white);
            font-size: 1.25rem;
            font-weight: 600;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        /* Clickable image pointer indication */
        .board-card-image img, .director-image img {
            cursor: pointer;
        }

        /* Lightbox Navigation Arrows */
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: var(--white);
            font-size: 2rem;
            font-weight: 700;
            cursor: pointer;
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            user-select: none;
            z-index: 3001;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .lightbox-nav:hover {
            color: var(--accent-yellow);
            background-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev {
            left: 30px;
        }

        .lightbox-next {
            right: 30px;
        }

        @media (max-width: 768px) {
            .lightbox-prev {
                left: 10px;
            }
            .lightbox-next {
                right: 10px;
            }
            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }
        }

        /* LAP System Modal Styles */
        .lap-modal {
            display: none;
            position: fixed;
            z-index: 2500;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(3, 28, 51, 0.85);
            backdrop-filter: blur(10px);
            opacity: 0;
            transition: opacity 0.4s var(--ease-out-expo);
            justify-content: center;
            align-items: center;
        }

        .lap-modal.show {
            display: flex;
            opacity: 1;
        }

        .lap-modal-content {
            background: var(--white);
            border-radius: 24px;
            width: 100%;
            max-width: 500px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--gray-border);
            position: relative;
            padding: 2.5rem;
            transform: scale(0.9);
            transition: transform 0.4s var(--ease-out-expo);
            overflow: hidden;
            max-height: 90vh;
        }

        .lap-modal.show .lap-modal-content {
            transform: scale(1);
        }

        .lap-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            font-weight: 700;
            cursor: pointer;
            color: var(--text-muted);
            transition: color 0.3s;
            z-index: 10;
        }

        .lap-modal-close:hover {
            color: #e53e3e;
        }

        .lap-screen {
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lap-screen.active {
            display: block;
            opacity: 1;
        }

        /* Screen 1: Login Styles */
        .lap-logo-box {
            margin-bottom: 1.5rem;
            display: flex;
            justify-content: center;
        }

        .lap-gold-circle {
            background: radial-gradient(circle, #f1b318 0%, #d99b04 100%);
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 8px 20px rgba(241, 179, 24, 0.3);
            border: 3px solid var(--white);
        }

        .lap-gold-circle img {
            width: 65px;
            height: auto;
        }

        .lap-subtitle {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .lap-form-group {
            margin-bottom: 1.25rem;
            text-align: left;
        }

        .lap-form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 0.85rem;
            color: var(--primary-dark);
        }

        .lap-input-wrapper {
            position: relative;
        }

        .lap-input-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1rem;
        }

        .lap-username-input, .lap-password-input, .lap-input, .lap-select, .lap-textarea {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.5rem;
            border: 2px solid var(--gray-border);
            border-radius: 12px;
            outline: none;
            background-color: var(--gray-light);
            transition: all 0.3s;
            font-size: 0.95rem;
        }

        .lap-input, .lap-select {
            padding-left: 1rem;
        }

        .lap-textarea {
            padding-left: 1rem;
            height: 100px;
            resize: none;
        }

        .lap-username-input:focus, .lap-password-input:focus, .lap-input:focus, .lap-select:focus, .lap-textarea:focus {
            border-color: var(--accent-yellow);
            background-color: var(--white);
            box-shadow: 0 0 0 3px rgba(241, 179, 24, 0.15);
        }

        .lap-btn {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: var(--shadow-sm);
            margin-top: 1rem;
        }

        .lap-btn:hover {
            background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-hover) 100%);
            color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(241, 179, 24, 0.2);
        }

        .lap-error-box {
            background: #fee2e2;
            color: #dc2626;
            padding: 0.75rem;
            border-radius: 10px;
            font-size: 0.85rem;
            margin-bottom: 1.25rem;
            border: 1px solid #fecaca;
            text-align: center;
            font-weight: 600;
        }

        .lap-footer-text {
            margin-top: 2rem;
            font-size: 0.75rem;
            color: var(--text-muted);
            text-align: center;
        }

        /* Screen 2: Dashboard Styles */
        .lap-dash-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--gray-border);
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }

        .lap-dash-title {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--primary-blue);
        }

        .lap-dash-profile {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .lap-profile-info {
            text-align: right;
        }

        .lap-profile-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .lap-profile-role {
            font-size: 0.75rem;
            background: var(--gray-light);
            padding: 2px 6px;
            border-radius: 4px;
            color: var(--text-muted);
            display: inline-block;
        }

        .lap-profile-avatar {
            font-size: 1.5rem;
        }

        .lap-logout-btn {
            background: transparent;
            border: none;
            color: #e53e3e;
            cursor: pointer;
            font-size: 1rem;
            padding: 4px;
            transition: transform 0.3s;
            margin-left: 5px;
        }

        .lap-logout-btn:hover {
            transform: scale(1.15) rotate(15deg);
        }

        .lap-dash-heading {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .lap-dash-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .lap-dash-card {
            background: var(--gray-light);
            border: 1px solid var(--gray-border);
            border-radius: 16px;
            padding: 1.75rem 1.25rem;
            text-align: center;
            transition: all 0.3s var(--ease-out-expo);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        .lap-dash-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .lap-card-blue:hover {
            border-color: var(--primary-blue);
        }

        .lap-card-green:hover {
            border-color: #10b981;
        }

        .lap-card-icon {
            font-size: 2.5rem;
        }

        .lap-dash-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary-dark);
        }

        .lap-dash-card p {
            font-size: 0.8rem;
            color: var(--text-muted);
            flex-grow: 1;
        }

        .lap-card-btn {
            background: var(--white);
            border: 1px solid var(--gray-border);
            padding: 6px 16px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.3s;
        }

        .lap-card-blue:hover .lap-card-btn {
            background-color: var(--primary-blue);
            color: var(--white);
            border-color: var(--primary-blue);
        }

        .lap-card-green:hover .lap-card-btn {
            background-color: #10b981;
            color: var(--white);
            border-color: #10b981;
        }

        .lap-php-link-box {
            margin-top: 2rem;
            border-top: 1px dashed var(--gray-border);
            padding-top: 1rem;
        }

        .lap-php-link {
            color: var(--primary-blue);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 700;
            transition: color 0.3s;
        }

        .lap-php-link:hover {
            color: var(--accent-yellow);
        }

        /* Screen 3 & 4: Forms Styles */
        .lap-form-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid var(--gray-border);
            padding-bottom: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .lap-back-btn {
            background: transparent;
            border: none;
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            color: var(--primary-blue);
            transition: color 0.3s;
        }

        .lap-back-btn:hover {
            color: var(--accent-yellow);
        }

        .lap-form-header h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--primary-dark);
        }

        .lap-form-group-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        /* History Timeline Section */
        .history-timeline {
            position: relative;
            max-width: 1000px;
            margin: 3rem auto 0;
            padding: 2rem 0;
        }

        .history-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary-blue), var(--accent-yellow), var(--primary-blue));
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 4rem;
            width: 100%;
            display: flex;
            justify-content: flex-start;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-end;
        }

        .timeline-badge {
            position: absolute;
            left: 50%;
            top: 2rem;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background-color: var(--primary-blue);
            color: var(--white);
            border: 4px solid var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            z-index: 10;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-badge {
            background-color: var(--accent-yellow);
            color: var(--primary-dark);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .timeline-content {
            width: 45%;
            margin: 0;
        }

        .timeline-image {
            margin-top: 1.5rem;
            border-radius: 12px;
            overflow: hidden;
            border: 3px solid var(--white);
            box-shadow: var(--shadow-sm);
        }

        .timeline-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .timeline-image:hover img {
            transform: scale(1.03);
        }

        /* Responsive timeline */
        @media (max-width: 768px) {
            .history-timeline::before {
                left: 20px;
            }
            .timeline-item {
                justify-content: flex-start !important;
                padding-left: 50px;
                margin-bottom: 3rem;
            }
            .timeline-content {
                width: 100%;
            }
            .timeline-badge {
                left: 20px;
            }
        }


/* Custom Utility & Polish */
.social-links a {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.social-links a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}


/* Fix Claims Box text colors */
.claims-box p {
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.6;
}
.claims-box h3, .claims-box h4 {
    color: #ffffff !important;
}


/* --- Interactive Map Section --- */
.map-container {
    display: flex;
    flex-direction: row;
    height: 600px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-top: 2rem;
    border: 1px solid var(--gray-border);
}

.map-sidebar {
    width: 350px;
    background: #f8fafc;
    border-right: 1px solid var(--gray-border);
    display: flex;
    flex-direction: column;
}

.map-search {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-border);
    background: var(--white);
}

.map-search input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.map-search input:focus {
    border-color: var(--primary-blue);
}

.branch-list {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.branch-item {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.branch-item:hover {
    background-color: #f1f5f9;
}

.branch-item.active {
    background-color: #e0f2fe;
    border-left: 4px solid var(--primary-blue);
}

.branch-item h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.branch-item p {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.branch-item .branch-tel {
    font-size: 0.85rem;
    color: #0284c7;
    font-weight: 600;
}

.leaflet-map-area {
    flex: 1;
    height: 100%;
    z-index: 1;
}

/* Map Popup Styling */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    padding: 0;
}
.leaflet-popup-content {
    margin: 15px;
    line-height: 1.5;
}
.popup-title {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--accent-yellow);
    padding-bottom: 5px;
}
.popup-address {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 10px;
}
.popup-btn {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}
.popup-btn:hover {
    background: #1e3a8a;
    color: white;
}

/* Responsive Map */
@media (max-width: 992px) {
    .map-container {
        flex-direction: column-reverse;
        height: auto;
    }
    .map-sidebar {
        width: 100%;
        height: 400px;
        border-right: none;
        border-top: 1px solid var(--gray-border);
    }
    .leaflet-map-area {
        height: 400px;
    }
}


/* --- Mobile Menu Button --- */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
    z-index: 1001; /* Keep above mobile menu */
}

/* --- Comprehensive Mobile Responsiveness --- */
@media (max-width: 1100px) {
    .header-actions .hotline { display: none; }
}

@media (max-width: 992px) {
    .nav-container {
        justify-content: space-between;
    }
    nav#main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
    }
    nav#main-nav.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: block;
        order: 3;
    }
    
    .header-actions {
        order: 2;
    }

    nav#main-nav a {
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid var(--gray-border);
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        background: #f8fafc;
        border-radius: 0;
        width: 100%;
        display: none; /* Hide by default on mobile, can be toggled */
        padding-left: 15px;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }

    /* Grids */
    .about-container, 
    .claims-box {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .claims-box {
        padding: 2rem !important;
    }
}

@media (max-width: 768px) {
    /* Top Bar */
    .top-bar-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .desktop-only {
        display: none !important;
    }
    
    /* Header */
    .header-actions .btn {
        display: none; /* Hide quote button on very small screens to save space */
    }
    
    /* Hero */
    .hero-content h1 {
        font-size: 2.25rem !important;
    }
    .hero-container {
        padding: 4rem 5%;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr !important;
    }
    .copyright {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Product Images */
    .product-image {
        height: 200px !important;
    }
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* Lightbox Mobile Fix */
@media (max-width: 768px) {
    .lightbox-content {
        width: auto !important;
        height: auto !important;
        max-width: 90vw !important;
        max-height: 75vh !important;
        min-width: 0 !important;
        min-height: 0 !important;
        object-fit: contain !important;
    }
}


/* --- Mobile Urgent Fixes --- */
@media (max-width: 992px) {
    .claims-box p {
        white-space: normal !important; /* Fix horizontal overflow from nowrap */
    }
    .leaflet-map-area {
        min-height: 400px !important;
        width: 100% !important;
        display: block !important;
        flex: none !important;
    }
    .map-sidebar {
        flex: none !important;
        height: auto !important;
        max-height: 400px;
        overflow-y: auto;
    }
    .map-container {
        display: flex;
        flex-direction: column; /* Normal column: Sidebar top, Map bottom. If we want map top, we should use column-reverse */
    }
}

@media (max-width: 768px) {
    .claims-box {
        padding: 1.5rem !important; /* Reduce padding more for very small screens */
        gap: 1.5rem !important;
    }
}

@media (min-width: 993px) {
    .desktop-only-hide-on-mobile {
        display: none !important;
    }
}


/* --- Language Selector --- */
.lang-selector a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    padding: 0 4px;
}

.lang-selector a:hover,
.lang-selector a.active {
    color: var(--accent-yellow);
    font-weight: bold;
}

/* --- Hide Google Translate Default UI --- */
.goog-te-banner-frame.skiptranslate, 
.goog-te-gadget-icon {
    display: none !important;
}

body {
    top: 0px !important; 
}

/* Hide the tooltip that shows original text */
.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}


/* --- Aggressive Hide Google Translate Default UI --- */
iframe.goog-te-banner-frame,
.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
}
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc {
    display: none !important;
}
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}
/* Reset body and html top margin set by Google Translate */
body {
    top: 0px !important;
    position: static !important;
}
html {
    top: 0px !important;
    position: static !important;
    height: 100% !important;
    overflow-x: hidden !important;
}


/* --- Promotional Popup Modal --- */
.promo-modal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: hidden; 
    background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
    backdrop-filter: blur(5px);
    animation: fadeIn 0.5s ease-out;
    justify-content: center;
    align-items: center;
}

.promo-modal-content {
    background-color: transparent;
    margin: 0;
    padding: 0;
    width: 90%;
    max-width: 800px; /* Max width for large screens */
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: slideDown 0.5s ease-out;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 15px;
    display: block;
}

.promo-close {
    color: white;
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 30px;
    font-weight: bold;
    background-color: var(--primary-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 10000;
    border: 2px solid white;
}

.promo-close:hover,
.promo-close:focus {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    transform: scale(1.1);
}

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


/* --- Premium Navigation Upgrades --- */
#main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Increase spacing between links */
}

#main-nav a:not(.lap-system-btn) {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

/* Animated Underline Effect for Nav Links */
#main-nav a:not(.lap-system-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-yellow);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform: translateX(-50%);
}

#main-nav a:not(.lap-system-btn):hover {
    color: var(--primary-blue);
}

#main-nav a:not(.lap-system-btn):hover::after,
#main-nav a.active::after,
.dropdown.active .dropbtn::after {
    width: 100%;
}

/* Dropdown Enhancements */
.dropdown-content {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 10px 0;
    margin-top: 15px; /* Slight gap from the nav bar */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.dropdown-content a {
    padding: 12px 20px !important;
    font-weight: 500 !important;
    color: #444 !important;
    border-left: 3px solid transparent;
    transition: all 0.2s ease !important;
}

.dropdown-content a:hover {
    background-color: #f8fafc !important;
    color: var(--primary-blue) !important;
    border-left-color: var(--accent-yellow) !important;
    padding-left: 25px !important;
}

/* Right-side Action Area Spacing */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Quote Button Enhancement */
.header-actions .btn-blue {
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
}
.header-actions .btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}


/* --- Logo and Home Icon Enhancements --- */
/* Push the menu away from the logo */
header .logo {
    margin-right: 4rem !important; 
}

/* Make the Home button stand out like a badge */
#main-nav a[href="index.html"] {
    background: rgba(30, 64, 175, 0.08);
    padding: 8px 14px !important;
    border-radius: 10px;
    border: 1px solid rgba(30, 64, 175, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

#main-nav a[href="index.html"] i.fa-home {
    color: var(--primary-blue);
    font-size: 1.25rem !important;
    transition: all 0.3s ease;
}

/* Remove the normal bottom-border hover effect from the home button since it's a badge now */
#main-nav a[href="index.html"]::after {
    display: none !important;
}

/* Hover effects for Home button */
#main-nav a[href="index.html"]:hover {
    background: rgba(30, 64, 175, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(30, 64, 175, 0.15);
    border-color: rgba(30, 64, 175, 0.3);
}

#main-nav a[href="index.html"]:hover i.fa-home {
    color: var(--primary-dark);
    transform: scale(1.15);
}

/* Add a subtle glow to the active home state */
#main-nav a[href="index.html"].active {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

#main-nav a[href="index.html"].active i.fa-home {
    color: var(--white);
}

#main-nav a[href="index.html"].active:hover i.fa-home {
    color: var(--accent-yellow);
}


/* --- Enhanced WhatsApp Widget (Right Side + Strong Glow) --- */
.whatsapp-widget {
    position: fixed;
    bottom: 100px !important;
    right: 30px !important;
    left: auto !important; /* Remove the left positioning */
    background-color: #F5A623;
    color: white;
    height: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 0 20px 0 5px;
    z-index: 1000;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    /* Strong pulsing glow animation */
    animation: whatsapp-glow-pulse 2s infinite;
}

@keyframes whatsapp-glow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.7), 0 4px 16px rgba(245, 166, 35, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(245, 166, 35, 0), 0 4px 16px rgba(245, 166, 35, 0.4);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0), 0 4px 16px rgba(245, 166, 35, 0.4);
    }
}

.whatsapp-widget:hover {
    transform: translateY(-3px);
    background-color: #E0951E;
    animation: none; /* Stop pulsing on hover so it doesn't get annoying */
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.6);
}


/* --- Fix Navigation Bar Overflow --- */
.nav-container {
    max-width: 1450px !important; /* Increase max-width to accommodate new items */
    width: 98% !important;        /* Use percentage for smaller screens */
    padding: 1rem 1% !important;  /* Reduce fixed padding */
}

/* Make gaps dynamic based on screen size so they squish gracefully */
#main-nav {
    gap: clamp(0.5rem, 1.5vw, 1.5rem) !important;
}

header .logo {
    margin-right: clamp(1rem, 3vw, 4rem) !important;
    flex-shrink: 0;
}

.header-actions {
    gap: clamp(0.5rem, 1vw, 1.5rem) !important;
    flex-shrink: 0;
}

/* Allow text to shrink slightly if space is really tight */
#main-nav a {
    white-space: nowrap;
}

/* Scale down font sizes dynamically on medium screens */
@media (max-width: 1400px) {
    #main-nav a:not(.lap-system-btn) {
        font-size: 0.9rem !important;
    }
    .header-actions .hotline {
        font-size: 0.9rem !important;
    }
    .header-actions .btn {
        padding: 8px 12px !important;
        font-size: 0.9rem !important;
    }
}






/* ========================================= */
/* --- 🚀 ADVANCED ANIMATIONS & LUSCIOUS UI --- */
/* ========================================= */

/* Continuous Floating Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.float-anim {
    animation: float 4s ease-in-out infinite;
}

/* Subtle Pulse */
@keyframes soft-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}
.pulse-anim {
    animation: soft-pulse 3s ease-in-out infinite;
}

/* Enhanced Reveal Animations */
.reveal-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-slide-left.active, .reveal-slide-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Hover Shine Effect for Buttons */
.btn-blue {
    position: relative;
    overflow: hidden;
}
.btn-blue::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s;
}
.btn-blue:hover::before {
    left: 200%;
}

/* ========================================= */
/* --- 📱 ULTIMATE MOBILE VIEW REFINEMENTS --- */
/* ========================================= */

@media (max-width: 768px) {
    /* Top Bar Mobile Optimization */
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 10px;
    }
    .top-bar-container > div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 5rem 1rem 3rem 1rem !important;
        text-align: center;
        background-position: center !important; /* Revert to center for mobile to look balanced */
        min-height: auto !important; /* Remove tall min-height constraint */
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }
    .hero p {
        font-size: 1rem !important;
        margin-bottom: 20px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Navigation Mobile Improvements */
    #main-nav {
        padding-top: 100px !important;
        width: 80% !important;
        max-width: 320px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.15) !important;
    }
    #main-nav a {
        font-size: 1rem !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        width: 100%;
        white-space: normal !important;
        line-height: 1.4;
        box-sizing: border-box;
    }
    
    /* Service Cards Mobile */
    .services-grid, .contact-grid {
        grid-template-columns: 1fr !important;
        padding: 0 10px;
    }
    
    /* WhatsApp Mobile */
    .whatsapp-widget {
        bottom: 85px !important;
        right: 20px !important;
        height: 45px !important;
        border-radius: 22.5px !important;
        padding: 0 15px 0 5px !important;
    }
    .whatsapp-widget span {
        font-size: 0.9rem !important;
    }
    
    /* Back to Top Mobile */
    #back-to-top {
        bottom: 145px !important;
        right: 20px !important;
    }
}

@media (max-width: 768px) {
    .board-grid .board-card {
        max-width: 100% !important;
        flex: 1 1 100% !important;
    }
}

/* EXACT 3-COL LAYOUT OVERRIDE */
.board-grid .board-card {
    flex: 0 0 calc((100% - 4.1rem) / 3) !important;
    max-width: calc((100% - 4.1rem) / 3) !important;
}
@media (max-width: 900px) {
    .board-grid .board-card {
        flex: 0 0 calc((100% - 2.1rem) / 2) !important;
        max-width: calc((100% - 2.1rem) / 2) !important;
    }
}
@media (max-width: 600px) {
    .board-grid .board-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* ========================================
   LOGIN DROPDOWN — PREMIUM DESIGN
   ======================================== */

.login-dropdown-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* ── Main Button ── */
.login-nav-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    color: #fff !important;
    padding: 9px 20px 9px 16px;
    border-radius: 50px;
    font-size: 0.88em;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1.5px solid rgba(255,255,255,0.25);
    box-shadow:
        0 4px 15px rgba(30, 64, 175, 0.45),
        0 1px 3px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
    letter-spacing: 0.5px;
    user-select: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}
/* Shimmer overlay */
.login-nav-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transition: left 0.5s ease;
}
.login-nav-btn:hover::before {
    left: 100%;
}
.login-nav-btn .btn-lock-icon {
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75em;
    flex-shrink: 0;
    transition: background 0.3s ease;
}
.login-nav-btn:hover .btn-lock-icon {
    background: rgba(255,255,255,0.35);
}
.login-nav-btn .btn-label {
    font-size: 1em;
    letter-spacing: 0.8px;
}
.login-nav-btn .login-chevron {
    font-size: 0.65em;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.85;
    margin-left: 1px;
}
.login-nav-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(30, 64, 175, 0.55),
        0 2px 6px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.25);
    color: #fff !important;
}
.login-dropdown-wrapper.open .login-nav-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
    box-shadow:
        0 6px 20px rgba(30, 64, 175, 0.6),
        inset 0 1px 0 rgba(255,255,255,0.15);
    transform: translateY(-1px);
}
.login-dropdown-wrapper.open .login-nav-btn .login-chevron {
    transform: rotate(180deg);
}

/* ── Dropdown Menu Card ── */
.login-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background-color: var(--white, #fff);
    min-width: 250px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

/* Animated open via .open class */
.login-dropdown-wrapper.open .login-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Each link item with icon */
.login-dropdown-menu a.login-menu-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 14px !important;
    margin: 4px 8px;
    text-decoration: none;
    color: #475569 !important;
    font-weight: 500 !important;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s ease !important;
}

/* Icon styling */
.login-dropdown-menu a.login-menu-item .login-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.1rem;
    width: 24px;
    transition: all 0.2s ease;
}

/* Hover effect */
.login-dropdown-menu a.login-menu-item:hover {
    background-color: #f1f5f9 !important;
    color: var(--primary-blue, #1e40af) !important;
}

.login-dropdown-menu a.login-menu-item:hover .login-icon {
    color: var(--primary-blue, #1e40af);
    transform: scale(1.1);
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .login-dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f8fafc;
        border-radius: 0;
        width: 100%;
        display: none;
        padding-left: 15px;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 5px;
    }
    .login-dropdown-wrapper.open .login-dropdown-menu {
        display: block;
    }
    .login-dropdown-wrapper {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    .login-nav-btn {
        width: 100%;
        justify-content: center;
        border-radius: 12px;
        padding: 11px 20px;
    }
}




/* --- Mobile Menu Text Overflow Fix --- */
@media (max-width: 768px) {
    #main-nav a,
    #main-nav .dropbtn,
    #main-nav .dropdown {
        white-space: normal !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}


/* Toast Notifications */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    background: #fff;
    color: #333;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 250px;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.toast.show {
    transform: translateX(0);
    opacity: 1;
}
.toast.success { border-left: 4px solid #10b981; }
.toast.error { border-left: 4px solid #ef4444; }
.toast.info { border-left: 4px solid #3b82f6; }
.toast i { font-size: 1.2rem; }
.toast.success i { color: #10b981; }
.toast.error i { color: #ef4444; }
.toast.info i { color: #3b82f6; }


/* --- Skeleton Loader --- */
@keyframes skeleton-loading {
    0% { background-color: hsl(200, 20%, 80%); }
    100% { background-color: hsl(200, 20%, 95%); }
}

    100% { background-color: #2d3748; }
}
.skeleton {
    animation: skeleton-loading 1s linear infinite alternate;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    min-height: 20px;
}
.skeleton-text { width: 100%; height: 16px; margin-bottom: 8px; border-radius: 4px; }
.skeleton-text.short { width: 60%; }
.skeleton-avatar { width: 40px; height: 40px; border-radius: 50%; }


.modal-content { background-color: var(--card-bg); color: var(--text-color); }



/* --- Empty State --- */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 2px dashed #e2e8f0;
    margin: 20px 0;
}
.empty-state i {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 15px;
}
.empty-state h4 {
    color: #475569;
    font-weight: 600;
    margin-bottom: 5px;
}
.empty-state p {
    color: #94a3b8;
    font-size: 0.95rem;
    max-width: 300px;
}
