
        /* --- GLOBAL VARIABLES --- */
        :root {
            --primary-red: #D80000;
            --primary-dark-red: #b30000;
            --dark-bg: #030303;
            --card-bg: #0d0d0d;
            --text-white: #ffffff;
            --text-gray: #b0b0b0;
            --whatsapp-green: #25D366;
            --font-main: 'Kanit', sans-serif;
            --font-secondary: 'Google Sans', Roboto, sans-serif;
        }

        .kanit-thin {
            font-family: "Kanit", sans-serif;
            font-weight: 100;
            font-style: normal;
        }

        .kanit-extralight {
            font-family: "Kanit", sans-serif;
            font-weight: 200;
            font-style: normal;
        }

        .kanit-light {
            font-family: "Kanit", sans-serif;
            font-weight: 300;
            font-style: normal;
        }

        .kanit-regular {
            font-family: "Kanit", sans-serif;
            font-weight: 400;
            font-style: normal;
        }

        .kanit-medium {
            font-family: "Kanit", sans-serif;
            font-weight: 500;
            font-style: normal;
        }

        .kanit-semibold {
            font-family: "Kanit", sans-serif;
            font-weight: 600;
            font-style: normal;
        }

        .kanit-bold {
            font-family: "Kanit", sans-serif;
            font-weight: 700;
            font-style: normal;
        }

        .kanit-extrabold {
            font-family: "Kanit", sans-serif;
            font-weight: 800;
            font-style: normal;
        }

        .kanit-black {
            font-family: "Kanit", sans-serif;
            font-weight: 900;
            font-style: normal;
        }

        .kanit-thin-italic {
            font-family: "Kanit", sans-serif;
            font-weight: 100;
            font-style: italic;
        }

        .kanit-extralight-italic {
            font-family: "Kanit", sans-serif;
            font-weight: 200;
            font-style: italic;
        }

        .kanit-light-italic {
            font-family: "Kanit", sans-serif;
            font-weight: 300;
            font-style: italic;
        }

        .kanit-regular-italic {
            font-family: "Kanit", sans-serif;
            font-weight: 400;
            font-style: italic;
        }

        .kanit-medium-italic {
            font-family: "Kanit", sans-serif;
            font-weight: 500;
            font-style: italic;
        }

        .kanit-semibold-italic {
            font-family: "Kanit", sans-serif;
            font-weight: 600;
            font-style: italic;
        }

        .kanit-bold-italic {
            font-family: "Kanit", sans-serif;
            font-weight: 700;
            font-style: italic;
        }

        .kanit-extrabold-italic {
            font-family: "Kanit", sans-serif;
            font-weight: 800;
            font-style: italic;
        }

        .kanit-black-italic {
            font-family: "Kanit", sans-serif;
            font-weight: 900;
            font-style: italic;
        }

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

        body {
            font-family: var(--font-secondary);
            background-color: var(--dark-bg);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
            -webkit-tap-highlight-color: transparent;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }

        ul {
            list-style: none;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .btn,
        .btn-cta,
        .btn-outline,
        .btn-whatsapp,
        .logo-text,
        .nav-links a,
        .badge,
        .shop-filter-btn,
        .product-name,
        .product-price {
            font-family: var(--font-main);
            font-weight: 700;
        }

        /* --- BUTTONS --- */
        .btn-cta {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 800;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(216, 0, 0, 0.3);
            text-align: center;
            display: inline-block;
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(216, 0, 0, 0.5);
        }

        .btn-cta:disabled {
            background: #555;
            cursor: not-allowed;
            box-shadow: none;
        }

        .btn-copy {
            background: #444;
            color: white;
            border: 1px solid #666;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.7rem;
            cursor: pointer;
            margin-left: 10px;
            text-transform: uppercase;
        }

        .btn-copy:active {
            background: var(--primary-red);
            border-color: var(--primary-red);
        }

        .btn-outline {
            border: 2px solid white;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            display: inline-block;
            text-align: center;
            cursor: pointer;
        }

        .btn-outline:hover {
            background-color: white;
            color: black;
        }

        .btn-whatsapp {
            background-color: var(--whatsapp-green);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            border: none;
            cursor: pointer;
            text-decoration: none;
        }

        .btn-whatsapp:hover {
            background-color: #1ebe57;
            transform: translateY(-2px);
        }

        /* ---- SHOP SECTION ---- */
        .shop-section {
            padding: 5rem 5%;
            background-color: var(--dark-bg);
        }

        .shop-filters {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
            justify-content: center;
        }

        .shop-filter-btn {
            padding: 8px 20px;
            border-radius: 30px;
            border: 1px solid #333;
            background: var(--card-bg);
            color: var(--text-gray);
            font-family: var(--font-main);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .shop-filter-btn:hover,
        .shop-filter-btn.active {
            background: var(--primary-red);
            border-color: var(--primary-red);
            color: white;
        }

        .shop-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.5rem;
            max-width: 1300px;
            margin: 0 auto;
        }

        .product-card {
            background: var(--card-bg);
            border: 1px solid #2a2a2a;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
            border-color: var(--primary-red);
        }

        .product-img-wrap {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: #1a1a1a;
        }

        .product-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-img-wrap img {
            transform: scale(1.08);
        }

        .product-badge-featured {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--primary-red);
            color: white;
            font-size: 0.65rem;
            font-weight: 800;
            padding: 4px 10px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .product-img-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            opacity: 0.3;
        }

        .product-info {
            padding: 1.2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-category-tag {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary-red);
            font-weight: 700;
            margin-bottom: 6px;
        }

        .product-name {
            font-size: 1.05rem;
            font-weight: 800;
            color: white;
            margin-bottom: 6px;
            text-transform: uppercase;
        }

        .product-description {
            font-size: 0.85rem;
            color: var(--text-gray);
            margin-bottom: 1rem;
            flex: 1;
            line-height: 1.5;
        }

        .product-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid #2a2a2a;
        }

        .product-price {
            font-size: 1.4rem;
            font-weight: 800;
            color: white;
        }

        .product-price small {
            font-size: 0.75rem;
            color: var(--text-gray);
            display: block;
            font-weight: 400;
        }

        .product-stock-low {
            color: var(--primary-red);
            font-size: 0.7rem;
            text-transform: uppercase;
            font-weight: 700;
        }

        .product-enquiry-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            width: 100%;
            margin-top: 1rem;
            background: linear-gradient(135deg, #1a8a3c, #25D366);
            color: white;
            border: none;
            border-radius: 10px;
            padding: 0.75rem 1rem;
            font-family: var(--font-main);
            font-size: 0.82rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 3px 12px rgba(37, 211, 102, 0.25);
            text-decoration: none;
        }

        .product-enquiry-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
            background: linear-gradient(135deg, #25D366, #1a8a3c);
            color: white;
        }

        .product-enquiry-btn svg {
            flex-shrink: 0;
        }

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

        .product-img-no-image {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #555;
        }

        .product-img-no-image .no-img-icon {
            font-size: 2.8rem;
            opacity: 0.4;
        }

        .product-img-no-image .no-img-label {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0.4;
            font-weight: 700;
        }

        .shop-show-more-wrap {
            grid-column: 1 / -1;
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }

        .shop-show-more-btn {
            background: transparent;
            border: 2px solid #444;
            color: #aaa;
            padding: 0.7rem 2.5rem;
            border-radius: 50px;
            font-family: var(--font-main);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .shop-show-more-btn:hover {
            border-color: var(--primary-red);
            color: white;
        }

        .shop-show-more-btn .arrow {
            transition: transform 0.3s;
            display: inline-block;
        }

        .shop-show-more-btn.expanded .arrow {
            transform: rotate(180deg);
        }

        /* Shop Login Modal */
        #shopLoginModal .modal-box {
            border-top: 4px solid var(--primary-red);
        }

        #shopLoginModal .shop-login-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            display: block;
        }

        #shopLoginModal h2 {
            font-size: 1.4rem;
            color: white;
            margin-bottom: 6px;
        }

        #shopLoginModal p {
            color: #aaa;
            font-size: 0.88rem;
            margin-bottom: 1.4rem;
            line-height: 1.5;
        }

        #shopLoginModal .form-input {
            margin-bottom: 12px;
        }

        #shopLoginModal .btn-cta {
            width: 100%;
            padding: 0.9rem;
            font-size: 0.95rem;
        }


        /* Mobile shop enhancements */
        @media (max-width: 640px) {
            .shop-section {
                padding: 3rem 4%;
            }

            .shop-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.85rem;
            }

            .product-img-wrap {
                height: 130px;
            }

            .product-info {
                padding: 0.85rem;
            }

            .product-name {
                font-size: 0.82rem;
                margin-bottom: 4px;
            }

            .product-description {
                font-size: 0.75rem;
                margin-bottom: 0.6rem;
            }

            .product-category-tag {
                font-size: 0.62rem;
                margin-bottom: 4px;
            }

            .product-price {
                font-size: 1.05rem;
            }

            .product-price small {
                font-size: 0.65rem;
            }

            .product-footer {
                padding-top: 0.6rem;
            }

            .product-enquiry-btn {
                font-size: 0.7rem;
                padding: 0.55rem 0.5rem;
                gap: 5px;
                border-radius: 8px;
                margin-top: 0.6rem;
            }

            .product-enquiry-btn svg {
                width: 13px;
                height: 13px;
            }

            .shop-filter-btn {
                padding: 6px 14px;
                font-size: 0.72rem;
            }

            .shop-show-more-btn {
                font-size: 0.78rem;
                padding: 0.6rem 1.8rem;
            }

            .product-img-no-image .no-img-icon {
                font-size: 1.8rem;
            }

            .product-img-no-image .no-img-label {
                font-size: 0.58rem;
            }
        }

        @media (max-width: 380px) {
            .shop-grid {
                grid-template-columns: 1fr;
            }

            .product-img-wrap {
                height: 170px;
            }
        }

        .shop-loading,
        .shop-empty {
            grid-column: 1 / -1;
            text-align: center;
            padding: 3rem;
            color: var(--text-gray);
        }

        /* SHOP BUTTON IN NAV */
        .nav-shop-btn {
            background: var(--primary-red);
            color: white !important;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.85rem !important;
            font-weight: 800 !important;
            letter-spacing: 0.5px;
            transition: all 0.3s !important;
        }

        .nav-shop-btn:hover {
            background: var(--primary-dark-red) !important;
            color: white !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(216, 0, 0, 0.4);
        }

        @media (max-width: 768px) {
            .shop-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
        }

        @media (max-width: 480px) {
            .shop-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }

            .product-img-wrap {
                height: 150px;
            }

            .product-name {
                font-size: 0.9rem;
            }
        }

        .hero {
            height: 85vh;
            min-height: 550px;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), url('/assets/images/hero.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 120px 1.5rem 0 1.5rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            text-transform: uppercase;
            margin-bottom: 1rem;
            line-height: 1.1;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        }

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

        .hero p {
            color: #ddd;
            max-width: 600px;
            margin-bottom: 2.5rem;
            font-size: 1.2rem;
            font-weight: 400;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
        }

        /* --- STATS --- */
        .stats-bar {
            background-color: var(--card-bg);
            display: flex;
            justify-content: center;
            gap: 4rem;
            padding: 2.5rem 5%;
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            min-width: 100px;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 0.2rem;
            font-weight: 800;
        }

        .stat-item p {
            color: var(--text-gray);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- CATEGORIES --- */
        .category-section {
            padding: 5rem 5%;
            text-align: center;
            overflow: hidden;
        }

        .section-header {
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            text-transform: uppercase;
            color: white;
            margin-bottom: 0.5rem;
        }

        .section-header span {
            color: var(--primary-red);
        }

        .section-header p {
            color: var(--text-gray);
            font-size: 1.1rem;
        }

        .category-container {
            display: flex;
            gap: 1.5rem;
            max-width: 100%;
            margin: 0 auto;
            overflow-x: auto;
            padding: 2rem 5%;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .category-container::-webkit-scrollbar {
            display: none;
        }

        .category-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            flex: 0 0 30%;
            min-width: 280px;
            height: 420px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            scroll-snap-align: start;
        }

        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .category-card:hover img {
            transform: scale(1.12);
        }

        .category-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
            border: 2px solid var(--primary-red);
        }

        .cat-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
            backdrop-filter: blur(2px);
            display: flex;
            flex-direction: column;
            justify-content: end;
            padding: 1.5rem;
            text-align: center;
        }

        .cat-title {
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
            color: white;
        }

        .cat-desc {
            font-size: 1.1rem;
            color: #ddd;
            margin-bottom: 1.5rem;
            line-height: 1.4;
        }

        .cat-btn {
            align-self: center;
            width: 80%;
            max-width: 250px;
            padding: 1rem;
        }

        /* Mobile Dropdown Styling */
        .mobile-service-select {
            display: none;
            margin-bottom: 2rem;
        }

        /* --- PRICING --- */
        .pricing-section {
            padding: 4rem 5%;
            display: none;
            animation: fadeIn 0.5s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .package-card {
            background-color: var(--card-bg);
            border: 1px solid #333;
            border-radius: 15px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
        }

        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .package-card.highlight {
            border: 2px solid var(--primary-red);
            box-shadow: 0 0 20px rgba(216, 0, 0, 0.15);
        }

        .package-card.highlight::before {
            content: "POPULAR";
            position: absolute;
            top: 15px;
            right: -30px;
            background: var(--primary-red);
            color: white;
            padding: 5px 30px;
            font-size: 0.7rem;
            font-weight: bold;
            transform: rotate(45deg);
            width: 120px;
            text-align: center;
        }

        .pkg-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--primary-red);
        }

        .pkg-tag {
            background-color: var(--primary-red);
            color: white;
            padding: 0.3rem 0.8rem;
            font-size: 0.75rem;
            font-weight: bold;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 1rem;
            align-self: flex-start;
            text-transform: uppercase;
        }

        .pkg-name {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-transform: uppercase;
            color: white;
        }

        .pkg-prices {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border-left: 3px solid var(--primary-red);
        }

        .pkg-prices span {
            display: block;
            color: #ddd;
            margin-bottom: 5px;
            font-size: 0.9rem;
        }

        .pkg-prices b {
            color: var(--primary-red);
            font-size: 1.1rem;
        }

        .pkg-features {
            list-style: none;
            margin-bottom: 2rem;
            flex-grow: 1;
            position: relative;
        }

        .pkg-features li {
            margin-bottom: 0.8rem;
            color: #ccc;
            padding-left: 25px;
            position: relative;
            font-size: 0.95rem;
        }

        .pkg-features li::before {
            content: "";
            color: var(--primary-red);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* Show only first 4 items by default */
        .pkg-features li:nth-child(n+5) {
            display: none;
        }

        .pkg-features.expanded li:nth-child(n+5) {
            display: list-item;
        }

        .pkg-show-more {
            background: none;
            border: none;
            color: var(--primary-red);
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 700;
            padding: 6px 0;
            text-align: left;
            display: none;
            /* hidden by JS if <=4 items */
        }

        .pkg-show-more:hover {
            text-decoration: underline;
        }

        .tax-note {
            font-size: 0.75rem;
            color: #888;
            text-transform: uppercase;
            margin-top: -10px;
            margin-bottom: 15px;
        }

        /* --- FLEET --- */
        .fleet-container {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(145deg, #222, #1a1a1a);
            padding: 4rem 2rem;
            border-radius: 20px;
            border: 1px solid #444;
        }

        .fleet-btns {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        /* --- REVIEWS --- */
        .reviews-section {
            padding: 5rem 5%;
            background-color: #0a0a0a;
        }

        .review-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 12px;
            border-top: 3px solid var(--primary-red);
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 1rem;
        }

        .reviewer-avatar {
            width: 45px;
            height: 45px;
            background: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
        }

        .stars {
            color: #FFD700;
            letter-spacing: 3px;
            font-size: 0.9rem;
        }

        /* --- MODALS --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 3000;
            padding: 20px;
        }

        .modal-overlay.open {
            display: flex !important;
        }

        /* --- MOBILE VISIBILITY FIX FOR MODALS --- */
        .modal-box {
            background: linear-gradient(145deg, #1e1e1e, #121212);
            padding: 2.5rem;
            border-radius: 20px;
            width: 100%;
            max-width: 450px;
            border: 1px solid #333;
            text-align: center;
            position: relative;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.3s ease-out;
            max-height: 90vh;
            /* Prevents modal from being taller than screen */
            overflow-y: auto;
            /* Enables scrolling inside the modal */
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
            transition: 0.2s;
        }

        .close-modal:hover {
            color: white;
        }

        .form-input {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            background: #252525;
            border: 1px solid #444;
            color: white;
            border-radius: 8px;
            font-size: 1rem;
            font-family: var(--font-main);
            transition: 0.3s;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-red);
            background: #303030;
        }

        select.form-control {
            height: 55px;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23D80000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: right 1em top 50%;
            background-size: 0.8em auto;
        }

        #successModal .modal-box {
            border-top: 4px solid var(--whatsapp-green);
        }

        .success-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .success-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 20px;
        }

        /* --- BOOKING FORM & BILLING SUMMARY --- */
        .booking-section {
            padding: 5rem 5%;
            background-color: var(--card-bg);
            border-top: 1px solid #333;
            display: none;
        }

        .form-container {
            max-width: 700px;
            margin: 0 auto;
            background: #151515;
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid #333;
        }

        /* BILLING CALCULATOR STYLES */
        .billing-summary {
            background-color: #030303;
            border-radius: 4px;
            padding: 20px 20px 20px 25px;
            margin-bottom: 25px;
            border: 1px solid #222;
            display: block;
            /* Show by default */
            animation: fadeIn 0.4s ease;
            position: relative;
        }

        /* Red accent line on left */
        .billing-summary::before {
            content: "";
            position: absolute;
            left: 0;
            top: 15px;
            bottom: 15px;
            width: 5px;
            background-color: var(--primary-red);
            border-radius: 0 4px 4px 0;
        }

        .bill-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 1rem;
            color: #ccc;
        }

        .bill-row.total-row {
            border-top: 1px solid #333;
            padding-top: 15px;
            margin-top: 15px;
            font-weight: 800;
            color: white;
            font-size: 1.25rem;
            margin-bottom: 15px;
        }

        .bill-row.highlight {
            color: var(--primary-red);
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }

        /* NON-REFUNDABLE POLICY NOTE */
        .policy-note {
            background: rgba(216, 0, 0, 0.15);
            border: 1px solid var(--primary-red);
            color: #ff6b6b;
            padding: 15px;
            font-size: 0.85rem;
            text-align: center;
            border-radius: 6px;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.4;
        }

        /* --- FOOTER --- */
        footer {
            background: black;
            padding: 4rem 5% 2rem;
            border-top: 3px solid var(--primary-red);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            text-transform: uppercase;
            font-weight: 700;
        }

        .contact-info li {
            margin-bottom: 1rem;
        }

        .contact-info a {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-gray);
            transition: 0.3s;
        }

        .contact-info a:hover {
            color: var(--primary-red);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            color: #555;
            padding-top: 2rem;
            border-top: 1px solid #222;
            font-size: 0.9rem;
        }

        /* --- NEW PAYMENT MODAL STYLES --- */
        .payment-details-box {
            background: #181818;
            padding: 20px;
            border-radius: 12px;
            text-align: left;
            margin-bottom: 25px;
            border-left: 4px solid var(--whatsapp-green);
            border: 1px solid #333;
            border-left-width: 4px;
            /* Ensure green line stays */
            box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
        }

        .payment-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* Centers text and button vertically */
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #2a2a2a;
        }

        .payment-row:last-of-type {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .pay-label {
            color: #888;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 4px;
        }

        .pay-value {
            color: white;
            font-size: 1.1rem;
            /* Slightly smaller for better mobile fit */
            font-weight: 700;
            word-break: break-all;
            /* Prevents long emails from breaking layout */
            line-height: 1.2;
        }

        .pay-value-large {
            font-size: 1.6rem;
            color: white;
            font-weight: 800;
        }

        /* Update Mobile Query for Modal */
        @media (max-width: 768px) {
            .modal-box {
                padding: 1.5rem;
                width: 90%;
                max-width: 90%;
                display: flex;
                flex-direction: column;
            }

            .payment-details-box {
                padding: 15px;
            }

            .pay-value {
                font-size: 0.95rem;
                /* Smaller font for email on mobile */
            }

            .btn-copy {
                padding: 6px 12px;
                /* Larger touch target for mobile */
            }
        }

        /* --- MOBILE & TABLET OPTIMIZATIONS --- */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-header h2 {
                font-size: 2.2rem;
            }

            .category-card {
                flex: 0 0 45%;
                height: 450px;
            }
        }

        @media (max-width: 768px) {
            

            

            

            

            

            

            .hero {
                height: 75vh;
                min-height: 500px;
                padding: 0 1rem;
            }

            .hero h1 {
                font-size: 2.4rem;
                line-height: 1.2;
            }

            .hero p {
                font-size: 1.1rem;
                max-width: 90%;
            }

            .stats-bar {
                gap: 2rem;
                padding: 2rem 5%;
            }

            .stat-item h3 {
                font-size: 2rem;
            }

            .stat-item p {
                font-size: 0.85rem;
            }

            .category-section {
                padding: 3rem 5%;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            /* --- MOBILE DROPDOWN LOGIC --- */
            .category-container {
                display: none;
            }

            /* Hide the slider on mobile */
            .mobile-service-select {
                display: block;
            }

            /* Show the dropdown on mobile */

            .cat-title {
                font-size: 1.6rem;
            }

            .cat-desc {
                font-size: 0.95rem;
                margin-bottom: 1.2rem;
            }

            .cat-btn {
                width: 85%;
                padding: 0.7rem;
                font-size: 0.85rem;
            }

            .pricing-section {
                padding: 3rem 5%;
            }

            /* Stack pricing cards vertically on mobile */
            .packages-grid {
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
            }

            .package-card {
                padding: 1.8rem;
            }

            .pkg-name {
                font-size: 1.4rem;
            }

            .pkg-prices span {
                font-size: 0.85rem;
            }

            .pkg-prices b {
                font-size: 1rem;
            }

            .pkg-features li {
                font-size: 0.9rem;
            }

            .reviews-section {
                padding: 3rem 5%;
            }

            .review-card {
                padding: 1.5rem;
            }

            .booking-section {
                padding: 3rem 5%;
            }

            .form-container {
                padding: 1.8rem;
            }

            footer {
                padding: 2.5rem 5% 1.5rem;
            }

            .footer-col h4 {
                font-size: 1rem;
            }

            .contact-info a {
                font-size: 0.9rem;
            }

            .copyright {
                font-size: 0.8rem;
            }

            /* Modal adjustment for mobile */
            .modal-box {
                padding: 1.5rem;
                width: 90%;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.1rem;
            }

            .category-card {
                height: 300px;
            }

            .cat-title {
                font-size: 1.4rem;
            }

            .cat-desc {
                font-size: 0.9rem;
            }
        }

        /* ADD-ON CHECKBOXES */
        .addon-checkbox {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #1e1e1e;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 10px 15px;
            font-size: 0.9rem;
            color: #ccc;
            cursor: pointer;
            transition: all 0.2s;
            font-family: var(--font-main);
        }

        .addon-checkbox:hover {
            border-color: var(--primary-red);
            background: #221010;
        }

        .addon-checkbox input[type="checkbox"] {
            accent-color: var(--primary-red);
            width: 15px;
            height: 15px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .addon-checkbox b {
            color: var(--primary-red);
            font-size: 0.8rem;
            margin-left: auto;
        }

        .addon-checkbox:has(input:checked) {
            border-color: var(--primary-red);
            background: rgba(216, 0, 0, 0.08);
            color: white;
        }

        @media (max-width: 768px) {
            #addonsList {
                grid-template-columns: 1fr !important;
            }
        }
    

        .promo-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            backdrop-filter: blur(4px);
        }

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

        .promo-modal-content {
            position: relative;
            background: var(--bg-card);
            max-width: 600px;
            width: 90%;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            transform: scale(0.9);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
        }

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

        .promo-modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            color: #fff;
            cursor: pointer;
            z-index: 10;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            background: rgba(0, 0, 0, 0.4);
            border-radius: 50%;
            width: 36px;
            height: 36px;
            line-height: 32px;
            text-align: center;
            transition: background 0.3s;
        }

        .promo-modal-close:hover {
            background: var(--primary-red);
        }

        .promo-modal-content img {
            width: 100%;
            height: auto;
            max-height: 350px;
            object-fit: cover;
            display: block;
            border-bottom: 2px solid var(--primary-red);
        }

        .promo-modal-text {
            padding: 2rem;
        }

        .promo-modal-text h3 {
            color: var(--primary-red);
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .promo-modal-text p {
            color: #ccc;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
    

/* --- HEADER & NAVIGATION GLOBALS --- */
:root {
    --primary-red: #D80000;
    --primary-dark-red: #b30000;
}

header {
    background-color: rgba(10, 10, 10, 0.65);
    padding: 0.5rem 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    width: 96%;
    max-width: 1400px;
    margin: 0 auto 20px auto;
    border-radius: 20px;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 2px solid var(--primary-red);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    font-family: 'Kanit', sans-serif;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    border: none;
    border-radius: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s ease;
}

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

.logo-text {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    font-family: 'Kanit', sans-serif;
    white-space: nowrap;
    line-height: 1;
}

.logo-text span {
    color: var(--primary-red);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
    font-family: 'Kanit', sans-serif;
}

.nav-links a:hover {
    color: var(--primary-red);
}

header .btn-cta {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(216, 0, 0, 0.3);
    text-align: center;
    display: inline-block;
    text-decoration: none;
    font-family: 'Kanit', sans-serif;
}
header .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 0, 0, 0.5);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    padding: 6rem 2rem 2rem;
    transition: left 0.4s ease;
    z-index: 2000;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.8);
    font-family: 'Kanit', sans-serif;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu a {
    display: block;
    padding: 1.2rem 0;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
    transition: 0.3s;
    text-decoration: none;
    color: #ffffff;
}

