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

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            padding-top: 80px;
        }

        /* Custom Colors */
        :root {
            --primary-color: #d32f2f;
            --secondary-color: #ff6b6b;
            --accent-color: #f4e4c1;
            --dark-color: #2c3e50;
            --light-color: #f8f9fa;
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent-color);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loading-screen.hide {
            opacity: 0;
            pointer-events: none;
        }

        .spinner-custom {
            width: 60px;
            height: 60px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Custom Navbar */
        .navbar-custom {
            background: linear-gradient(135deg, var(--accent-color), #e8d5a3) !important;
            padding: 15px 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-custom.scrolled {
            background: rgba(244, 228, 193, 0.95) !important;
            backdrop-filter: blur(10px);
            padding: 10px 0;
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-img {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            font-weight: 600;
            text-transform: uppercase;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: #8b0000 !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        .navbar-toggler {
            border: none;
            color: var(--primary-color);
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Hero Section with Parallax */
        .hero-section {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(rgba(211, 47, 47, 0.7), rgba(139, 0, 0, 0.7));
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 120%;
            height: 120%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f5f5f5" width="1200" height="800"/><rect fill="%23ddd" x="100" y="100" width="300" height="600" rx="20"/><rect fill="%23ccc" x="450" y="150" width="200" height="500" rx="15"/><rect fill="%23bbb" x="700" y="80" width="400" height="640" rx="25"/><circle fill="%23aaa" cx="200" cy="200" r="80"/><polygon fill="%23999" points="500,200 600,200 550,350"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: -1;
        }

        .decorative-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cloud" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M20 30c0-10 10-20 20-20s20 10 20 20c5 0 10 5 10 10s-5 10-10 10H20c-5 0-10-5-10-10s5-10 10-10z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cloud)"/></svg>') repeat;
            opacity: 0.3;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-30px);
            }
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
            letter-spacing: 5px;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-weight: 400;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Main Content Sections */
        .section-padding {
            padding: 80px 0;
        }

        .bg-accent {
            background: linear-gradient(180deg, var(--accent-color), #fff, var(--accent-color));
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Custom Cards */
        .card-custom {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            background: white;
        }

        .card-custom:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .card-img-custom {
            height: 250px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .card-img-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 250"><rect fill="rgba(255,255,255,0.1)" x="50" y="50" width="100" height="100" rx="10"/><rect fill="rgba(255,255,255,0.1)" x="200" y="30" width="80" height="140" rx="10"/><rect fill="rgba(255,255,255,0.1)" x="300" y="70" width="80" height="120" rx="10"/><circle fill="rgba(255,255,255,0.1)" cx="120" cy="180" r="30"/></svg>');
            background-size: cover;
        }

        .card-icon {
            font-size: 3.5rem;
            color: white;
            z-index: 2;
            position: relative;
        }

        .card-body-custom {
            padding: 30px;
        }

        .card-title-custom {
            font-size: 1.4rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .card-text-custom {
            color: #666;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .btn-custom {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            border-radius: 25px;
            padding: 12px 30px;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
            color: white;
        }

        /* Parallax Info Section */
        .parallax-section {
            position: relative;
            padding: 120px 0;
            overflow: hidden;
            color: white;
            text-align: center;
        }

        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(211, 47, 47, 0.9), rgba(139, 0, 0, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f0f0f0" width="1200" height="600"/><rect fill="%23ddd" x="100" y="100" width="200" height="400" rx="15"/><circle fill="%23ccc" cx="400" cy="200" r="100"/><polygon fill="%23bbb" points="600,100 800,100 700,300"/><rect fill="%23aaa" x="900" y="150" width="200" height="300" rx="20"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: -1;
        }

        .parallax-content {
            position: relative;
            z-index: 2;
        }

        .parallax-content h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .parallax-content p {
            font-size: 1.3rem;
            line-height: 1.8;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            max-width: 900px;
            margin: 0 auto;
        }

        /* Features Section */
        .feature-card {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        #siragaya .container {
            padding-left: 0;
            padding-right: 0;
        }

        #siragaya .row {
            margin-left: 0;
            margin-right: 0;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 25px;
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
        }

        .feature-description {
            color: #666;
            line-height: 1.7;
        }

        /* Cagar Budaya Cards */
        .stat-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 10px 0 5px 0;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
        }

        .cagar-budaya-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            cursor: pointer;
            border: 1px solid #e9ecef;
        }

        .cagar-budaya-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .card-header-custom {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .card-header-custom::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="rgba(255,255,255,0.1)" cx="50" cy="50" r="20"/><rect fill="rgba(255,255,255,0.1)" x="20" y="30" width="10" height="40" rx="5"/><rect fill="rgba(255,255,255,0.1)" x="70" y="20" width="8" height="60" rx="4"/></svg>');
            animation: float 15s ease-in-out infinite;
        }

        .jenis-icon {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }

        .jenis-label {
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            position: relative;
            z-index: 2;
        }

        .card-body-cagar {
            padding: 25px;
        }

        .card-title-cagar {
            font-size: 1.3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .card-location {
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .card-location i {
            margin-right: 8px;
        }

        .card-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .card-meta {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 20px;
            gap: 10px;
        }

        .meta-item {
            font-size: 0.85rem;
            color: #888;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .meta-item i {
            color: var(--primary-color);
        }

        .btn-detail {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            border-radius: 25px;
            padding: 10px 20px;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            width: 100%;
            font-size: 0.9rem;
        }

        .btn-detail:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
            color: white;
        }

        /* Carousel Custom Styles */
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background: rgba(211, 47, 47, 0.8);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
        }

        .carousel-control-prev {
            left: -25px;
        }

        .carousel-control-next {
            right: -25px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: rgba(211, 47, 47, 1);
        }

        .carousel-indicators {
            bottom: -50px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary-color);
            border: none;
            margin: 0 5px;
        }

        /* Modal Custom Styles */
        .modal-content {
            border-radius: 20px;
            border: none;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .modal-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 20px 20px 0 0;
            border: none;
            padding: 20px 30px;
        }

        .modal-title {
            font-weight: 700;
            font-size: 1.3rem;
        }

        .btn-close {
            filter: brightness(0) invert(1);
            opacity: 0.8;
        }

        .btn-close:hover {
            opacity: 1;
        }

        .modal-body {
            padding: 30px;
        }

        /* Detail Content in Modal */
        .detail-section {
            margin-bottom: 25px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 4px solid var(--primary-color);
        }

        .detail-title {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .detail-content {
            color: #555;
            line-height: 1.6;
        }

        .detail-meta {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .meta-box {
            background: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .meta-box-icon {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .meta-box-title {
            font-size: 0.8rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
        }

        .meta-box-value {
            font-weight: 700;
            color: #333;
            font-size: 1rem;
        }

        /* Footer */
        .footer-section {
            background: #EEDDB3;
            color: #000000;
            padding: 80px 0 40px;
        }

        .footer-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: #000000;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #fc0000;
        }

        .footer-bottom {
            border-top: 1px solid #EEDDB3;
            padding-top: 30px;
            margin-top: 40px;
            text-align: center;
            color: #000000;
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* FAQ Accordion Styles */
.accordion-item {
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.accordion-button {
    background: white;
    color: #333;
    font-size: 1.05rem;
    padding: 20px 25px;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: none;
}

.accordion-button:not(.collapsed) i {
    color: white !important;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d32f2f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 25px;
    background: #fafafa;
    line-height: 1.8;
}

.accordion-body ul {
    padding-left: 20px;
}

.accordion-body ul li {
    margin-bottom: 8px;
}

/* Step Guide Styles */
.step-guide {
    position: relative;
    padding-left: 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.step-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 50px;
    bottom: -30px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.step-content {
    flex: 1;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-content h6 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    margin-bottom: 0;
}

.step-content ul {
    margin-top: 10px;
    padding-left: 20px;
    color: #666;
}

/* List Styled */
.list-styled {
    padding-left: 20px;
}

.list-styled li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.list-styled li strong {
    color: var(--primary-color);
}

/* Badge Status Styles in FAQ */
.badge {
    padding: 5px 12px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Alert Styles Enhancement */
.alert {
    border-radius: 10px;
    border-left: 4px solid;
}

.alert-info {
    background: #e3f2fd;
    border-color: #2196f3;
    color: #0d47a1;
}

.alert-warning {
    background: #fff3e0;
    border-color: #ff9800;
    color: #e65100;
}

.alert-success {
    background: #e8f5e9;
    border-color: #4caf50;
    color: #1b5e20;
}

/* Card in FAQ */
.card-header {
    font-weight: 600;
    border: none;
}

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .accordion-button {
        font-size: 0.95rem;
        padding: 15px 18px;
    }
    
    .accordion-button span {
        line-height: 1.4;
    }
    
    .accordion-body {
        padding: 20px;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-item:not(:last-child)::before {
        display: none;
    }
    
    .step-content {
        width: 100%;
    }
            .hero-title {
                font-size: 3rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .parallax-content h2 {
                font-size: 2.2rem;
            }

            .parallax-content p {
                font-size: 1.1rem;
            }

            .card-img-custom {
                height: 200px;
            }

            .card-meta {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                display: none;
            }
            
            .stat-card {
                margin-bottom: 15px;
            }
            
            .detail-meta {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.5rem;
                letter-spacing: 2px;
            }

            .section-padding {
                padding: 60px 0;
            }

            .parallax-section {
                padding: 80px 0;
            }
        }
/* Modal Detail Styles */
        .modal-content {
            background: #fff;
            border-radius: 16px;
            border: none;
        }

        .detail-section {
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid #e5e7eb;
        }

        .detail-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .detail-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
        }

        .detail-title i {
            color: #d4533c;
            width: 24px;
            font-size: 1.2rem;
        }

        .detail-content {
            background: #f9fafb;
            padding: 16px;
            border-radius: 10px;
            line-height: 1.6;
            color: #6b7280;
        }

        .detail-content h4 {
            color: #1f2937;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .detail-content p {
            margin-bottom: 10px;
        }

        .detail-content p:last-child {
            margin-bottom: 0;
        }

        .detail-content strong {
            color: #374151;
        }

        .detail-meta {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 20px;
        }

        .meta-box {
            background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
            padding: 14px;
            border-radius: 10px;
            border-left: 4px solid #d4533c;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .meta-box-icon {
            color: #d4533c;
            font-size: 1.2rem;
            min-width: 24px;
            flex-shrink: 0;
        }

        .meta-box-title {
            font-size: 0.75rem;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .meta-box-value {
            color: #1f2937;
            font-weight: 600;
            word-break: break-word;
        }

        .meta-box-value a {
            color: #d4533c;
            text-decoration: none;
            font-weight: 600;
        }

        .meta-box-value a:hover {
            text-decoration: underline;
        }

        .modal-body {
            padding: 24px;
            max-height: 70vh;
            overflow-y: auto;
        }

        .modal-body::-webkit-scrollbar {
            width: 6px;
        }

        .modal-body::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 10px;
        }

        .modal-body::-webkit-scrollbar-thumb {
            background: #d4533c;
            border-radius: 10px;
        }

        .modal-body::-webkit-scrollbar-thumb:hover {
            background: #c13c2c;
        }

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

            .modal-dialog {
                margin: 0.5rem;
            }

            .modal-body {
                padding: 16px;
                max-height: 80vh;
            }
        }