        :root {
            /* EXACT BRAND COLORS FROM LOGO (#163B65 Navy Blue & #FEE100 / #F5B800 Royal Gold) */
            --logo-blue: #163b65;
            --logo-blue-dark: #0c2440;
            --logo-blue-light: #205188;
            --logo-gold: #f5b800;
            --logo-gold-bright: #fee100;
            --logo-gold-dark: #d99b00;
            --logo-gold-grad: linear-gradient(135deg, #fee100 0%, #f5b800 50%, #d99b00 100%);

            --text-dark: #1e293b;
            --text-muted: #64748b;
            --bg-light: #f4f7fb;
            --bg-card: #ffffff;
            --shadow-soft: 0 10px 30px rgba(22, 59, 101, 0.08);
            --shadow-hover: 0 20px 45px rgba(22, 59, 101, 0.16);
            --shadow-gold: 0 10px 25px rgba(245, 184, 0, 0.35);
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-full: 9999px;
            --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Poppins', 'Plus Jakarta Sans', sans-serif;
            color: var(--text-dark);
            background-color: #ffffff;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3 {
            font-family: 'Poppins', sans-serif;
        }

        /* ==================== AURICTRAILS-STYLE BANNER SLIDER ==================== */
        .banner-section-auric {
            position: relative;
            height: 720px;
            width: 100%;
            overflow: hidden;
            background: var(--logo-blue-dark);
        }

        .banner-section-auric .swiper {
            width: 100%;
            height: 100%;
        }

        .banner-section-auric .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .banner-section-auric .swiper-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.45) 100%);
            z-index: 1;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #ffffff;
            max-width: 1100px;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease-out;
        }

        .banner-section-auric .swiper-slide-active .banner-content {
            opacity: 1;
            transform: translateY(0);
        }

        .subheading {
            font-family: 'Great Vibes', cursive;
            font-size: 3.2rem;
            color: var(--logo-gold-bright);
            display: block;
            margin-bottom: 8px;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
            letter-spacing: 1px;
        }

        .main-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 48px;
            color: #ffffff;
            line-height: 1.15;
            margin-bottom: 20px;
            letter-spacing: 1.5px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
            text-transform: uppercase;
        }

        .main-title span.gold-highlight {
            color: var(--logo-gold-bright);
        }

        .banner-desc {
            font-family: 'Poppins', sans-serif;
            font-size: 1.12rem;
            line-height: 1.7;
            margin-bottom: 32px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.92);
            max-width: 850px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        .btn-group-auric {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .banner-btn {
            display: inline-block;
            padding: 14px 34px;
            border-radius: 30px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.95rem;
            transition: var(--transition);
            text-decoration: none;
        }

        .btn-primary-custom {
            background: var(--logo-gold);
            color: var(--logo-blue-dark) !important;
            border: 2px solid var(--logo-gold);
            box-shadow: 0 8px 20px rgba(245, 184, 0, 0.35);
        }

        .btn-primary-custom:hover {
            background: var(--logo-gold-bright);
            border-color: var(--logo-gold-bright);
            color: #000000 !important;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(254, 225, 0, 0.45);
        }

        .btn-outline-custom {
            background: transparent;
            color: #ffffff !important;
            border: 2px solid #ffffff;
            backdrop-filter: blur(8px);
        }

        .btn-outline-custom:hover {
            background: #ffffff;
            color: var(--logo-blue) !important;
            transform: translateY(-3px);
        }

        /* 3D Staggered Animation Effects for Swiper Text */
        .banner-section-auric .swiper-slide-active .subheading {
            animation: auricFadeInUp 0.8s ease-out 0.2s both;
        }

        .banner-section-auric .swiper-slide-active .main-title {
            animation: auricFadeInUp 0.8s ease-out 0.4s both;
        }

        .banner-section-auric .swiper-slide-active .banner-desc {
            animation: auricFadeInUp 0.8s ease-out 0.6s both;
        }

        .banner-section-auric .swiper-slide-active .btn-group-auric {
            animation: auricFadeInUp 0.8s ease-out 0.8s both;
        }

        @keyframes auricFadeInUp {
            from {
                opacity: 0;
                transform: translate3d(0, 40px, 0);
            }

            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        /* Swiper Navigation Custom Arrows */
        .swiper-button-next,
        .swiper-button-prev {
            color: var(--logo-gold);
            width: 50px;
            height: 50px;
            background: rgba(12, 36, 64, 0.65);
            border: 1px solid rgba(245, 184, 0, 0.4);
            border-radius: 50%;
            transition: var(--transition);
            backdrop-filter: blur(8px);
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: var(--logo-gold);
            color: var(--logo-blue-dark);
            border-color: var(--logo-gold);
            transform: scale(1.1);
        }

        .swiper-pagination-bullet {
            background: #ffffff;
            opacity: 0.5;
            width: 10px;
            height: 10px;
            transition: var(--transition);
        }

        .swiper-pagination-bullet-active {
            background: var(--logo-gold-bright) !important;
            opacity: 1 !important;
            width: 30px !important;
            border-radius: 10px !important;
        }

        /* ==================== MOSAIC DESTINATION GALLERY (9-TILE BESPOKE GRID) ==================== */
        .mosaic-gallery-section {
            padding: 40px 0 30px;
            background: #ffffff;
            position: relative;
            z-index: 5;
            margin: 50px 0px !important;
        }

        .mosaic-gallery-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1.38fr 1fr 1fr;
            grid-template-rows: 210px 210px;
            gap: 16px;
            align-items: stretch;
        }

        .mosaic-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            border: 2.5px solid transparent;
            box-shadow: 0 8px 24px rgba(22, 59, 101, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: block;
            text-decoration: none;
            background: #0c2440;
        }

        .mosaic-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Glowing Border Highlight on Hover */
        .mosaic-card:hover {
            transform: translateY(-6px);
            border-color: #fee100;
            box-shadow: 0 16px 40px rgba(22, 59, 101, 0.28), 0 0 22px rgba(254, 225, 0, 0.45);
        }

        .mosaic-card:hover img {
            transform: scale(1.12);
        }

        /* Hover Overlay for Small Cards (Reveals Name & Button on Hover) */
        .mosaic-hover-content {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(12, 36, 64, 0.1) 0%, rgba(12, 36, 64, 0.65) 45%, rgba(12, 36, 64, 0.94) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
            padding: 18px 14px;
            text-align: center;
            opacity: 0;
            transform: translateY(12px);
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
        }

        .mosaic-card:hover .mosaic-hover-content {
            opacity: 1;
            transform: translateY(0);
        }

        .mosaic-dest-tag {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #fee100;
            margin-bottom: 3px;
            display: block;
            transform: translateY(8px);
            transition: transform 0.35s ease 0.05s;
        }

        .mosaic-dest-title {
            font-size: 1.12rem;
            font-weight: 800;
            color: #ffffff;
            margin: 0 0 10px 0;
            line-height: 1.25;
            font-family: 'Poppins', sans-serif;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
            transform: translateY(8px);
            transition: transform 0.35s ease 0.1s;
        }

        .mosaic-btn-hover {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #fee100;
            color: #0c2440 !important;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.76rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            box-shadow: 0 4px 12px rgba(254, 225, 0, 0.4);
            transform: translateY(8px);
            transition: all 0.35s ease 0.15s;
            text-decoration: none;
        }

        .mosaic-card:hover .mosaic-dest-tag,
        .mosaic-card:hover .mosaic-dest-title,
        .mosaic-card:hover .mosaic-btn-hover {
            transform: translateY(0);
        }

        .mosaic-btn-hover:hover {
            background: #ffffff;
            color: #0c2440 !important;
            transform: scale(1.05) !important;
            box-shadow: 0 6px 16px rgba(255, 255, 255, 0.5);
        }

        /* Center Large Spanning Card */
        .mosaic-card-center {
            grid-column: 3 / 4;
            grid-row: 1 / 3;
            position: relative;
            border-radius: 26px;
            overflow: hidden;
            border: 2.5px solid transparent;
            box-shadow: 0 12px 30px rgba(22, 59, 101, 0.18);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: #0c2440;
            display: block;
            text-decoration: none;
        }

        .mosaic-card-center:hover {
            transform: translateY(-6px);
            border-color: #fee100;
            box-shadow: 0 20px 45px rgba(22, 59, 101, 0.32), 0 0 26px rgba(254, 225, 0, 0.5);
        }

        .mosaic-center-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(12, 36, 64, 0.45) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            z-index: 2;
            transition: background 0.4s ease;
        }

        .mosaic-card-center:hover .mosaic-center-overlay {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(12, 36, 64, 0.65) 100%);
        }

        .mosaic-center-frame {
            width: 100%;
            height: 100%;
            border: 2px solid #84cc16;
            /* Bright lime neon border as in user image */
            border-radius: 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            text-align: center;
            box-shadow: inset 0 0 15px rgba(132, 204, 22, 0.25), 0 0 15px rgba(132, 204, 22, 0.3);
            transition: all 0.4s ease;
        }

        .mosaic-card-center:hover .mosaic-center-frame {
            border-color: #fee100;
            box-shadow: inset 0 0 25px rgba(254, 225, 0, 0.4), 0 0 25px rgba(254, 225, 0, 0.5);
            transform: scale(0.98);
        }

        .mosaic-center-title {
            font-size: 1.9rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 22px;
            text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
            font-family: 'Poppins', sans-serif;
            transition: transform 0.4s ease, color 0.4s ease;
        }

        .mosaic-card-center:hover .mosaic-center-title {
            color: #fee100;
            transform: scale(1.06);
        }

        .btn-mosaic-explore {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.55);
            color: #ffffff !important;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 0.88rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
        }

        .mosaic-card-center:hover .btn-mosaic-explore {
            background: #fee100;
            color: #0c2440 !important;
            border-color: #fee100;
            transform: scale(1.06);
            box-shadow: 0 8px 25px rgba(254, 225, 0, 0.6);
        }

        @media (max-width: 991px) {
            .mosaic-gallery-grid {
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: auto;
            }

            .mosaic-card-center {
                grid-column: 1 / -1;
                grid-row: auto;
                height: 280px;
            }

            .mosaic-card {
                height: 180px;
            }
        }

        @media (max-width: 575px) {
            .mosaic-gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .mosaic-card-center {
                grid-column: 1 / -1;
                height: 240px;
            }

            .mosaic-card {
                height: 150px;
                border-radius: 16px;
            }

            .mosaic-center-title {
                font-size: 1.4rem;
                margin-bottom: 14px;
            }

            .btn-mosaic-explore {
                padding: 8px 20px;
                font-size: 0.75rem;
            }
        }

        /* ==================== STATS STRIP ==================== */
        .stats-strip-wrapper {
            background: #ffffff;
            margin-top: -50px;
            position: relative;
            z-index: 10;
            border-radius: var(--radius-lg);
            box-shadow: 0 15px 40px rgba(22, 59, 101, 0.1);
            border: 1px solid #e2e8f0;
            border-top: 4px solid var(--logo-gold);
            padding: 24px 30px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 10px 15px;
        }

        .stat-icon-circle {
            width: 54px;
            height: 54px;
            border-radius: 14px;
            background: rgba(22, 59, 101, 0.08);
            color: var(--logo-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
            border: 1px solid rgba(22, 59, 101, 0.15);
        }

        .stat-number {
            font-size: 1.45rem;
            font-weight: 800;
            color: var(--logo-blue);
            line-height: 1.2;
            margin-bottom: 2px;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 600;
            margin: 0;
        }

        /* ==================== SECTION HEADERS ==================== */
        .section-tagline {
            font-size: 0.88rem;
            font-weight: 800;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--logo-blue);
            margin-bottom: 10px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .section-tagline::before,
        .section-tagline::after {
            content: '';
            width: 24px;
            height: 3px;
            background: var(--logo-gold);
            border-radius: 2px;
        }

        .section-main-heading {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--logo-blue);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .section-desc {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 680px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        /* ==================== SPOTLIGHT STORIES ==================== */
        .spotlight-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            border: 1px solid #e2e8f0;
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .spotlight-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--logo-gold);
        }

        .spotlight-img-wrap {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .spotlight-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .spotlight-card:hover .spotlight-img-wrap img {
            transform: scale(1.08);
        }

        .spotlight-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: rgba(22, 59, 101, 0.9);
            backdrop-filter: blur(8px);
            color: var(--logo-gold-bright);
            padding: 6px 14px;
            border-radius: var(--radius-full);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            border: 1px solid rgba(254, 225, 0, 0.4);
        }

        .spotlight-body {
            padding: 28px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .spotlight-tag {
            color: var(--logo-blue);
            font-size: 0.82rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .spotlight-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--logo-blue);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .spotlight-text {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .spotlight-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid #f1f5f9;
            padding-top: 18px;
            margin-top: auto;
        }

        .spotlight-price {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .spotlight-price strong {
            font-size: 1.35rem;
            color: var(--logo-blue);
            display: block;
        }

        .btn-link-action {
            color: var(--logo-blue);
            font-weight: 800;
            font-size: 0.95rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }

        .btn-link-action:hover {
            color: var(--logo-gold-dark);
            transform: translateX(4px);
        }

        /* ==================== DESTINATIONS GRID ==================== */
        .dest-card {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            height: 280px;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
            display: block;
            text-decoration: none;
        }

        .dest-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .dest-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .dest-card:hover img {
            transform: scale(1.1);
        }

        .dest-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(22, 59, 101, 0.9) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 22px;
            color: #ffffff;
            transition: var(--transition);
        }

        .dest-card:hover .dest-card-overlay {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(12, 36, 64, 0.96) 100%);
        }

        .dest-count-pill {
            display: inline-block;
            background: rgba(254, 225, 0, 0.25);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(254, 225, 0, 0.6);
            color: #ffffff;
            padding: 4px 10px;
            border-radius: var(--radius-full);
            font-size: 0.72rem;
            font-weight: 700;
            width: fit-content;
            margin-bottom: 8px;
        }

        .dest-card-title {
            font-size: 1.35rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .dest-card-title i {
            font-size: 1rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: var(--transition);
        }

        .dest-card:hover .dest-card-title i {
            opacity: 1;
            transform: translateX(0);
            color: var(--logo-gold-bright);
        }

        /* ==================== COMPACT & SLEEK PACKAGE CARDS ==================== */
        .packages-slider-section {
            padding: 60px 0 50px;
            background: #fbfcfe;
        }

        .pkg-slider-card {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.35s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid #edf2f7;
        }

        .pkg-slider-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
            border-color: #8cc63f;
        }

        .pkg-slider-wrap {
            position: relative;
            height: 170px;
            overflow: hidden;
            border-radius: 16px 16px 0 0;
        }

        .pkg-swiper {
            width: 100%;
            height: 100%;
        }

        .pkg-swiper .swiper-slide img {
            width: 100%;
            height: 170px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .pkg-slider-card:hover .pkg-swiper .swiper-slide img {
            transform: scale(1.06);
        }

        /* Dot pagination */
        .pkg-slider-dots {
            bottom: 8px !important;
        }

        .pkg-slider-dots .swiper-pagination-bullet {
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.7);
            opacity: 1;
            transition: all 0.3s ease;
        }

        .pkg-slider-dots .swiper-pagination-bullet-active {
            background: #8cc63f;
            width: 16px;
            border-radius: 4px;
        }

        /* Duration Badge (Top Left) */
        .pkg-days-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #8cc63f;
            color: #ffffff;
            padding: 4px 10px;
            border-radius: 14px;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.4px;
            text-transform: uppercase;
            z-index: 10;
            box-shadow: 0 3px 8px rgba(140, 198, 63, 0.4);
        }

        /* Rating Badge (Top Right) */
        .pkg-rating-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(12, 36, 64, 0.85);
            backdrop-filter: blur(4px);
            color: #fee100;
            padding: 3px 8px;
            border-radius: 14px;
            font-size: 0.72rem;
            font-weight: 700;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 3px;
        }

        /* Card body */
        .pkg-slider-body {
            padding: 14px 15px 15px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            background: #fff;
        }

        .pkg-slider-title {
            font-size: 1.05rem;
            font-weight: 800;
            color: #163b65;
            margin: 0 0 6px;
            line-height: 1.25;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .pkg-slider-location {
            font-size: 0.78rem;
            color: #64748b;
            margin: 0 0 10px;
            display: flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-weight: 600;
        }

        .pkg-slider-location i {
            color: #8cc63f;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        /* Sleek horizontal inclusions strip */
        .pkg-amenities-strip {
            display: flex;
            align-items: stretch;
            justify-content: space-between;
            background: #f8fafc;
            border: 1px solid #edf2f7;
            border-radius: 10px;
            padding: 8px 6px;
            margin-bottom: 12px;
            gap: 4px;
        }

        .pkg-amenities-strip span {
            font-size: 0.68rem;
            color: #475569;
            font-weight: 700;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            flex: 1;
            text-align: center;
            padding: 6px 2px;
            border-radius: 7px;
            transition: background 0.2s ease;
        }

        .pkg-amenities-strip span:hover {
            background: #eef4ff;
        }

        .pkg-amenities-strip span i {
            color: #163b65;
            font-size: 1rem;
            display: block;
        }

        /* Bottom Footer: Price + Button Side-by-Side */
        .pkg-card-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid #f1f5f9;
            padding-top: 10px;
            margin-top: auto;
        }


        /* Package Price On Request Badge */
        .pkg-por-badge {
            display: inline-flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1px;
        }

        .pkg-por-badge .por-label {
            font-size: 0.65rem;
            color: #94a3b8;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1;
        }

        .pkg-por-badge .por-val {
            font-size: 0.88rem;
            font-weight: 800;
            color: #163b65;
            line-height: 1.2;
        }

        .btn-pkg-compact {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: linear-gradient(90deg, #8cc63f 0%, #7ab332 100%);
            color: #ffffff !important;
            padding: 7px 14px;
            border-radius: 8px;
            font-size: 0.76rem;
            font-weight: 800;
            text-decoration: none !important;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.25s ease;
            box-shadow: 0 3px 8px rgba(140, 198, 63, 0.25);
        }

        .btn-pkg-compact:hover {
            background: linear-gradient(90deg, #7ab332 0%, #689a29 100%);
            transform: translateX(2px);
            box-shadow: 0 4px 12px rgba(140, 198, 63, 0.4);
        }

        .btn-pkg-compact i {
            font-size: 0.7rem;
            transition: transform 0.25s ease;
        }

        .btn-pkg-compact:hover i {
            transform: translateX(3px);
        }

        /* ==================== ACTIVITIES & ADVENTURE ==================== */
        .activities-section {
            background: linear-gradient(135deg, #0c2440 0%, #163b65 50%, #0e2d52 100%);
            padding: 80px 0 70px;
            position: relative;
            overflow: hidden;
        }

        .activities-section::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(254, 225, 0, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .activities-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(254, 225, 0, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .activities-section .section-tagline {
            color: #fee100;
        }

        .activities-section .section-main-heading {
            color: #ffffff;
        }

        .activities-section .section-desc {
            color: rgba(255, 255, 255, 0.7);
        }

        .activity-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            height: 250px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
            transition: all 0.45s cubic-bezier(.4, 0, .2, 1);
            border: 2px solid rgba(255, 255, 255, 0.08);
        }

        .activity-card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45), 0 0 20px rgba(254, 225, 0, 0.3);
            border-color: rgba(254, 225, 0, 0.6);
        }

        .activity-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(.4, 0, .2, 1);
        }

        .activity-card:hover img {
            transform: scale(1.15);
        }

        .activity-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(12, 36, 64, 0.92) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 22px;
            color: #ffffff;
            transition: background 0.4s ease;
        }

        .activity-card:hover .activity-overlay {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(12, 36, 64, 0.95) 85%);
        }

        .activity-icon-badge {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: linear-gradient(135deg, #fee100, #f5b800);
            color: #0c2440;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            margin-bottom: 10px;
            box-shadow: 0 4px 14px rgba(254, 225, 0, 0.35);
            transition: all 0.35s ease;
        }

        .activity-card:hover .activity-icon-badge {
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 0 6px 20px rgba(254, 225, 0, 0.5);
        }

        .activity-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
            letter-spacing: 0.3px;
        }

        /* ==================== WHY CHOOSE US ==================== */
        .feature-box {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 32px 24px;
            box-shadow: var(--shadow-soft);
            border: 1px solid #edf2f7;
            height: 100%;
            transition: var(--transition);
        }

        .feature-box:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--logo-gold);
        }

        .feature-icon-box {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: rgba(22, 59, 101, 0.08);
            color: var(--logo-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 20px;
            border: 1px solid rgba(22, 59, 101, 0.15);
        }

        .feature-box h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--logo-blue);
            margin-bottom: 12px;
        }

        .feature-box p {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.6;
            margin: 0;
        }

        /* ==================== PLAN YOUR CUSTOM JOURNEY ==================== */
        .enquiry-cta-section {
            background: linear-gradient(135deg, var(--logo-blue) 0%, var(--logo-blue-dark) 100%);
            border-radius: var(--radius-lg);
            padding: 65px 50px;
            color: #ffffff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(12, 36, 64, 0.35);
            border: 1px solid rgba(245, 184, 0, 0.25);
        }

        .enquiry-cta-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245, 184, 0, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-form-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-md);
            padding: 35px 30px;
        }

        .cta-form-card .form-control,
        .cta-form-card .form-select {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #ffffff;
            border-radius: 10px;
            padding: 12px 16px;
            font-size: 0.95rem;
            margin-bottom: 16px;
        }

        .cta-form-card .form-control::placeholder {
            color: rgba(255, 255, 255, 0.65);
        }

        .cta-form-card .form-control:focus,
        .cta-form-card .form-select:focus {
            background: rgba(255, 255, 255, 0.22);
            border-color: var(--logo-gold-bright);
            color: #ffffff;
            box-shadow: 0 0 15px rgba(254, 225, 0, 0.3);
        }

        .cta-form-card .form-select option {
            background: var(--logo-blue-dark);
            color: #ffffff;
        }

        /* ==================== TESTIMONIALS ==================== */
        .review-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 30px;
            box-shadow: var(--shadow-soft);
            border: 1px solid #edf2f7;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }

        .review-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--logo-gold);
        }

        .review-stars {
            color: var(--logo-gold-dark);
            font-size: 1rem;
            margin-bottom: 16px;
        }

        .review-quote {
            font-size: 0.96rem;
            color: var(--text-dark);
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 14px;
            border-top: 1px solid #f1f5f9;
            padding-top: 16px;
        }

        .author-avatar {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--logo-blue), var(--logo-gold));
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .author-name {
            font-weight: 700;
            color: var(--logo-blue);
            margin: 0;
            font-size: 1rem;
        }

        .author-city {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin: 0;
        }

        /* ==================== FAQ ACCORDION ==================== */
        .faq-item-card {
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            margin-bottom: 14px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }

        .faq-btn-toggle {
            width: 100%;
            text-align: left;
            padding: 18px 24px;
            background: transparent;
            border: none;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--logo-blue);
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: var(--transition);
        }

        .faq-btn-toggle:hover {
            color: var(--logo-gold-dark);
        }

        .faq-btn-toggle i {
            transition: transform 0.3s ease;
            color: var(--logo-blue);
        }

        .faq-btn-toggle[aria-expanded="true"] i {
            transform: rotate(180deg);
            color: var(--logo-gold-dark);
        }

        .faq-content-body {
            padding: 0 24px 20px;
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ==================== FLOATING WHATSAPP BUTTON ==================== */
        .floating-action-widget {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .widget-btn-wa {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: #25d366;
            color: #ffffff !important;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
            transition: var(--transition);
            text-decoration: none;
        }

        .widget-btn-wa:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
        }

        @media (max-width: 768px) {
            .banner-section-auric {
                height: 580px;
            }

            .subheading {
                font-size: 2.2rem;
            }

            .main-title {
                font-size: 28px;
                letter-spacing: 1px;
            }

            .banner-desc {
                font-size: 0.92rem;
                padding: 0 10px;
                margin-bottom: 24px;
            }

            .banner-btn {
                padding: 10px 22px;
                font-size: 0.85rem;
            }

            .section-main-heading {
                font-size: 1.9rem;
            }

            .stats-strip-wrapper {
                margin-top: -30px;
                padding: 16px 12px;
            }
        }






















        .testimonials-section {
            padding: 80px 0;
            background: #f7f9fc;
            position: relative;
            overflow: hidden;
        }

        .testi-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .testi-header .testi-tag {
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #8cc63f;
            margin-bottom: 12px;
            display: inline-block;
        }

        .testi-header h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #163b65;
            margin-bottom: 12px;
        }

        .testi-header h2 span {
            color: #8cc63f;
        }

        .testi-header p {
            color: #64748b;
            max-width: 520px;
            margin: 0 auto;
            font-size: 0.92rem;
        }

        .testi-swiper {
            padding-bottom: 50px;
            /* Space for pagination */
        }

        .testi-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px 32px;
            box-shadow: 0 10px 30px rgba(22, 59, 101, 0.05);
            border: 1px solid #edf2f7;
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .testi-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #163b65, #8cc63f);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .testi-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(22, 59, 101, 0.12);
        }

        .testi-card:hover::before {
            opacity: 1;
        }

        .testi-card .quote-icon {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 3rem;
            color: rgba(140, 198, 63, 0.08);
            z-index: -1;
        }

        .testi-stars {
            color: #f59e0b;
            font-size: 0.95rem;
            margin-bottom: 20px;
            display: flex;
            gap: 4px;
        }

        .testi-text {
            font-size: 0.95rem;
            color: #475569;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
            font-weight: 500;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 1px solid #f1f5f9;
        }

        .testi-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #163b65, #0c2440);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fee100;
            font-size: 1.1rem;
            font-weight: 800;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(22, 59, 101, 0.2);
        }

        .testi-author-name {
            font-size: 0.95rem;
            font-weight: 800;
            color: #163b65;
            display: block;
            line-height: 1.2;
        }

        .testi-author-trip {
            font-size: 0.75rem;
            color: #8cc63f;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 4px;
            display: block;
        }

        .testi-swiper .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: #cbd5e1;
            opacity: 1;
            transition: all 0.3s ease;
        }

        .testi-swiper .swiper-pagination-bullet-active {
            background: #8cc63f;
            width: 24px;
            border-radius: 5px;
        }

        /* end testimoanla */

        .about-section-creative {
            padding: 90px 0;
            background: #f8fafc;
            position: relative;
            overflow: hidden;
        }

        /* --- LEFT SIDE: IMAGE COMPOSITION --- */
        .about-image-composition {
            position: relative;
            height: 100%;
            min-height: 500px;
        }

        .img-main {
            width: 80%;
            height: 480px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(22, 59, 101, 0.12);
            position: absolute;
            left: 0;
            top: 0;
            z-index: 1;
        }

        .img-overlap {
            width: 55%;
            height: 320px;
            object-fit: cover;
            border-radius: 16px;
            border: 10px solid #fff;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            position: absolute;
            right: 0;
            bottom: -30px;
            z-index: 2;
        }

        /* Floating Badge */
        .experience-badge {
            position: absolute;
            top: 40px;
            right: 10%;
            width: 140px;
            height: 140px;
            background: linear-gradient(135deg, #163b65, #0c2440);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #fee100;
            text-align: center;
            z-index: 3;
            box-shadow: 0 15px 30px rgba(22, 59, 101, 0.25);
            border: 6px solid #fff;
            animation: floatUpDown 4s ease-in-out infinite;
        }

        .exp-num {
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 2px;
        }

        .exp-text {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #fff;
        }

        @keyframes floatUpDown {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0);
            }
        }

        /* --- RIGHT SIDE: CONTENT --- */
        .about-creative-content {
            padding-left: 30px;
        }

        .ac-tag {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #8cc63f;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ac-tag::before {
            content: '';
            width: 40px;
            height: 2px;
            background: #8cc63f;
            display: inline-block;
        }

        .ac-title {
            font-size: 2.6rem;
            font-weight: 800;
            color: #163b65;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .ac-title span {
            position: relative;
            color: #8cc63f;
        }

        .ac-desc {
            font-size: 1rem;
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .ac-checklist {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 40px;
        }

        .ac-check-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            font-weight: 700;
            color: #1e293b;
        }

        .ac-check-item i {
            color: #8cc63f;
            font-size: 1.1rem;
        }

        .btn-ac-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #163b65, #0c2440);
            color: #fff;
            padding: 16px 35px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(22, 59, 101, 0.2);
        }

        .btn-ac-primary:hover {
            background: linear-gradient(135deg, #8cc63f, #7ab332);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(140, 198, 63, 0.3);
        }

        .btn-ac-primary i {
            transition: transform 0.3s ease;
        }

        .btn-ac-primary:hover i {
            transform: translateX(5px);
        }

        @media (max-width: 991px) {
            .about-image-composition {
                min-height: 450px;
                margin-bottom: 60px;
            }

            .about-creative-content {
                padding-left: 0;
            }

            .ac-title {
                font-size: 2.2rem;
            }

            .experience-badge {
                right: 0;
            }

            .ac-checklist {
                grid-template-columns: 1fr;
            }
        }

        /* end about */

        .why-choose-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #0b1d3a 0%, #163b65 50%, #0d2a52 100%);
            position: relative;
            overflow: hidden;
        }

        .why-choose-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            top: -200px;
            right: -200px;
            background: radial-gradient(circle, rgba(254, 225, 0, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .why-section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .why-section-header .why-tag {
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #fee100;
            margin-bottom: 12px;
            display: inline-block;
        }

        .why-section-header h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
        }

        .why-section-header h2 span {
            color: #fee100;
        }

        .why-section-header p {
            color: rgba(255, 255, 255, 0.6);
            max-width: 560px;
            margin: 0 auto;
            font-size: 0.92rem;
            line-height: 1.6;
        }

        .why-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            padding: 36px 28px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            height: 100%;
        }

        .why-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(254, 225, 0, 0.25);
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .why-card-icon {
            width: 68px;
            height: 68px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(254, 225, 0, 0.12), rgba(140, 198, 63, 0.12));
            border: 1px solid rgba(254, 225, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: #fee100;
            transition: all 0.3s ease;
        }

        .why-card:hover .why-card-icon {
            background: linear-gradient(135deg, #fee100, #f5d000);
            color: #163b65;
            transform: scale(1.1) rotate(5deg);
        }

        .why-card h4 {
            font-size: 1.05rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
        }

        .why-card p {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.6;
            margin: 0;
        }

        /* why choose */





        .premium-inquiry-section {
            position: relative;
            background: url('assets/images/slider--img1.jpg') center/cover no-repeat fixed;
            padding: 100px 0;
            color: #fff;
        }

        .premium-inquiry-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(17, 24, 39, 0.85);
            /* Dark overlay */
        }

        .pi-container {
            position: relative;
            z-index: 2;
        }

        /* Left Side Info */
        .pi-info {
            padding-right: 40px;
        }

        .pi-tag {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #d4af37;
            /* Gold */
            margin-bottom: 12px;
            display: block;
        }

        .pi-title {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pi-desc {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 90%;
        }

        .pi-contact-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .pi-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .pi-contact-item i {
            color: #d4af37;
            font-size: 1.2rem;
            margin-top: 4px;
        }

        .pi-contact-content h5 {
            font-size: 0.85rem;
            font-weight: 700;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .pi-contact-content p {
            font-size: 0.95rem;
            color: #fff;
            margin: 0;
            font-weight: 500;
        }

        /* Right Side Form */
        .pi-form-box {
            background: #fff;
            padding: 50px 40px;
            border-radius: 4px;
            /* Slight rounding like image */
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            color: #1e293b;
        }

        .pi-form-title {
            font-size: 1.2rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 8px;
            color: #111827;
            letter-spacing: 0.5px;
        }

        .pi-form-subtitle {
            font-size: 0.8rem;
            color: #6b7280;
            margin-bottom: 30px;
        }

        .pi-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .pi-field {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .pi-field label {
            font-size: 0.75rem;
            font-weight: 700;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pi-field input,
        .pi-field select {
            width: 100%;
            padding: 8px 0;
            border: none;
            border-bottom: 1px solid #e5e7eb;
            font-size: 0.9rem;
            color: #111827;
            background: transparent;
            outline: none;
            transition: all 0.3s ease;
        }

        .pi-field input:focus,
        .pi-field select:focus {
            border-bottom-color: #111827;
        }

        .pi-field input::placeholder {
            color: #9ca3af;
        }

        .pi-field select {
            -webkit-appearance: none;
            cursor: pointer;
            background: url('data:image/svg+xml;utf8,<svg fill="%239ca3af" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>') no-repeat right center;
        }

        .btn-pi-submit {
            display: block;
            margin: 40px auto 0;
            background: #111827;
            color: #fff;
            border: none;
            padding: 14px 40px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: 30px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .btn-pi-submit:hover {
            background: #d4af37;
            color: #111827;
        }

        @media (max-width: 991px) {
            .pi-info {
                padding-right: 0;
                margin-bottom: 40px;
            }

            .pi-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .premium-inquiry-section {
                padding: 60px 0;
            }

            .pi-form-box {
                padding: 40px 25px;
            }
        }