.mobile-menu a:hover {
    color: var(--primary-red);
    padding-left: 10px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 1999;
}

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

/* --- TABLET (≤900px) --- */
@media (max-width: 900px) {
    .nav-links,
    header .btn-cta {
        display: none !important;
    }
    .hamburger {
        display: block;
    }
    header {
        top: 20px;
        padding: 0.5rem 5%;
        width: 90%;
    }
    .logo-img {
        height: 38px;
        width: auto;
        max-width: 140px;
    }
    .logo-text {
        font-size: 1.1rem;
    }
}

/* --- MOBILE (≤480px) --- */
@media (max-width: 480px) {
    header {
        top: 10px;
        padding: 0.4rem 4%;
        width: 92%;
        border-radius: 14px;
    }
    .logo-img {
        height: 32px;
        width: auto;
        max-width: 120px;
    }
    .logo-text {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }
    .hamburger {
        font-size: 1.5rem;
    }
}
/* ============================================================
   Furious Empire — Package Search Styles
   pkg-search.css
   ============================================================ */

/* ── Navbar Search Button (Desktop) ─────────────────────────── */
.pkg-nav-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0.42rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Kanit', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pkg-nav-search-btn:hover {
  background: rgba(216, 0, 0, 0.18);
  border-color: rgba(216, 0, 0, 0.5);
  color: #fff;
}

