
        /* ===== CSS VARIABLES ===== */
        :root {
            --gradient-start: #667eea;
            --gradient-end: #764ba2;
            --success: #10b981;
            --danger: #ef4444;
            --warning: #f59e0b;
            --info: #3b82f6;
            --dark: #1f2937;
            --light-bg: #f9fafb;
            --border-color: #e5e7eb;
            --text-muted: #6b7280;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--light-bg);
            color: var(--dark);
            overflow-x: hidden;
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('images/home1.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            animation: fadeInUp 0.8s ease;
            padding: 0 20px;
        }

        .hero-subtitle {
            color: rgba(255,255,255,0.9);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: clamp(0.8rem, 2vw, 1rem);
            margin-bottom: 15px;
            font-weight: 500;
        }

        .hero-title {
            font-size: clamp(2rem, 6vw, 4rem);
            font-weight: 800;
            color: white;
            text-shadow: 2px 2px 30px rgba(0,0,0,0.7);
            margin: 0;
        }

        /* ===== DETAIL HEADER ===== */
        .detail-header {
            background: white;
            padding: 35px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 50px;
            position: relative;
        }

        .detail-header::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
        }

        .category-badge {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: white;
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 12px;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .detail-title {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--dark);
            margin: 10px 0 5px 0;
        }

        .category-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-top: 8px;
        }

        .btn-view-map {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: white;
            border: none;
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
            text-decoration: none;
            display: inline-block;
        }

        .btn-view-map:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
            color: white;
        }

        /* ===== SECTION TITLE ===== */
        .section-title {
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 2px;
        }

        .section-title i {
            margin-right: 12px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* ===== GALLERY ===== */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 15px;
            margin-bottom: 50px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            height: 160px;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0,0,0,0.25);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.25) rotate(2deg);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.85), rgba(118, 75, 162, 0.85));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: white;
            font-size: 40px;
            animation: zoomPulse 1s infinite;
        }

        @keyframes zoomPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        /* ===== DESCRIPTION ===== */
        .description-box {
            background: white;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            line-height: 2;
            text-align: justify;
            margin-bottom: 50px;
            border-left: 6px solid var(--gradient-start);
            font-size: 1.05rem;
            color: #4b5563;
        }

        /* ===== MAP ===== */
        .map-container {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
            margin-bottom: 25px;
            border: 4px solid white;
            outline: 2px solid var(--border-color);
        }

        .map-container iframe {
            width: 100%;
            height: 450px;
            border: 0;
            display: block;
        }

        .btn-maps {
            background: white;
            color: var(--gradient-start);
            border: 2px solid var(--gradient-start);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 13px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-maps:hover {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: white;
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        /* ===== SIDEBAR ===== */
        @media (min-width: 992px) {
            .sticky-sidebar {
                position: sticky;
                top: 100px;
            }
        }

        .info-card {
            background: white;
            border-radius: 25px;
            padding: 35px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
        }

        .info-card:hover {
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            transform: translateY(-5px);
        }

        .card-title {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 30px;
            font-size: 1.4rem;
            position: relative;
            padding-left: 25px;
        }

        .card-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 30px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 3px;
        }

        /* Info Items */
        .info-item {
            padding: 20px 0;
            border-bottom: 2px solid var(--border-color);
        }

        .info-item:last-child {
            border-bottom: none;
        }

        .info-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-muted);
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
        }

        .info-value {
            color: var(--dark);
            font-weight: 500;
            font-size: 1.05rem;
        }

        .info-value i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .price-tag {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--success), #059669);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* ===== FACILITIES ===== */
        .facility-item {
            background: linear-gradient(135deg, #f9fafb, #ffffff);
            padding: 18px;
            border-radius: 15px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .facility-item:hover {
            background: white;
            border-color: var(--gradient-start);
            transform: translateX(8px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
        }

        .facility-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--success), #059669);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            margin-right: 15px;
            font-size: 18px;
        }

        .facility-name {
            font-weight: 600;
            color: var(--dark);
            font-size: 1rem;
            margin-bottom: 0;
        }

        .facility-desc {
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.5;
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px dashed var(--border-color);
        }

        /* Details/Summary styling */
        details {
            cursor: pointer;
            width: 100%;
        }

        summary {
            list-style: none;
            outline: none;
            position: relative;
            padding-right: 25px;
        }

        summary::-webkit-details-marker {
            display: none;
        }

        summary::after {
            content: '\f107';
            font-family: 'FontAwesome';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gradient-start);
            transition: transform 0.3s ease;
        }

        details[open] summary::after {
            transform: translateY(-50%) rotate(180deg);
        }

        .detail-hint {
            color: var(--gradient-start);
            font-size: 0.7rem;
            font-weight: 500;
            margin-left: 8px;
        }

        /* ===== SHARE SECTION ===== */
        .share-card {
            background: linear-gradient(135deg, #f9fafb, #f3f4f6);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
        }

        .share-title {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .share-btn {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin: 0 10px;
            font-size: 22px;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .share-btn:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
            color: white;
        }

        .share-btn.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
        .share-btn.facebook { background: linear-gradient(135deg, #1877F2, #0D5DBE); }
        .share-btn.twitter { background: linear-gradient(135deg, #1DA1F2, #0C85D0); }
        .share-btn.email { background: linear-gradient(135deg, #6b7280, #4b5563); }

        /* ===== BACK BUTTON ===== */
        .btn-back {
            background: white;
            border: 2px solid var(--border-color);
            color: var(--dark);
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 13px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
            text-align: center;
        }

        .btn-back:hover {
            background: var(--dark);
            color: white;
            border-color: var(--dark);
            transform: translateX(-8px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeIn 0.6s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero-section {
                min-height: 300px;
                background-attachment: scroll;
            }

            .detail-header {
                padding: 25px 0;
            }

            .btn-view-map {
                width: 100%;
                margin-top: 15px;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
                gap: 12px;
            }

            .gallery-item {
                height: 130px;
                border-radius: 15px;
            }

            .description-box {
                padding: 25px;
                font-size: 1rem;
            }

            .map-container iframe {
                height: 300px;
            }

            .info-card {
                padding: 25px;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .card-title {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }

            .share-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
                margin: 0 6px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
 #btnToggle {
    color: blue;
    cursor: pointer;
    text-decoration: none;
}

#btnToggle:hover {
    text-decoration: underline;
}
