:root {
            --primary-blue: #0f2766;
            --primary-dark: #121e3d;
            --accent-red: #e11d48;
            --accent-red-hover: #be123c;
            --text-dark: #1f2937;
            --text-muted: #6b7280;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border-color: #e2e8f0;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Cairo', sans-serif;
            background-color: var(--bg-white);
            color: var(--text-dark);
            overflow-x: hidden;
}

        /* Detail container */
        .detail-container {
            max-width: 1100px;
            margin: 20px auto 60px;
            padding: 0 15px;
        }

        /* Gallery Grid Layout */
        .gallery-wrapper {
            margin-bottom: 30px;
        }

        .gallery-counter {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background-color: rgba(15, 23, 42, 0.7);
            color: var(--bg-white);
            padding: 4px 10px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
            z-index: 5;
        }

        /* Title & Meta Row styling */
        .property-header-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .property-title-col {
            text-align: right;
        }

        .property-title-text {
            font-size: 26px;
            font-weight: 800;
            color: var(--primary-blue);
            margin: 0 0 8px;
        }

        .property-rating-row {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 700;
            color: #475569;
            margin-bottom: 15px;
        }

        .property-rating-row i {
            color: #fbbf24;
        }

        .property-price-col {
            text-align: left;
            flex-shrink: 0;
        }

        .property-price-amount {
            font-size: 26px;
            font-weight: 850;
            color: var(--accent-red);
        }

        .property-price-label {
            font-size: 14px;
            color: #64748b;
            font-weight: 600;
        }

        .metadata-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            text-align: right;
        }

        .metadata-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 600;
            color: #475569;
        }

        .metadata-item i {
            font-size: 16px;
            color: #94a3b8;
            width: 20px;
            text-align: center;
        }

        /* Description Styling */
        .section-box {
            border-top: 1px solid var(--border-color);
            padding: 25px 0;
            text-align: right;
        }

        .section-title {
            font-size: 18px;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .section-desc-text {
            font-size: 14px;
            color: #475569;
            line-height: 1.8;
            font-weight: 500;
        }

        /* Tabs Section styling */
        .custom-tabs {
            display: flex;
            gap: 30px;
            border-bottom: 1.5px solid var(--border-color);
            margin-bottom: 25px;
            padding-bottom: 8px;
        }

        .tab-item {
            font-size: 15px;
            font-weight: 700;
            color: #64748b;
            cursor: pointer;
            position: relative;
            transition: var(--transition-smooth);
            padding-bottom: 8px;
            background: none;
            border: none;
        }

        .tab-item:hover, .tab-item.active {
            color: var(--primary-blue);
        }

        .tab-item.active::after {
            content: '';
            position: absolute;
            bottom: -9.5px;
            left: 0;
            right: 0;
            height: 3px;
            background-color: var(--accent-red);
            border-radius: 2px;
        }

        /* Details Section */
        .details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }

        .detail-box-card {
            background-color: #f8fafc;
            border-radius: 12px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            text-align: right;
        }

        .detail-box-icon {
            font-size: 20px;
            color: #64748b;
        }

        .detail-box-text {
            font-size: 13px;
            font-weight: 700;
            color: #0f172a;
        }

        /* Accordion style lists */
        .accordion-item-custom {
            border: 1.5px solid var(--border-color);
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            background-color: var(--bg-white);
        }

        .accordion-header-custom {
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            user-select: none;
        }

        .accordion-header-title {
            font-size: 14px;
            font-weight: 700;
            color: #0f172a;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .accordion-header-title i {
            color: #94a3b8;
            font-size: 16px;
        }

        .accordion-chevron {
            font-size: 14px;
            color: #94a3b8;
            transition: var(--transition-smooth);
        }

        .accordion-content-custom {
            padding: 0 20px 16px;
            display: none;
            border-top: 1px dashed var(--border-color);
            padding-top: 16px;
        }

        .accordion-content-custom.active {
            display: block;
        }

        .accordion-item-custom.expanded .accordion-chevron {
            transform: rotate(180deg);
        }

        .amenities-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
        }

        .amenity-badge {
            font-size: 13px;
            font-weight: 600;
            color: #475569;
            background-color: #f1f5f9;
            padding: 6px 14px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .amenity-badge::before {
            content: '•';
            color: var(--accent-red);
            font-weight: 900;
            font-size: 16px;
        }

        /* Side Booking card styling */
        .booking-card {
            border: 1.5px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            background-color: var(--bg-white);
            position: sticky;
            top: 100px;
        }

        .date-select-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border: 1.5px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .date-box {
            padding: 12px 16px;
            text-align: right;
            display: flex;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            background-color: #ffffff;
            transition: var(--transition-smooth);
        }

        .date-box:first-of-type {
            border-left: 1.5px solid var(--border-color);
        }

        .date-box:hover {
            background-color: #f8fafc;
        }

        .date-box-title {
            font-size: 11px;
            font-weight: 700;
            color: #94a3b8;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .date-box-value {
            font-size: 13px;
            font-weight: 700;
            color: #0f172a;
        }

        .booking-info-row {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            font-weight: 600;
            color: #475569;
            margin-bottom: 12px;
        }

        .booking-info-value {
            font-weight: 700;
            color: #0f172a;
        }

        .booking-info-row.total-row {
            font-size: 15px;
            font-weight: 800;
            color: var(--primary-blue);
            margin-top: 15px;
            margin-bottom: 8px;
        }

        .booking-info-row.total-row .booking-info-value {
            color: var(--primary-blue);
            font-size: 16px;
        }

        .btn-pay-now {
            background-color: var(--primary-blue);
            color: var(--bg-white);
            font-weight: 750;
            font-size: 15px;
            text-align: center;
            padding: 12px 0;
            border-radius: 12px;
            border: none;
            width: 100%;
            cursor: pointer;
            transition: var(--transition-smooth);
            margin-top: 15px;
            margin-bottom: 20px;
        }

        .btn-pay-now:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .payment-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        .payment-logo-img {
            max-height: 20px;
            opacity: 0.8;
            object-fit: contain;
        }

        /* Footer overrides custom elements */
        footer {
            background-color: #ffffff;
            border-top: 1px solid var(--border-color);
            padding: 60px 0 30px;
            color: var(--text-dark);
        }

        footer h5 {
            color: var(--primary-blue);
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        footer ul li {
            margin-bottom: 10px;
        }

        footer ul li a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: var(--transition-smooth);
        }

        footer ul li a:hover {
            color: var(--accent-red);
        }

        .footer-text {
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 600;
            line-height: 1.6;
        }

        /* Responsive Mobile Overrides for Property / Experience Detail Page */
        @media (max-width: 991.98px) {
            .booking-card {
                position: static !important;
                width: 100% !important;
                margin-top: 30px;
            }
        }

        @media (max-width: 767.98px) {
            .detail-container {
                margin: 10px auto 40px;
                padding: 0 12px;
            }

            .property-header-section {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 12px;
            }

            .property-price-col {
                text-align: start !important;
            }

            .property-title-text {
                font-size: 20px;
            }

            .property-price-amount {
                font-size: 22px;
            }

            .custom-tabs {
                gap: 15px;
                overflow-x: auto;
                white-space: nowrap;
                padding-bottom: 6px;
                -webkit-overflow-scrolling: touch;
            }

            .details-grid {
                grid-template-columns: 1fr;
            }

            .date-select-grid {
                grid-template-columns: 1fr;
            }

            .date-box:first-of-type {
                border-left: none;
                border-bottom: 1.5px solid var(--border-color);
            }
        }