.pkg-nav-search-btn svg {
  flex-shrink: 0;
}

/* ── Mobile Search Button (hidden on desktop) ────────────────── */
.pkg-mobile-search-btn {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  margin-right: 2px;
  transition: color 0.2s;
}

.pkg-mobile-search-btn:hover {
  color: #D80000;
}

/* ── Overlay (full-screen modal) ────────────────────────────── */
#pkg-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

#pkg-search-overlay.open {
  pointer-events: all;
  opacity: 1;
}

.pso-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.pso-panel {
  position: relative;
  z-index: 1;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  border-radius: 0 0 24px 24px;
  width: 96%;
  max-width: 860px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(-20px);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

#pkg-search-overlay.open .pso-panel {
  transform: translateY(0);
}

/* ── Panel Head ──────────────────────────────────────────────── */
.pso-head {
  padding: 1.25rem 1.5rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.pso-search-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(216, 0, 0, 0.3);
  border-radius: 12px;
  padding: 0 0.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pso-search-row:focus-within {
  border-color: #D80000;
  box-shadow: 0 0 0 3px rgba(216, 0, 0, 0.12);
}

.pso-search-icon {
  color: #D80000;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.pso-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
  font-family: 'Kanit', sans-serif;
  padding: 0.85rem 0.25rem;
  caret-color: #D80000;
}

.pso-input::placeholder {
  color: #444;
}

.pso-close-btn {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pso-close-btn:hover {
  background: rgba(216, 0, 0, 0.2);
  color: #fff;
}

/* ── Filters ─────────────────────────────────────────────────── */
.pso-filters {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pso-filter-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

.pso-filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pso-filter-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #555;
  font-family: 'Kanit', sans-serif;
}

.pso-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pso-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  color: #888;
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  font-family: 'Kanit', sans-serif;
  white-space: nowrap;
}

.pso-chip:hover {
  border-color: rgba(216, 0, 0, 0.4);
  color: #fff;
}

.pso-chip.active {
  background: linear-gradient(135deg, #D80000, #b30000);
  border-color: #D80000;
  color: #fff;
  box-shadow: 0 2px 8px rgba(216, 0, 0, 0.3);
}

.pso-sort-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-family: 'Kanit', sans-serif;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.pso-sort-select:focus {
  border-color: #D80000;
}

.pso-sort-select option {
  background: #111;
}

/* ── Meta ────────────────────────────────────────────────────── */
.pso-meta {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #555;
  font-family: 'Kanit', sans-serif;
  padding-bottom: 0.5rem;
}

.pso-meta-count {
  color: #D80000;
  font-weight: 800;
}

/* ── Results body ────────────────────────────────────────────── */
.pso-body {
  overflow-y: auto;
  flex: 1;
  padding: 1.25rem 1.5rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: #D80000 transparent;
}

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

.pso-body::-webkit-scrollbar-thumb {
  background: #D80000;
  border-radius: 2px;
}

/* ── Results grid ────────────────────────────────────────────── */
.pso-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

/* ── Result card ─────────────────────────────────────────────── */
.pso-result-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.2s ease;
  animation: psocardIn 0.25s ease;
  cursor: default;
}

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

.pso-result-card:hover {
  border-color: rgba(216, 0, 0, 0.3);
  background: rgba(216, 0, 0, 0.04);
}

.pso-result-tag {
  display: inline-block;
  background: linear-gradient(135deg, #D80000, #b30000);
  color: #fff;
  padding: 0.18rem 0.6rem;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Kanit', sans-serif;
  margin-bottom: 0.25rem;
}

.pso-result-name {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-family: 'Kanit', sans-serif;
  line-height: 1.2;
}

.pso-result-name mark {
  background: rgba(216,0,0,0.22);
  color: #ff6b6b;
  border-radius: 2px;
  padding: 0 2px;
}

.pso-result-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.2rem;
}

.pso-cat-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 50px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.07);
  color: #aaa;
  border: 1px solid rgba(255,255,255,0.08);
  font-family: 'Kanit', sans-serif;
}

