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

        body {
            font-family: 'Cairo', sans-serif;
            background: #F6F8F7;
            color: #2E3B33;
            line-height: 1.7;
        }

        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: #006C35;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, #006C35, #00A651);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
        }

        .detail-hero {
            padding: 50px 20px 30px;
            background: linear-gradient(135deg, #FFFFFF 0%, #F7F3EE 100%);
        }

        .detail-hero-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .detail-title {
            font-size: 32px;
            font-weight: 800;
            color: #0B3B23;
            margin-bottom: 8px;
        }

        .detail-meta {
            color: #5C6D64;
            font-size: 14px;
        }

        .detail-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 14px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
        }

        .badge-primary {
            background: linear-gradient(135deg, #8A6A2B, #C5A059);
            color: #fff;
        }

        .badge-soft {
            background: #F7F1E7;
            color: #5B4720;
        }

        .badge-outline {
            background: transparent;
            border: 1px solid rgba(138, 106, 43, 0.35);
            color: #8A6A2B;
        }

        .detail-layout {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px 80px;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 24px;
        }

        .detail-card {
            background: white;
            border-radius: 16px;
            padding: 22px;
            border: 1px solid rgba(197, 160, 89, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .detail-section-title {
            font-size: 18px;
            font-weight: 800;
            color: #2E3B33;
            margin-bottom: 10px;
        }

        .detail-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 8px;
            color: #4B5B52;
            font-size: 14px;
        }

        .detail-list li::before {
            content: "•";
            color: #8A6A2B;
            margin-left: 6px;
        }

        .detail-section {
            margin-top: 26px;
        }

        .detail-paragraph {
            color: #4B5B52;
            font-size: 14px;
            margin-top: 8px;
        }

        .mou-hint {
            background: #FFF8EA;
            border: 1px dashed rgba(138, 106, 43, 0.5);
            border-radius: 12px;
            padding: 12px 14px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 12px;
        }

        .mou-hint-label {
            color: #2E3B33;
            font-weight: 800;
        }

        .mou-hint-link {
            color: #8A6A2B;
            font-weight: 700;
            text-decoration: none;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(138, 106, 43, 0.12);
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .mou-hint-link:hover {
            background: rgba(138, 106, 43, 0.18);
            transform: translateY(-1px);
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 12px;
            margin-top: 12px;
        }

        .info-item {
            background: #FAF7F2;
            border: 1px solid rgba(138, 106, 43, 0.18);
            border-radius: 12px;
            padding: 12px 14px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .info-label {
            font-size: 12px;
            color: #7A6A49;
            font-weight: 700;
        }

        .info-value {
            font-size: 14px;
            color: #2E3B33;
            font-weight: 700;
            word-break: break-word;
        }

        .budget-box {
            background: rgba(197, 160, 89, 0.15);
            border-radius: 14px;
            padding: 16px;
            font-weight: 800;
            color: #8A6A2B;
            font-size: 18px;
            text-align: center;
        }

        .budget-caption {
            text-align: center;
            margin: 10px 0 12px;
            color: #6A5A3C;
            font-size: 13px;
            font-weight: 700;
        }

        .btn {
            padding: 12px 16px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            font-weight: 700;
            font-size: 14px;
            display: inline-block;
            text-decoration: none;
        }

        .btn-primary {
            background: #8A6A2B;
            color: white;
            width: 100%;
            text-align: center;
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid #8A6A2B;
            color: #8A6A2B;
            width: 100%;
            text-align: center;
            margin-top: 10px;
        }

        .detail-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .header-link {
            width: auto;
            margin-top: 0;
            padding: 8px 16px;
        }

        @media (max-width: 980px) {
            .detail-layout {
                grid-template-columns: 1fr;
            }
        }

.detail-image-container {
    width: 100%;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.detail-main-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.detail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.detail-gallery-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(138, 106, 43, 0.2);
}

@media (max-width: 768px) {
    .detail-badges {
        gap: 6px;
    }

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

    .detail-main-image {
        max-height: 250px;
    }

    .detail-gallery-image {
        height: 100px;
    }
}
