        /* â”€â”€ VARIABLES â”€â”€ */
        :root {
            --gold: #b59a5d;
            --gold-lt: #d4bc87;
            --gold-dk: #8f7a42;
            --teal: #098792;
            --teal-dk: #086e76;
            --dark: #0d1117;
            --mid: #1c2430;
            --text: #2c3e50;
            --muted: #6c7a8a;
            --border: #e2e8f0;
            --white: #ffffff;
            --bg: #f8f9fa;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        /* â”€â”€ BANNER â”€â”€ */
        .page-banner {
            position: relative;
            height: 320px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .page-banner img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(.45);
        }

        .page-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 30%, rgba(13, 17, 23, .85));
        }

        .banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 20px;
        }

        .banner-eyebrow {
            font-size: 11px;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .banner-content h1 {
            font-size: clamp(28px, 4.5vw, 52px);
            font-weight: 700;
            color: var(--white);
            letter-spacing: .02em;
            line-height: 1.2;
        }

        .banner-content h1 span {
            color: var(--gold);
        }

        /* â”€â”€ BREADCRUMB â”€â”€ */
        .breadcrumb-wrap {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            padding: 11px 0;
        }

        .breadcrumb-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--muted);
        }

        .breadcrumb-inner a {
            color: var(--teal);
            text-decoration: none;
            font-weight: 500;
        }

        .breadcrumb-inner a:hover {
            text-decoration: underline;
        }

        .breadcrumb-inner i {
            font-size: 10px;
        }

        /* â”€â”€ ATTRACTION DETAIL SECTION â”€â”€ */
        .attraction-section {
            padding: 72px 0 80px;
        }

        .attraction-inner {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        /* IMAGE SIDE */
        .attraction-image-wrap {
            position: relative;
        }

        .attraction-main-img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            border-radius: 14px;
            display: block;
            box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
        }

        .img-badge {
            position: absolute;
            top: 22px;
            left: 22px;
            background: var(--gold);
            color: var(--dark);
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .img-distance-pill {
            position: absolute;
            bottom: 22px;
            left: 22px;
            background: rgba(13, 17, 23, .82);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(181, 154, 93, .4);
            border-radius: 8px;
            padding: 10px 18px;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .img-distance-pill i {
            color: var(--gold);
            font-size: 16px;
        }

        .img-distance-pill .dist-val {
            font-size: 20px;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
        }

        .img-distance-pill .dist-label {
            font-size: 11px;
            color: rgba(255, 255, 255, .65);
        }

        /* Thumbnail strip */
        .thumb-strip {
            display: flex;
            gap: 10px;
            margin-top: 14px;
        }

        .thumb-strip img {
            flex: 1;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            opacity: .7;
            transition: opacity .2s, transform .2s;
            border: 2px solid transparent;
        }

        .thumb-strip img:hover,
        .thumb-strip img.active {
            opacity: 1;
            border-color: var(--gold);
            transform: translateY(-2px);
        }

        /* INFO SIDE */
        .attraction-info {}

        .info-eyebrow {
            font-size: 11px;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-eyebrow::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        .attraction-title {
            font-size: clamp(26px, 3vw, 40px);
            font-weight: 700;
            color: var(--text);
            line-height: 1.22;
            margin-bottom: 8px;
        }

        .attraction-title span {
            color: var(--gold);
        }

        .star-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .stars {
            color: var(--gold);
            font-size: 15px;
            letter-spacing: 2px;
        }

        .star-count {
            font-size: 13px;
            color: var(--muted);
        }

        .info-divider {
            width: 48px;
            height: 2px;
            background: linear-gradient(to right, var(--gold), var(--teal));
            margin-bottom: 22px;
            border-radius: 2px;
        }

        .attraction-desc {
            font-size: 15px;
            line-height: 1.82;
            color: #4a5568;
            margin-bottom: 28px;
            font-weight: 300;
        }

        /* Feature highlights grid */
        .highlights-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-bottom: 30px;
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px 16px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            transition: border-color .2s, box-shadow .2s;
        }

        .highlight-item:hover {
            border-color: var(--teal);
            box-shadow: 0 4px 16px rgba(11, 139, 148, .1);
        }

        .highlight-icon {
            width: 38px;
            height: 38px;
            border-radius: 8px;
            background: rgba(11, 139, 148, .08);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .highlight-icon i {
            color: var(--teal);
            font-size: 15px;
        }

        .highlight-text .hl-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 2px;
        }

        .highlight-text .hl-sub {
            font-size: 12px;
            color: var(--muted);
        }

        /* Tags */
        .tag-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 30px;
        }

        .tag {
            padding: 5px 14px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 500;
            border: 1px solid var(--border);
            color: var(--muted);
            background: var(--white);
        }

        .tag.teal {
            background: rgba(11, 139, 148, .08);
            color: var(--teal);
            border-color: rgba(11, 139, 148, .2);
        }

        .tag.gold {
            background: rgba(181, 154, 93, .08);
            color: var(--gold-dk);
            border-color: rgba(181, 154, 93, .25);
        }

        /* CTA buttons */
        .info-cta {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-map {
            flex: 1;
            padding: 13px 22px;
            background: var(--teal);
            color: var(--white);
            border: none;
            border-radius: 6px;
            font-size: 13.5px;
            font-weight: 600;
            letter-spacing: .06em;
            text-decoration: none;
            text-align: center;
            cursor: pointer;
            transition: background .2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-map:hover {
            background: var(--teal-dk);
            color: var(--white);
        }

        .btn-back {
            flex: 1;
            padding: 13px 22px;
            background: transparent;
            color: var(--text);
            border: 1px solid var(--border);
            border-radius: 6px;
            font-size: 13.5px;
            font-weight: 500;
            letter-spacing: .06em;
            text-decoration: none;
            text-align: center;
            cursor: pointer;
            transition: all .2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-back:hover {
            border-color: var(--teal);
            color: var(--teal);
        }

        /* â”€â”€ MAP SECTION â”€â”€ */
        .map-section {
            padding: 0 0 72px;
        }

        .map-inner {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .map-section h3 {
            font-size: 22px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .map-section h3 i {
            color: var(--teal);
            font-size: 18px;
        }

        .map-frame {
            width: 100%;
            height: 360px;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
        }

        .map-frame iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* â”€â”€ OTHER ATTRACTIONS â”€â”€ */
        .other-section {
            padding: 0 0 80px;
        }

        .other-inner {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .other-section h3 {
            font-size: 22px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .other-section h3 i {
            color: var(--gold);
        }

        .other-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .other-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            transition: box-shadow .25s, transform .25s;
        }

        .other-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
            transform: translateY(-4px);
        }

        .other-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            display: block;
            transition: transform .4s ease;
        }

        .other-card:hover img {
            transform: scale(1.05);
        }

        .other-card-body {
            padding: 16px;
        }

        .other-card-body h4 {
            font-size: 14.5px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 6px;
        }

        .other-card-body p {
            font-size: 12.5px;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .other-card-link {
            font-size: 12px;
            font-weight: 600;
            color: var(--teal);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .other-card-link:hover {
            color: var(--teal-dk);
        }

        .other-card-tag {
            display: inline-block;
            margin-bottom: 8px;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            background: rgba(11, 139, 148, .08);
            color: var(--teal);
        }

        /* â”€â”€ BOOKING BAND â”€â”€ */
        .booking-band {
            background: linear-gradient(135deg, var(--teal-dk), #0d5f65);
            border-top: 2px solid var(--gold);
            padding: 54px 0;
            text-align: center;
        }

        .booking-band h3 {
            font-size: clamp(22px, 3vw, 36px);
            color: var(--white);
            margin-bottom: 10px;
        }

        .booking-band p {
            color: rgba(255, 255, 255, .72);
            font-size: 15px;
            margin-bottom: 28px;
        }

        .band-btns {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .band-btn-gold {
            padding: 14px 36px;
            background: var(--gold);
            color: var(--dark);
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: .08em;
            text-transform: uppercase;
            transition: background .2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .band-btn-gold:hover {
            background: var(--gold-lt);
            color: var(--dark);
        }

        .band-btn-outline {
            padding: 14px 36px;
            background: transparent;
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, .5);
            border-radius: 4px;
            text-decoration: none;
            font-size: 14px;
            letter-spacing: .08em;
            text-transform: uppercase;
            transition: all .2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .band-btn-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, .1);
            color: #fff;
        }

        /* â”€â”€ RESPONSIVE â”€â”€ */
        @media (max-width: 991px) {
            .attraction-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .attraction-main-img {
                height: 380px;
            }

            .other-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

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

            .info-cta {
                flex-direction: column;
            }

            .thumb-strip img {
                height: 60px;
            }
        }


        .footer-p-3 {
            padding: 2rem 3rem !important;
        }

        @media (max-width: 600px) {


            .footer-p-3 {
                padding: 1rem 1rem !important;
            }
        }

        @media (max-width: 448px) {
            .breadcrumb-inner {
                flex-wrap: wrap;
                gap: 6px 8px;
                line-height: 1.5;
                padding: 0 16px;
            }

            .breadcrumb-inner a,
            .breadcrumb-inner span {
                display: inline-block;
            }

            .breadcrumb-inner i {
                font-size: 8px;
                opacity: 0.7;
            }
        }