.pso-type-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-family: 'Kanit', sans-serif;
}

.pso-type-badge.mobile {
  background: rgba(37,211,102,0.12);
  color: #25D366;
  border: 1px solid rgba(37,211,102,0.2);
}

.pso-type-badge.facility {
  background: rgba(216,0,0,0.1);
  color: #ff6b6b;
  border: 1px solid rgba(216,0,0,0.18);
}

.pso-result-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  font-family: 'Kanit', sans-serif;
  margin-top: 0.2rem;
}

.pso-result-price strong {
  color: #D80000;
  font-size: 1.35rem;
}

.pso-hst {
  font-size: 0.7rem;
  color: #666;
  font-weight: 400;
}

.pso-quote {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

.pso-result-prices-detail {
  font-size: 0.78rem;
  color: #666;
  font-family: 'Kanit', sans-serif;
  line-height: 1.5;
}

.pso-result-prices-detail mark {
  background: rgba(216,0,0,0.12);
  color: #ff8888;
  border-radius: 2px;
}

.pso-result-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 0.6rem;
}

.pso-result-features li {
  color: #999;
  font-size: 0.8rem;
  padding: 0.2rem 0 0.2rem 1rem;
  position: relative;
  font-family: 'Kanit', sans-serif;
}

.pso-result-features li::before {
  content: '✓';
  color: #D80000;
  position: absolute;
  left: 0;
  font-weight: 800;
}

