/* Global Styles */
        :root {
            --primary: #d4af37; /* Gold */
            --secondary: #1a2a3a; /* Navy */
            --accent: #8b5a2b; /* Bronze */
            --light: #f8f9fa;
            --dark: #212529;
            --success: #28a745;
            --info: #17a2b8;
            --warning: #ffc107;
            --danger: #dc3545;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: var(--dark);
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--accent);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--primary);
            color: var(--secondary);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: var(--accent);
            color: var(--light);
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--secondary);
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--primary);
            bottom: -10px;
            left: 25%;
        }
        
        .section-title p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Header Styles */
        header {
            background-color: var(--secondary);
            color: var(--light);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .logo span {
            color: var(--light);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--light);
            font-weight: 500;
            position: relative;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(26, 42, 58, 0.8), rgba(26, 42, 58, 0.8)), 
                        url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--light);
            padding-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        /* Services Section */
        .services {
            background-color: var(--light);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .service-content p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* About Section */
        .about {
            background-color: white;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-img {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-text h2 {
            font-size: 2.2rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #666;
        }
        
        .about-features {
            margin-top: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .feature-icon {
            font-size: 1.5rem;
            color: var(--primary);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .feature-text h4 {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 5px;
        }
        
        /* Tracking Section */
        .tracking {
            background-color: var(--secondary);
            color: var(--light);
        }
        
        .tracking .section-title h2,
        .tracking .section-title p {
            color: var(--light);
        }
        
        .tracking-options {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .tracking-tab {
            padding: 10px 20px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .tracking-tab.active {
            background-color: var(--primary);
            color: var(--secondary);
            font-weight: 600;
        }
        
        .tracking-tab:hover:not(.active) {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .tracking-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            color: var(--light);
            font-size: 1rem;
        }
        
        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Contact Section */
        .contact {
            background-color: var(--light);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            font-size: 1.2rem;
            color: var(--primary);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .contact-text h4 {
            font-size: 1.1rem;
            color:var(--secondary);
            margin-bottom: 5px;
        }
        
        .contact-text p, 
        .contact-text a {
            color: #000000;
        }
        
        .contact-text a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--secondary);
            color: var(--light);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .contact-form .form-group input,
        .contact-form .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #717171;
            border-radius: 4px;
            font-size: 1rem;
            background-color: rgb(255, 255, 255);
            color: #000;
        }
        
        .contact-form .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--light);
            padding: 60px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
            bottom: 0;
            left: 0;
        }
        
        .footer-col p {
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-links li {
            margin-bottom: 10px;
            list-style: none;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
            display: block;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* New Shipping Section */
        .shipping {
            background-color: white;
        }
        
        .shipping-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .shipping-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .shipping-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .shipping-img {
            height: 200px;
            overflow: hidden;
        }
        
        .shipping-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .shipping-card:hover .shipping-img img {
            transform: scale(1.1);
        }
        
        .shipping-content {
            padding: 25px;
        }
        
        .shipping-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .shipping-content p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .shipping-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* Latest Work Section */
        .latest-work {
            background-color: var(--light);
        }
        
        .work-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .work-content p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
        }
        
        .stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: var(--secondary);
        }
        
        /* Blog Section */
        .blog {
            background-color: white;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .blog-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .blog-img {
            height: 200px;
            overflow: hidden;
        }
        
        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-img img {
            transform: scale(1.05);
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-date {
            font-size: 0.9rem;
            color: var(--primary);
            margin-bottom: 10px;
            display: block;
        }
        
        .blog-content h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .blog-content p {
            color: #666;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        .read-more {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover i {
            transform: translateX(3px);
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            overflow-y: auto;
        }
        
        .modal-content {
            background-color: white;
            margin: 80px auto;
            max-width: 800px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            animation: modalFadeIn 0.3s ease;
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .modal-header {
            background-color: var(--secondary);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-header h3 {
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        .close-modal {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .modal-body {
            padding: 30px;
        }
        
        .modal-body p {
            margin-bottom: 20px;
            color: #666;
        }
        
        .modal-features {
            margin: 30px 0;
        }
        
        .modal-feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .modal-feature-icon {
            color: var(--primary);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .about-img {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: var(--secondary);
                flex-direction: column;
                padding: 30px;
                transition: all 0.5s ease;
                z-index: 999;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 250px;
                margin-bottom: 15px;
            }
            
            .tracking-options {
                flex-direction: column;
                gap: 10px;
            }
            
            .modal-content {
                margin: 80px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 2rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .stats {
                flex-direction: column;
                gap: 20px;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate {
            animation: fadeIn 1s ease forwards;
        }
        
        .delay-1 {
            animation-delay: 0.2s;
        }
        
        .delay-2 {
            animation-delay: 0.4s;
        }
        
        .delay-3 {
            animation-delay: 0.6s;
        }
        
        /* Live Chat Button */
        .live-chat-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: var(--primary);
            color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .live-chat-btn:hover {
            background-color: var(--accent);
            color: var(--light);
            transform: translateY(-3px) scale(1.1);
        }

        .live-chat-btn[hidden] {
            display: none;
        }

        /* Loading spinner */
        .spinner {
            display: none;
            width: 40px;
            height: 40px;
            margin: 10px auto;
            border: 4px solid rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            border-top: 4px solid var(--primary);
            animation: spin 1s linear infinite;
        }

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

        /* Form status messages */
        .form-status {
            padding: 15px;
            margin: 20px 0;
            border-radius: 4px;
            display: none;
        }

        .form-status.success {
            background-color: rgba(40, 167, 69, 0.2);
            color: var(--success);
            border: 1px solid var(--success);
            display: block;
        }

        .form-status.error {
            background-color: rgba(220, 53, 69, 0.2);
            color: var(--danger);
            border: 1px solid var(--danger);
            display: block;
        }

        /* Admin Dashboard */
        .admin-page { background-color: #eef1f4; }
        .admin-shell { padding-top: 80px; }
        .admin-shell section { padding: 40px 0; }
        .admin-hero { background: linear-gradient(rgba(26, 42, 58, 0.88), rgba(26, 42, 58, 0.88)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=80') center/cover; color: var(--light); }
        .admin-hero-grid { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 40px; align-items: center; min-height: 360px; }
        .admin-kicker { color: var(--primary); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
        .admin-hero h1 { font-size: 3rem; line-height: 1.15; margin: 12px 0 18px; }
        .admin-hero p { max-width: 700px; color: rgba(255, 255, 255, 0.82); font-size: 1.1rem; }
        .admin-login, .admin-panel, .admin-stat { background: white; border-radius: 8px; box-shadow: 0 12px 30px rgba(26, 42, 58, 0.12); }
        .admin-login { color: var(--dark); padding: 28px; }
        .admin-login h2, .admin-panel h2 { color: var(--secondary); margin-bottom: 8px; }
        .admin-login p, .admin-panel p { color: #667; margin-bottom: 20px; }
        .admin-login .form-group input, .admin-panel .form-group input, .admin-panel .form-group select, .admin-panel .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid #d9dee6; background: white; border-radius: 4px; color: var(--dark); font-size: 1rem; }
        .admin-panel .form-group textarea { min-height: 110px; resize: vertical; }
        .admin-stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; }
        .admin-stat { padding: 24px; border-left: 4px solid var(--primary); }
        .admin-stat span { display: block; color: #667; margin-bottom: 8px; font-weight: 600; }
        .admin-stat strong { display: block; color: var(--secondary); font-size: 2.2rem; line-height: 1; }
        .btn.btn-danger { background: var(--danger); color: white; }
        .btn.btn-danger:hover { background: #b02a37; }
        .admin-page-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 24px; }
        .admin-page-link { display: grid; gap: 8px; padding: 20px; border-radius: 8px; background: white; color: var(--dark); box-shadow: 0 12px 30px rgba(26, 42, 58, 0.12); border: 1px solid #e6e9ee; transition: all 0.2s ease; }
        .admin-page-link:hover { border-color: var(--primary); transform: translateY(-2px); }
        .admin-page-link i { color: var(--primary); font-size: 1.4rem; }
        .admin-page-link strong { color: var(--secondary); font-size: 1.1rem; }
        .admin-page-link span { color: #667; line-height: 1.45; }
        .admin-workspace-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.7fr); gap: 24px; align-items: start; }
        .admin-panel { padding: 24px; overflow: hidden; }
        .admin-chat-panel { overflow: visible; display: flex; flex-direction: column; }
        .admin-panel-header, .admin-toolbar, .admin-form-actions { display: flex; gap: 16px; align-items: end; justify-content: space-between; }
        .admin-toolbar { align-items: center; margin: 20px 0; }
        .admin-toolbar .form-group { flex: 1; margin-bottom: 0; }
        .admin-table-wrap { overflow-x: auto; }
        .admin-table { width: 100%; border-collapse: collapse; min-width: 760px; }
        .admin-table th, .admin-table td { padding: 14px 12px; border-bottom: 1px solid #e6e9ee; text-align: left; vertical-align: middle; }
        .admin-table th { color: var(--secondary); font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.5px; background: #f7f8fa; }
        .admin-table td span { display: block; color: #667; font-size: 0.9rem; margin-top: 3px; }
        .status-pill { display: inline-block !important; padding: 7px 10px; border-radius: 999px; font-weight: 700; font-size: 0.82rem !important; color: var(--secondary) !important; background: #e9edf3; }
        .status-pill.in-transit, .status-pill.out-for-delivery { background: rgba(23, 162, 184, 0.18); color: #0d7180 !important; }
        .status-pill.delivered { background: rgba(40, 167, 69, 0.18); color: #1f7a37 !important; }
        .status-pill.on-hold, .status-pill.customs-review { background: rgba(255, 193, 7, 0.22); color: #8a6500 !important; }
        .admin-actions { white-space: nowrap; }
        .admin-actions button { width: 38px; height: 38px; border: 1px solid #d9dee6; border-radius: 4px; background: white; color: var(--secondary); cursor: pointer; margin-right: 6px; }
        .admin-actions button:hover { border-color: var(--primary); color: var(--accent); }
        .admin-alert { display: none; padding: 12px; border-radius: 4px; margin-top: 14px; font-weight: 600; }
        .admin-alert.success { display: block; color: var(--success); background: rgba(40, 167, 69, 0.12); }
        .admin-alert.error { display: block; color: var(--danger); background: rgba(220, 53, 69, 0.12); }
        .admin-empty { text-align: center; color: #667; padding: 34px !important; }
        .admin-locked .admin-private { display: none !important; }
        @media (max-width: 992px) { .admin-hero-grid, .admin-workspace-grid, .admin-stat-grid { grid-template-columns: 1fr; } }
        @media (max-width: 768px) { .admin-hero h1 { font-size: 2.25rem; } .admin-panel-header, .admin-toolbar, .admin-form-actions { align-items: stretch; flex-direction: column; } }

        .admin-password-form {
            margin-top: 22px;
            padding-top: 22px;
            border-top: 1px solid #e6e9ee;
        }

        .admin-password-form h3 {
            color: var(--secondary);
            font-size: 1.1rem;
            margin-bottom: 14px;
        }


        .tracking-result-card {
            display: grid;
            grid-template-columns: 180px 1fr;
            gap: 18px;
            align-items: stretch;
            color: var(--light);
        }

        .tracking-result-image {
            width: 100%;
            min-height: 160px;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.22);
        }

        .tracking-result-details strong {
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.6px;
            font-size: 0.82rem;
        }

        .tracking-result-details h3 {
            color: white;
            font-size: 1.45rem;
            margin: 6px 0 12px;
        }

        .tracking-result-details dl {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px 18px;
        }

        .tracking-result-details dt {
            color: rgba(255, 255, 255, 0.68);
            font-size: 0.82rem;
        }

        .tracking-result-details dd {
            color: white;
            font-weight: 700;
            margin: 2px 0 0;
        }

        .admin-shell .admin-private[hidden] {
            display: none !important;
        }

        .admin-session-actions {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }

        .admin-text-link {
            background: none;
            border: none;
            color: var(--primary);
            font-weight: 700;
            cursor: pointer;
            padding: 10px 0;
        }

        .admin-package-cell {
            display: grid;
            grid-template-columns: 48px minmax(120px, 1fr);
            gap: 10px;
            align-items: center;
        }

        .admin-package-cell img {
            width: 48px;
            height: 48px;
            object-fit: cover;
            border-radius: 6px;
            border: 1px solid #e6e9ee;
        }

        .admin-password-modal {
            position: fixed;
            inset: 0;
            z-index: 3000;
            background: rgba(0, 0, 0, 0.72);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .admin-password-modal[hidden] {
            display: none !important;
        }

        .admin-password-dialog {
            position: relative;
            width: min(520px, 100%);
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
        }

        .admin-password-dialog h2 {
            color: var(--secondary);
            margin-bottom: 8px;
        }

        .admin-password-dialog p {
            color: #667;
            margin-bottom: 18px;
        }

        @media (max-width: 576px) {
            .tracking-result-card,
            .tracking-result-details dl {
                grid-template-columns: 1fr;
            }
        }


        .asset-result-card {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 24px;
            color: var(--light);
        }

        .asset-result-media img {
            width: 100%;
            height: 100%;
            min-height: 260px;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.22);
        }

        .asset-result-body > strong {
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.7px;
            font-size: 0.82rem;
        }

        .asset-result-body h3 {
            color: white;
            font-size: 1.65rem;
            margin: 6px 0 10px;
        }

        .asset-result-body p {
            color: rgba(255, 255, 255, 0.78);
            margin-bottom: 18px;
        }

        .asset-detail-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .asset-detail-grid div {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 6px;
            padding: 12px;
        }

        .asset-detail-grid span {
            display: block;
            color: rgba(255, 255, 255, 0.64);
            font-size: 0.82rem;
            margin-bottom: 4px;
        }

        .asset-detail-grid b {
            color: white;
            font-size: 0.95rem;
        }

        .asset-documents {
            margin-top: 20px;
        }

        .asset-documents h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .asset-documents ul {
            display: grid;
            gap: 8px;
            list-style: none;
        }

        .asset-documents li {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 8px;
            align-items: center;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 6px;
            padding: 10px 12px;
        }

        .asset-documents li span {
            color: white;
            font-weight: 700;
        }

        .asset-documents li strong {
            color: var(--success);
        }

        .asset-documents li small {
            grid-column: 1 / -1;
            color: rgba(255, 255, 255, 0.65);
        }

        @media (max-width: 768px) {
            .asset-result-card,
            .asset-detail-grid {
                grid-template-columns: 1fr;
            }
        }


        .asset-result-page {
            background: var(--secondary);
        }

        .asset-result-shell {
            padding-top: 80px;
        }

        .asset-result-hero {
            min-height: calc(100vh - 80px);
            background: linear-gradient(rgba(26, 42, 58, 0.92), rgba(26, 42, 58, 0.9)),
                        url('https://images.unsplash.com/photo-1605792657660-596af9009e82?auto=format&fit=crop&w=1600&q=85') center/cover;
            padding: 56px 0;
        }

        .asset-result-heading {
            max-width: 780px;
            margin-bottom: 28px;
        }

        .asset-result-heading h1 {
            color: white;
            font-size: 2.8rem;
            line-height: 1.15;
            margin: 10px 0 12px;
        }

        .asset-result-heading p {
            color: rgba(255, 255, 255, 0.78);
            font-size: 1.05rem;
        }

        .asset-result-content {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 8px;
            padding: 24px;
            backdrop-filter: blur(8px);
        }

        .standalone-asset-card {
            color: white;
        }

        .asset-result-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 24px;
        }

        .asset-result-empty {
            color: white;
            text-align: center;
            padding: 50px 20px;
        }

        .asset-result-empty h2 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .asset-result-heading h1 {
                font-size: 2.1rem;
            }

            .asset-result-content {
                padding: 16px;
            }
        }

        /* Live Chat Widget */
        .live-chat-panel {
            position: fixed;
            right: 30px;
            bottom: 105px;
            width: min(420px, calc(100vw - 32px));
            height: min(600px, calc(100vh - 140px));
            background: white;
            border-radius: 12px;
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
            z-index: 1500;
            display: none;
            border: 1px solid #e6e9ee;
            flex-direction: column;
            overflow: hidden;
        }

        .live-chat-panel.active {
            display: flex;
        }

        .live-chat-header {
            background: var(--secondary);
            color: white;
            padding: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .live-chat-header > div {
            flex: 1;
        }

        .live-chat-header strong,
        .live-chat-header span {
            display: block;
        }

        .live-chat-header strong {
            color: var(--primary);
            font-size: 1.05rem;
            margin-bottom: 4px;
        }

        .live-chat-header span {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.9rem;
        }

        .live-chat-header b {
            color: var(--primary);
        }

        .live-chat-header button {
            width: 34px;
            height: 34px;
            border: none;
            border-radius: 50%;
            color: white;
            background: rgba(255, 255, 255, 0.12);
            cursor: pointer;
            font-size: 1.4rem;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .live-chat-header button:hover {
            background: rgba(255, 255, 255, 0.22);
        }

        .live-chat-thread {
            flex: 1;
            min-height: 0;
            overflow-y: auto;
            overflow-x: hidden;
            padding: 16px;
            background: #f7f8fa;
            display: grid;
            gap: 10px;
            align-content: start;
        }

        .live-chat-thread::-webkit-scrollbar {
            width: 6px;
        }

        .live-chat-thread::-webkit-scrollbar-track {
            background: transparent;
        }

        .live-chat-thread::-webkit-scrollbar-thumb {
            background: #d9dee6;
            border-radius: 3px;
        }

        .live-chat-thread::-webkit-scrollbar-thumb:hover {
            background: #c0c7d0;
        }

        .live-chat-form {
            flex-shrink: 0;
            background: white;
            border-top: 1px solid #e6e9ee;
            display: flex;
            flex-direction: column;
        }

        .live-chat-input-group {
            padding: 16px;
            display: grid;
            gap: 12px;
        }

        .live-chat-form .form-group {
            margin-bottom: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .live-chat-form .form-group label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--secondary);
            display: none;
        }

        .live-chat-input,
        .live-chat-textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #d9dee6;
            border-radius: 6px;
            background: white;
            color: var(--dark);
            font-size: 0.95rem;
            font-family: inherit;
            resize: none;
            transition: all 0.2s ease;
        }

        .live-chat-input:focus,
        .live-chat-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }

        .live-chat-input::placeholder,
        .live-chat-textarea::placeholder {
            color: #999;
        }

        .live-chat-textarea {
            min-height: 70px;
            max-height: 120px;
            resize: vertical;
        }

        .live-chat-form button {
            width: 100%;
            padding: 12px 24px;
            background-color: var(--primary);
            color: var(--secondary);
            border: none;
            border-radius: 6px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .live-chat-form button:hover {
            background-color: var(--accent);
            color: var(--light);
            transform: translateY(-1px);
        }

        .live-chat-form button:active {
            transform: translateY(0);
        }

        .live-chat-status {
            display: none;
            padding: 10px 12px;
            border-radius: 4px;
            margin-top: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            text-align: center;
        }

        .live-chat-status:not(:empty) {
            display: block;
        }

        .live-chat-message {
            max-width: 85%;
            padding: 12px 14px;
            border-radius: 8px;
            background: white;
            box-shadow: 0 2px 8px rgba(26, 42, 58, 0.08);
            word-wrap: break-word;
            overflow-wrap: break-word;
            animation: slideIn 0.3s ease;
        }

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

        .live-chat-message.from-customer {
            justify-self: end;
            background: var(--primary);
            color: var(--secondary);
        }

        .live-chat-message.from-admin {
            justify-self: start;
            background: white;
            color: var(--dark);
        }

        .live-chat-message span {
            display: block;
            font-size: 0.75rem;
            font-weight: 800;
            margin-bottom: 6px;
            opacity: 0.8;
        }

        .live-chat-message p {
            margin: 0;
            line-height: 1.4;
            font-size: 0.95rem;
        }

        .live-chat-message small {
            display: block;
            font-size: 0.7rem;
            margin-top: 6px;
            opacity: 0.7;
        }

        .admin-chat-list {
            display: grid;
            gap: 10px;
            max-height: 620px;
            overflow-y: auto;
        }

        .admin-chat-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: flex-end;
        }

        .admin-contact-list {
            display: grid;
            gap: 14px;
        }

        .admin-contact-card {
            border: 1px solid #e3e7ee;
            border-radius: 8px;
            padding: 16px;
            background: #fbfcfd;
        }

        .admin-contact-card-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            gap: 16px;
            margin-bottom: 12px;
        }

        .admin-reply-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: flex-end;
        }

        .admin-reply-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 34px;
            padding: 7px 10px;
            border-radius: 4px;
            border: 1px solid var(--primary);
            color: var(--secondary);
            background: rgba(212, 175, 55, 0.12);
            font-size: 0.84rem;
            font-weight: 800;
            white-space: nowrap;
        }

        .admin-reply-links a:hover {
            background: var(--primary);
        }

        .admin-contact-card-header strong,
        .admin-contact-card-header span {
            display: block;
        }

        .admin-contact-select {
            display: flex;
            align-items: start;
            gap: 10px;
        }

        .admin-contact-select input {
            width: 18px;
            height: 18px;
            margin-top: 3px;
            accent-color: var(--primary);
        }

        .admin-contact-card-header strong {
            color: var(--secondary);
            font-size: 1.05rem;
        }

        .admin-contact-card-header span {
            color: #758195;
            font-size: 0.85rem;
            margin-top: 3px;
        }

        .admin-contact-card dl {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            margin: 0 0 12px;
        }

        .admin-contact-card dt {
            color: #758195;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .admin-contact-card dd {
            margin: 3px 0 0;
            color: var(--dark);
            overflow-wrap: anywhere;
        }

        .admin-contact-card p {
            margin: 0;
            color: var(--dark);
            line-height: 1.55;
            white-space: pre-wrap;
        }

        .admin-chat-item {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: center;
            gap: 10px;
            text-align: left;
            border: 1px solid #e6e9ee;
            background: white;
            border-radius: 6px;
            padding: 13px;
            cursor: pointer;
        }

        .admin-chat-open {
            display: grid;
            gap: 5px;
            min-width: 0;
            padding: 0;
            border: 0;
            background: transparent;
            color: inherit;
            font: inherit;
            text-align: left;
            cursor: pointer;
        }

        .admin-chat-delete {
            width: 34px;
            height: 34px;
            border: 1px solid #e6e9ee;
            border-radius: 4px;
            background: #fff;
            color: #b33a3a;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .admin-chat-delete:hover {
            border-color: #b33a3a;
            background: rgba(179, 58, 58, 0.08);
        }

        .admin-chat-item:hover,
        .admin-chat-item.active {
            border-color: var(--primary);
            box-shadow: 0 6px 18px rgba(26, 42, 58, 0.1);
        }

        .admin-chat-item.unread {
            border-left: 4px solid var(--primary);
        }

        .admin-chat-item strong {
            color: var(--secondary);
        }

        .admin-chat-item span,
        .admin-chat-item small,
        .admin-chat-header p {
            color: #667;
        }

        .admin-chat-thread {
            max-height: 380px;
            overflow-y: auto;
            background: #f7f8fa;
            border: 1px solid #e6e9ee;
            border-radius: 8px;
            padding: 16px;
            display: grid;
            gap: 10px;
            align-content: start;
            flex-shrink: 0;
        }

        .chat-message {
            max-width: 84%;
            padding: 11px 13px;
            border-radius: 8px;
            background: white;
            box-shadow: 0 3px 10px rgba(26, 42, 58, 0.08);
        }

        .chat-message.from-admin {
            justify-self: end;
            background: var(--primary);
            color: var(--secondary);
        }

        .chat-message.from-customer {
            justify-self: start;
        }

        .chat-message span {
            font-size: 0.78rem;
            font-weight: 800;
        }

        .chat-message p {
            margin: 4px 0;
        }

        .chat-message small {
            font-size: 0.72rem;
            opacity: 0.65;
        }

        .admin-chat-form {
            margin-top: 16px;
            flex-shrink: 0;
            display: grid;
            gap: 12px;
        }

        .admin-chat-form .form-group {
            margin-bottom: 0;
        }

        .admin-chat-form textarea {
            width: 100%;
            min-height: 110px;
            padding: 12px;
            border: 1px solid #d9dee6;
            border-radius: 4px;
            resize: vertical;
        }

        .admin-chat-form button {
            width: 100%;
            padding: 12px 24px;
            background-color: var(--primary);
            color: var(--secondary);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .admin-chat-form button:hover {
            background-color: var(--accent);
            color: var(--light);
            transform: translateY(-2px);
        }

        .chat-admin-grid {
            grid-template-columns: 1.5fr 0.7fr;
            gap: 24px;
        }

        .chat-admin-grid .admin-panel {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .chat-admin-grid .admin-panel .admin-chat-header {
            flex-shrink: 0;
        }

        .chat-admin-grid .admin-panel .admin-chat-thread {
            flex: 1;
            max-height: 380px;
            overflow-y: auto;
        }

        .chat-admin-grid .admin-panel .admin-chat-form {
            flex-shrink: 0;
            margin-top: auto;
        }

        @media (max-width: 576px) {
            .live-chat-panel {
                right: 16px;
                bottom: 96px;
                width: calc(100vw - 32px);
                max-width: 100%;
                height: min(85vh, 700px);
            }

            .live-chat-thread {
                min-height: 0;
            }

            .live-chat-input-group {
                padding: 12px;
            }

            .live-chat-textarea {
                min-height: 60px;
                max-height: 100px;
            }

            .live-chat-form button {
                padding: 10px 16px;
                font-size: 0.85rem;
            }

            .admin-contact-card-header,
            .admin-contact-card dl {
                display: grid;
                grid-template-columns: 1fr;
            }

            .admin-reply-links {
                justify-content: start;
            }
        }
