        /* PHOTO SLIDE SECTION CSS - START */
        .photo-slide {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            font-family: "Inter", sans-serif;
            background: #0a0a0a;
        }
        
        @media (max-width: 1023px) {
            .photo-slide {
                min-height: 100vh;
                height: auto;
            }
        }

        .photo-slide .ps-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .photo-slide .ps-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-position: center;
            background-size: cover;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
        }

        .photo-slide .ps-bg-image.active {
            opacity: 1;
        }

        .photo-slide .ps-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(30, 30, 30, 0.6) 100%);
            z-index: 2;
        }

        .photo-slide .ps-card-container {
            position: absolute;
            bottom: 60px;
            right: 80px;
            width: auto;
            height: 400px;
            z-index: 5;
            pointer-events: none;
        }
        
        @media (max-width: 1023px) {
            .photo-slide .ps-card-container {
                left: 0;
                right: auto;
                bottom: 0;
                width: 100%;
                height: 300px;
            }
        }

        .photo-slide .ps-card {
            position: absolute;
            background-position: center;
            background-size: cover;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .photo-slide .ps-content {
            position: relative;
            z-index: 10;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 80px 60px;
        }
        
        @media (max-width: 1023px) {
            .photo-slide .ps-content {
                min-height: 100vh;
                height: auto;
                padding: 60px 30px 350px 30px;
                justify-content: center;
            }
        }

        .photo-slide .ps-details {
            max-width: 600px;
            background: rgba(102, 187, 106, 0.08);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(102, 187, 106, 0.2);
            padding: 60px;
            border-radius: 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                        inset 0 1px 0 rgba(102, 187, 106, 0.15),
                        0 0 60px rgba(76, 175, 80, 0.1);
        }

        .photo-slide .ps-category {
            display: inline-block;
            padding: 10px 20px;
            background: linear-gradient(135deg, rgba(102, 187, 106, 0.25) 0%, rgba(76, 175, 80, 0.25) 100%);
            backdrop-filter: blur(10px);
            color: #a5d6a7;
            border-radius: 30px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 28px;
            border: 1px solid rgba(102, 187, 106, 0.3);
        }

        .photo-slide .ps-title {
            font-family: "Playfair Display", serif;
            font-size: 56px;
            font-weight: 700;
            background: linear-gradient(135deg, #a5d6a7 0%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            margin-bottom: 28px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .photo-slide .ps-desc {
            font-size: 17px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 32px;
        }

        .photo-slide .ps-meta {
            display: flex;
            gap: 32px;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .photo-slide .ps-meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .photo-slide .ps-meta-item svg {
            width: 20px;
            height: 20px;
            stroke: rgba(255, 255, 255, 0.9);
            flex-shrink: 0;
        }

        .photo-slide .ps-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .photo-slide .ps-btn-primary {
            padding: 18px 40px;
            background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
            color: #ffffff;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
        }

        .photo-slide .ps-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(76, 175, 80, 0.5);
            background: linear-gradient(135deg, #81c784 0%, #66bb6a 100%);
        }

        .photo-slide .ps-btn-secondary {
            padding: 18px 40px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            color: #a5d6a7;
            border: 2px solid rgba(102, 187, 106, 0.4);
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .photo-slide .ps-btn-secondary:hover {
            background: rgba(102, 187, 106, 0.15);
            border-color: rgba(102, 187, 106, 0.6);
            color: #c8e6c9;
        }

        .photo-slide .ps-pagination {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 20px;
            z-index: 100;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 16px 32px;
            border-radius: 50px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                        inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .photo-slide .ps-arrow {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: grid;
            place-items: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .photo-slide .ps-arrow:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.1);
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
        }

        .photo-slide .ps-arrow svg {
            width: 20px;
            height: 20px;
            stroke: white;
            stroke-width: 2.5;
        }

        .photo-slide .ps-dots {
            display: flex;
            gap: 10px;
        }

        .photo-slide .ps-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s;
        }

        .photo-slide .ps-dot.active {
            width: 30px;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.95);
        }

        .photo-slide .ps-counter {
            font-size: 16px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
            min-width: 50px;
            text-align: center;
        }

        .photo-slide .ps-progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #66bb6a 0%, #4caf50 100%);
            z-index: 101;
            transition: width 0.1s linear;
            box-shadow: 0 0 10px rgba(76, 175, 80, 0.6);
        }

        /* Responsive Design */
        @media (min-width: 1024px) {
            .photo-slide .ps-content {
                padding-left: 80px;
            }
            
            .photo-slide .ps-card-container {
                right: 80px;
            }
        }

        @media (max-width: 1023px) {
            .photo-slide {
                min-height: 100vh;
                height: auto;
            }
            
            .photo-slide .ps-content {
                justify-content: center;
                min-height: 100vh;
                height: auto;
                padding: 60px 30px 350px 30px;
            }

            .photo-slide .ps-details {
                padding: 50px 40px;
                max-width: 100%;
            }

            .photo-slide .ps-title {
                font-size: 46px;
            }
            
            .photo-slide .ps-card-container {
                left: 0;
                right: auto;
                bottom: 0;
                width: 100%;
                height: 300px;
            }
        }

        @media (max-width: 767px) {
            .photo-slide .ps-content {
                padding: 60px 20px 380px 20px;
            }

            .photo-slide .ps-details {
                padding: 35px 28px;
            }

            .photo-slide .ps-title {
                font-size: 38px;
            }

            .photo-slide .ps-desc {
                font-size: 15px;
            }

            .photo-slide .ps-meta {
                gap: 20px;
            }

            .photo-slide .ps-cta {
                flex-direction: column;
            }

            .photo-slide .ps-btn-primary,
            .photo-slide .ps-btn-secondary {
                width: 100%;
                text-align: center;
            }

            .photo-slide .ps-pagination {
                bottom: 20px;
                padding: 14px 24px;
                gap: 14px;
            }

            .photo-slide .ps-arrow {
                width: 42px;
                height: 42px;
            }

            .photo-slide .ps-dots {
                gap: 8px;
            }

            .photo-slide .ps-dot {
                width: 8px;
                height: 8px;
            }

            .photo-slide .ps-dot.active {
                width: 24px;
            }

            .photo-slide .ps-counter {
                font-size: 14px;
                min-width: 45px;
            }

            .photo-slide .ps-card-container {
                height: 250px;
            }
        }
        /* PHOTO SLIDE SECTION CSS - END */