.pso-result-features li mark {
  background: rgba(216,0,0,0.15);
  color: #ff8888;
  border-radius: 2px;
  padding: 0 2px;
}

.pso-extra {
  color: #555 !important;
  font-style: italic;
}
.pso-extra::before { color: #555 !important; content: '+' !important; }

.pso-result-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.pso-result-btn {
  flex: 1;
  min-width: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: 'Kanit', sans-serif;
  text-decoration: none;
  background: linear-gradient(135deg, #D80000, #b30000);
  color: #fff;
  box-shadow: 0 2px 10px rgba(216,0,0,0.2);
}

.pso-result-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(216,0,0,0.4);
}

.pso-wa-btn {
  background: linear-gradient(135deg, #25D366, #1ebe57);
  box-shadow: 0 2px 10px rgba(37,211,102,0.2);
}

.pso-wa-btn:hover {
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.pso-view-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
  box-shadow: none;
}

.pso-view-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  box-shadow: none;
  transform: none;
}

.pso-outline-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  box-shadow: none;
}

.pso-outline-btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.07);
  box-shadow: none;
  transform: none;
}

.pso-result-btn.small {
  padding: 0.4rem 0.7rem;
  font-size: 0.72rem;
  flex: none;
}

/* ── Empty state ─────────────────────────────────────────────── */
.pso-empty-inner {
  text-align: center;
  max-width: 480px;
  margin: 2rem auto;
}

