  /* =========================================
           01. CORE STYLES & RESET
           ========================================= */
        #hhi-packages-section {
            font-family: 'Outfit', sans-serif;
            background-color: #ffffff;
            color: #1b1b1b;
            overflow-x: hidden;
            line-height: 1.6;
            padding: 60px 0;
            width: 100%;
            /* Ensure section has positioning context */
            position: relative; 
        }

        #hhi-packages-section h1, 
        #hhi-packages-section h2, 
        #hhi-packages-section h3, 
        #hhi-packages-section h4 {
            font-family: 'Libre Caslon Display', serif;
            font-weight: 400;
            line-height: 1.2;
        }

        #hhi-packages-section * {
            box-sizing: border-box;
        }

        /* =========================================
           02. CONTAINER
           ========================================= */
        .hhi-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hhi-sec-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .hhi-sub-title {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #BA6827;
            margin-bottom: 10px;
            display: inline-block;
            font-weight: 600;
        }

        .hhi-sec-title {
            font-size: clamp(28px, 5vw, 45px);
            color: #1b1b1b;
            margin-bottom: 15px;
        }

        .hhi-sec-desc {
            font-size: 14px;
            color: #adadad;
            max-width: 600px;
            margin: 0 auto;
        }

        /* =========================================
           03. SLIDER STRUCTURE
           ========================================= */
        .hhi-slider-wrap {
            position: relative;
            overflow: hidden; 
            padding: 10px 0 50px 0;
            width: 100%;
        }

        .hhi-track {
            display: flex;
            gap: 20px;
            will-change: transform; 
            cursor: grab;
        }

        .hhi-track:active {
            cursor: grabbing;
        }

        /* =========================================
           04. CARD DESIGN
           ========================================= */
        .hhi-card {
            flex: 0 0 100%;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.03);
            user-select: none;
        }

        @media (min-width: 992px) {
            .hhi-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 40px rgba(186, 104, 39, 0.15);
            }
        }

        .hhi-card-img-box {
            position: relative;
            height: 220px;
            overflow: hidden;
            width: 100%;
        }

        .hhi-card-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .hhi-card:hover .hhi-card-img-box img {
            transform: scale(1.08);
        }

        .hhi-price-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #BA6827;
            color: #ffffff;
            padding: 5px 12px;
            font-family: 'Libre Caslon Display', serif;
            font-size: 18px;
            border-radius: 4px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 2;
        }

        .hhi-card-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
        }

        .hhi-card-meta {
            font-size: 11px;
            color: #adadad;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hhi-card-meta i { color: #BA6827; }

        .hhi-card-heading {
            font-size: 20px;
            margin-bottom: 10px;
            color: #1b1b1b;
        }

        .hhi-card-excerpt {
            font-size: 13px;
            color: #adadad;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hhi-view-btn {
            font-size: 12px;
            text-transform: uppercase;
            font-weight: 600;
            color: #BA6827;
            letter-spacing: 1px;
            margin-top: auto;
            transition: color 0.3s ease;
        }

        .hhi-view-btn:hover {
            color: #8a4c1b;
        }

        /* =========================================
           05. NAVIGATION CONTROLS (FIXED VISIBILITY)
           ========================================= */
        .hhi-nav-controls {
            position: absolute;
            top: 35%;
            width: 100%;
            left: 0;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            /* INCREASED Z-INDEX to ensure arrows stay on top */
            z-index: 999; 
            padding: 0 5px; /* Reduced padding to prevent going off-screen */
        }

        .hhi-nav-btn {
            pointer-events: auto;
            width: 45px;
            height: 45px;
            /* Changed background to solid white/gray for visibility */
            background: #ffffff; 
            border: 1px solid #cccccc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
            /* Stronger shadow for visibility */
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            color: #BA6827; /* Primary color icon */
            font-size: 16px; /* Slightly larger icon */
        }

        .hhi-nav-btn:hover {
            background: #BA6827;
            color: #ffffff;
            border-color: #BA6827;
            transform: scale(1.1);
        }

        /* Desktop Position */
        .hhi-nav-prev { transform: translateX(-10px); }
        .hhi-nav-next { transform: translateX(10px); }

        /* Mobile Specific Adjustments */
        @media (max-width: 768px) {
            .hhi-nav-controls {
                top: 30%;
                pointer-events: none;
            }

            .hhi-nav-btn {
                width: 35px;
                height: 35px;
                background: rgba(255,255,255,0.95);
                box-shadow: 0 2px 8px rgba(0,0,0,0.4);
                font-size: 14px;
            }

            .hhi-nav-prev {
                transform: translateX(0);
                position: absolute;
                left: 0px;
            }
            .hhi-nav-next {
                transform: translateX(0);
                position: absolute;
                right: 0px;
            }
        }

        /* =========================================
           06. MODAL
           ========================================= */
        .hhi-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 99999; /* Higher than arrows */
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
        }

        .hhi-modal-overlay.hhi-active {
            opacity: 1;
            visibility: visible;
        }

        .hhi-modal-box {
            background: #ffffff;
            width: 95%;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            border-radius: 4px;
            position: relative;
            transform: translateY(30px);
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            display: flex;
            flex-direction: column;
        }

        .hhi-modal-overlay.hhi-active .hhi-modal-box {
            transform: translateY(0);
        }

        .hhi-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #ffffff;
            background: rgba(0,0,0,0.6);
            width: 35px;
            height: 35px;
            line-height: 35px;
            text-align: center;
            border-radius: 50%;
            z-index: 20;
            transition: background 0.3s ease;
        }

        .hhi-modal-close:hover {
            background: #BA6827;
        }

        .hhi-modal-img-box {
            flex: none;
            height: 250px;
            background: #eee;
        }

        .hhi-modal-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hhi-modal-info {
            padding: 25px;
            flex: 1;
        }

        .hhi-modal-title { font-size: 24px; margin-bottom: 10px; color: #1b1b1b; }
        .hhi-modal-price { font-size: 20px; color: #BA6827; font-family: 'Libre Caslon Display', serif; margin-bottom: 15px; display: block;}
        
        .hhi-modal-features-list { margin: 20px 0; padding: 15px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; list-style: none; }
        .hhi-modal-features-list li { margin-bottom: 8px; font-size: 14px; display: flex; align-items: flex-start; color: #1b1b1b;}
        .hhi-modal-features-list li i { color: #BA6827; margin-right: 10px; margin-top: 4px;}

        .hhi-btn-cta {
            display: inline-block;
            background: #BA6827;
            color: #ffffff;
            padding: 12px 25px;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
            font-weight: 600;
            border: none;
            width: 100%;
            text-align: center;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .hhi-btn-cta:hover {
            background: #8a4c1b;
        }

        @media(min-width: 768px) {
            .hhi-modal-box {
                flex-direction: row;
                overflow: hidden;
                height: auto;
                max-height: 80vh;
            }
            .hhi-modal-img-box {
                flex: 1;
                height: auto;
                min-height: 400px;
            }
            .hhi-modal-info {
                flex: 1;
                padding: 40px;
                overflow-y: auto;
            }
            .hhi-btn-cta { width: auto; }
        }