 /* ================= DYNAMIC BACKGROUND SLIDER ================= */
        .dynamic-slider-section {
            position: relative;
            min-height: 75vh;
            display: flex;
            align-items: center;
            background-color: #000;
            overflow: hidden;
            font-family: 'Montserrat', sans-serif;
        }

        #bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: background-image 0.8s ease-in-out;
            filter: brightness(0.3) blur(8px);
            z-index: 1;
            transform: scale(1.1);
        }

        .swiper {
            width: 100%;
            padding: 50px 0;
            position: relative;
            z-index: 10;
        }

        .swiper-slide {
            transition: all 0.5s ease;
            opacity: 0.3;
            transform: scale(0.8);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .slide-inner {
            position: relative;
            width: 100%;
            max-width: 500px;
            border: 2px solid white;
            padding: 20px;
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }

        .swiper-slide-active {
            opacity: 1;
            transform: scale(1);
        }

        .swiper-slide-active .slide-inner {
            border: none;
            padding: 0;
            height: auto;
            display: block;
        }

        .swiper-slide-active img {
            display: block;
            height: 400px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

        .side-title {
            color: white;
            font-family: 'Cinzel', serif;
            text-transform: uppercase;
            letter-spacing: 4px;
            position: absolute;
            z-index: 5;
        }

        .swiper-slide-active .side-title {
            display: none;
        }

        .info-box {
            background: white;
            padding: 40px;
            text-align: center;
            width: 80%;
            margin: -60px auto 0;
            position: relative;
            z-index: 10;
            display: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .swiper-slide-active .info-box {
            display: block;
        }

        .info-box h3 {
            font-family: 'Cinzel', serif;
            color: #222;
            margin-bottom: 10px;
            font-size: 24px;
        }

        .info-box p {
            color: #666;
            font-size: 13px;
            line-height: 1.6;
        }

        .more-link {
            color: #b08a32;
            text-decoration: none;
            font-weight: bold;
            font-size: 12px;
            letter-spacing: 1px;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: white !important;
            width: 50px !important;
            height: 50px !important;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            background: rgba(0,0,0,0.2);
        }

        @media (max-width: 768px) {
            .swiper-slide-active img {
                height: 300px;
            }
            .info-box {
                padding: 25px;
                width: 90%;
            }
        }
        
        
        