.pso-empty-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.pso-empty-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  font-family: 'Kanit', sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.pso-empty-msg {
  color: #777;
  font-size: 0.9rem;
  font-family: 'Kanit', sans-serif;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.pso-empty-msg strong { color: #D80000; }

.pso-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pso-empty-actions .pso-result-btn { flex: none; }

/* ── Suggestions ─────────────────────────────────────────────── */
.pso-suggestions {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.25rem;
  text-align: left;
}

.pso-suggest-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555;
  font-family: 'Kanit', sans-serif;
  margin-bottom: 0.6rem;
}

.pso-suggest-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pso-suggest-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 0.85rem;
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pso-suggest-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Kanit', sans-serif;
  text-transform: uppercase;
}

.pso-suggest-price {
  font-size: 0.78rem;
  color: #D80000;
  font-weight: 700;
  font-family: 'Kanit', sans-serif;
}

/* ── Responsive ──────────────────────────────────────────────── */

/* Desktop: show text search button, hide mobile icon */
@media (min-width: 901px) {
  .pkg-nav-search-btn {
    display: inline-flex;
  }
  .pkg-mobile-search-btn {
    display: none;
  }
}

/* Tablet / Mobile: hide text search, show icon left of hamburger */
@media (max-width: 900px) {
  .pkg-nav-search-btn {
    display: none;
  }
  .pkg-mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pso-panel {
    width: 100%;
    max-width: 100%;
    border-radius: 0 0 16px 16px;
    max-height: 92vh;
  }

  .pso-results {
    grid-template-columns: 1fr;
  }

  .pso-filter-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .pso-head {
    padding: 0.65rem 0.85rem 0.5rem;
  }

  .pso-body {
    padding: 0.75rem 0.85rem;
  }

  /* Compact the search input row */
  .pso-search-row {
    margin-bottom: 0.55rem;
    border-radius: 10px;
    padding: 0 0.55rem;
  }

  .pso-input {
    padding: 0.6rem 0.2rem;
    font-size: 0.9rem;
  }

  /* Shrink filter labels */
  .pso-filter-label {
    font-size: 0.62rem;
  }

  /* Compress chips */
  .pso-chip {
    padding: 0.2rem 0.55rem;
    font-size: 0.7rem;
  }

  .pso-sort-select {
    padding: 0.22rem 0.55rem;
    font-size: 0.72rem;
  }

  /* Hide quick-search chips on mobile to save space */
  .pso-quick-filters {
    display: none;
  }

  /* Compact filters section */
  .pso-filters {
    gap: 0.4rem;
  }

  .pso-filter-group {
    gap: 0.2rem;
  }

  .pso-meta {
    margin-top: 0.3rem;
    font-size: 0.72rem;
    padding-bottom: 0.3rem;
  }

  /* Price range inline */
  .pso-price-range {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .pso-panel {
    max-height: 88vh;
    border-radius: 0 0 12px 12px;
  }

  .pso-head {
    padding: 0.55rem 0.7rem 0.4rem;
  }

  .pso-body {
    padding: 0.6rem 0.7rem;
  }

  .pso-search-row {
    padding: 0 0.45rem;
    margin-bottom: 0.4rem;
    border-radius: 9px;
  }

  .pso-input {
    font-size: 0.88rem;
    padding: 0.5rem 0.15rem;
  }

  .pso-search-icon svg {
    width: 16px;
    height: 16px;
  }

  .pso-close-btn,
  .pso-clear-input-btn {
    width: 24px;
    height: 24px;
  }

  .pso-filter-bottom {
    gap: 0.4rem;
  }

  .pso-chip {
    padding: 0.17rem 0.45rem;
    font-size: 0.65rem;
  }

  .pso-sort-select {
    font-size: 0.68rem;
    padding: 0.18rem 0.45rem;
  }

  .pso-price-range {
    width: 90px;
  }

  .pso-empty-actions {
    flex-direction: column;
    align-items: center;
  }

  .pso-empty-actions .pso-result-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Price Range Slider ───────────────────────────────────────── */
.pso-price-range {
  -webkit-appearance: none;
  appearance: none;
  width: 160px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.pso-price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #D80000;
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(216,0,0,0.2);
  transition: box-shadow 0.2s;
}

.pso-price-range::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 5px rgba(216,0,0,0.3);
}

.pso-price-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #D80000;
  cursor: pointer;
  border: none;
}

/* ── Quick Filter Chips ───────────────────────────────────────── */
.pso-quick-filters {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.pso-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pso-quick-chip {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #777;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  font-family: 'Kanit', sans-serif;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.pso-quick-chip:hover {
  border-color: rgba(216,0,0,0.35);
  color: #fff;
  background: rgba(216,0,0,0.07);
}

.pso-quick-chip.active {
  background: rgba(216,0,0,0.15);
  border-color: rgba(216,0,0,0.5);
  color: #ff6b6b;
}

/* ── Clear Input Button ───────────────────────────────────────── */
.pso-clear-input-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: #777;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.pso-clear-input-btn:hover {
  background: rgba(216,0,0,0.2);
  color: #fff;
}

/* ── Recent Searches ──────────────────────────────────────────── */
.pso-recent-wrap {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pso-recent-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.55rem;
}

.pso-recent-clear {
  background: transparent;
  border: none;
  color: #555;
  font-size: 0.72rem;
  font-family: 'Kanit', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: color 0.2s;
}

.pso-recent-clear:hover {
  color: #D80000;
}

.pso-recent-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pso-recent-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  color: #888;
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Kanit', sans-serif;
  transition: all 0.18s;
}

.pso-recent-chip:hover {
  border-color: rgba(216,0,0,0.3);
  color: #fff;
  background: rgba(216,0,0,0.05);
}

.pso-recent-chip svg {
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── Keyboard shortcut hint on nav button ─────────────────────── */
.pkg-nav-search-btn .pso-kbd {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  color: rgba(255,255,255,0.5);
  margin-left: 2px;
}

@media (max-width: 900px) {
  .pso-quick-filters {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
  }
  .pso-price-range {
    width: 120px;
  }
}

/* ── Left to Right Moving Customer Reviews Marquee ─────────────── */
.reviews-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  padding: 1.5rem 0;
}

.reviews-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: moveLeftToRight 35s linear infinite;
  will-change: transform;
}

.reviews-marquee-wrapper:hover .reviews-marquee-track {
  animation-play-state: paused;
}

.review-card-item {
  width: 320px;
  max-width: 85vw;
  flex-shrink: 0;
  background: #101010;
  padding: 1.5rem;
  border-radius: 12px;
  border-top: 3px solid #D80000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

@keyframes moveLeftToRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}


