/* Landing Page Styles */
body {
    background: linear-gradient(to right, #B06AB3, #4568DC);
    color: #2e2e2e;
    font-family: "Raleway", sans-serif;
    margin: 0;
    padding: 0;
}

.hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100%;
}

.hero--video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.hero-text-box {
    display: inline-block;
    padding: 30px 50px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    position: relative;
}


.hero h1 {
    font-size: clamp(1.2rem, 4vw, 3rem);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9),
                 0 0 20px rgba(0,0,0,0.8),
                 0 0 40px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

.hero p {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9),
                 0 0 15px rgba(0,0,0,0.7);
}

.hero p.hero-subtitle {
    font-size: clamp(0.8rem, 3vw, 1.3rem);
    opacity: 0.9;
    margin-bottom: 25px;
}

.btn-hero-cta {
    display: inline-block;
    width: auto;
    background: rgb(179, 0, 123);
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(179, 0, 123, 0.4),
                0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
}

.btn-hero-cta:hover {
    background: rgb(200, 20, 143);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(179, 0, 123, 0.5),
                0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-hero-cta:active {
    transform: translateY(-1px);
}

.herobtn {
    display: flex;
    padding: .5rem .5rem;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-left: auto;
    margin-right: auto;
}

.hero-sound-btn {
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    z-index: 4;
    position: relative;
}

.hero-sound-btn:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.herobtn:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

/* Mobile/Desktop visibility */
.desktop-only {
    display: block;
}
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}

/* Mobile Hamburger Menu */
.mobile-menu-container {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 2000;
}

.hamburger-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: right 0.3s ease;
    z-index: 2001;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.close-menu-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-language-switcher {
    margin-bottom: 20px;
}

.mobile-language-switcher label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.mobile-language-switcher .form-select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.mobile-language-switcher .form-select option {
    background: #333;
    color: white;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

.workshop-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    align-items: stretch;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    transition: all 0.5s ease;
}

@media (max-width: 1100px) {
    .workshop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.workshop-grid > * {
    transition: all 0.5s ease;
}

.workshop-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.card-header {
    background-color: #C36EA9;
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 1.2rem;
    height: 88px; /* Fixed height for 2 lines: accommodates wrapped titles */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    overflow: hidden; /* Hide overflow if text is too long */
}

/* Slick Carousel Styles - 16:9 Responsive */
.slick-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
}

.slick-carousel .slick-list,
.slick-carousel .slick-track {
    height: 100%;
}

.slick-carousel .slick-slide {
    height: 100%;
}

.slick-carousel .slick-slide > div {
    height: 100%;
}

.slick-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slick-prev, .slick-next {
    z-index: 1;
    width: 40px;
    height: 40px;
}

.slick-prev:before, .slick-next:before {
    font-size: 30px;
    color: white;
    opacity: 0.75;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.slick-dots {
    bottom: 50px;
    z-index: 5;
}

.slick-dots li button:before {
    color: white;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
}

/* Ensure slick dots don't interfere with video controls */
.slick-carousel .slick-dots {
    pointer-events: none;
}

.slick-carousel .slick-dots li {
    pointer-events: auto;
}

/* Video.js styling in carousel - 16:9 Responsive */
.video-js {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}

.vjs-poster {
    background-size: cover;
    background-position: center;
}

.video-js .vjs-tech {
    object-fit: cover;
}

.slick-carousel .video-container {
    width: 100%;
    height: 100%;
    background: #000;
}

/* Video Sound Toggle Button */
.video-container {
    position: relative;
}

.video-sound-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.video-sound-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video.js Controls - YouTube Style */
.video-js .vjs-big-play-button {
    font-size: 4em;
    line-height: 1.5em;
    height: 1.5em;
    width: 1.5em;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    border: 0.06666em solid #fff;
    background-color: rgba(43, 51, 63, 0.7);
    border-radius: 50%;
    z-index: 100;
    transition: opacity 0.3s ease;
}

.video-js .vjs-big-play-button:hover {
    background-color: rgba(115, 133, 159, 0.9);
}

/* Hide big play button when playing (YouTube style) */
.video-js.vjs-playing .vjs-big-play-button {
    display: none;
}

/* Auto-hide big play button after inactivity */
.video-js.vjs-user-inactive.vjs-playing .vjs-big-play-button {
    opacity: 0;
    pointer-events: none;
}

/* Show play/pause overlay on hover (YouTube style) */
.video-js .vjs-play-pause-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(43, 51, 63, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-js.vjs-paused:hover .vjs-play-pause-overlay,
.video-js.vjs-playing.vjs-user-active .vjs-play-pause-overlay {
    display: flex;
}

.video-js.vjs-user-inactive.vjs-playing .vjs-play-pause-overlay {
    display: none;
}

.video-js .vjs-control-bar {
    display: flex;
    visibility: visible;
    opacity: 1;
    background-color: rgba(43, 51, 63, 0.7);
    height: 3em;
    z-index: 15;
    pointer-events: auto;
}

.video-js:hover .vjs-control-bar {
    opacity: 1;
}

.video-js .vjs-play-control,
.video-js .vjs-volume-panel,
.video-js .vjs-current-time,
.video-js .vjs-time-divider,
.video-js .vjs-duration,
.video-js .vjs-progress-control,
.video-js .vjs-fullscreen-control {
    display: flex;
    pointer-events: auto;
}

/* Ensure control buttons are clickable */
.video-js button {
    pointer-events: auto;
}

.video-js .vjs-progress-control {
    pointer-events: auto;
}

/* Hide Video.js error display */
.vjs-error-display {
    display: none;
}

.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    /* No flex: 1 - description takes only the space it needs */
}

.card-footer {
    background: #f8f9fa;
    padding: 15px 20px;
    border-top: 1px solid #dee2e6;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    /* Dynamic min-height will be set by JavaScript */
}

.price-duration {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align to top instead of center */
    margin-bottom: 15px;
    /* Dynamic min-height will be set by JavaScript */
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #C36EA9;
}

.duration {
    color: #666;
    font-size: 0.9rem;
}

.age-requirement {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto; /* Push buttons to bottom of card footer */
}

.btn-book {
    flex: 2;
    background: linear-gradient(135deg, #C36EA9, #860c7e);
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-book:hover {
    transform: scale(1.05);
    color: white;
}

.btn-info {
    flex: 1;
    background: transparent;
    color: #C36EA9;
    border: 2px solid #C36EA9;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-info:hover {
    background: #C36EA9;
    color: white;
}

/* More Information Button Specific Styles */
.btn-more-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.btn-more-info:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(195, 110, 169, 0.3);
}

.btn-more-info .more-info-chevron {
    display: none; /* Hidden - using modal now */
}

/* More Information Expandable Content - Hidden (using modal instead) */
.more-info-content {
    display: none !important; /* Hidden - data is extracted for modal */
}

.more-info-inner {
    padding: 25px 20px;
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
    border-top: 2px solid #dee2e6;
}

.info-section {
    margin-bottom: 25px;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h4 {
    color: #C36EA9;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-section h4 i {
    font-size: 1.2rem;
}

.info-section p,
.info-section div {
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 12px;
}

.highlight-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: transform 0.2s, box-shadow 0.2s;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 110, 169, 0.15);
}

.highlight-item i {
    color: #C36EA9;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.highlight-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 8px 0 5px 0;
}

.highlight-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Timeline */
.timeline-list {
    position: relative;
    padding-left: 30px;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, #C36EA9, #dee2e6);
}

.timeline-item {
    position: relative;
    padding: 12px 0;
    padding-left: 15px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 18px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #C36EA9;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #C36EA9;
}

.timeline-time {
    display: inline-block;
    background: #C36EA9;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.timeline-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 6px 0 4px 0;
}

.timeline-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Included Items List */
.included-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.included-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #333;
    font-size: 0.95rem;
}

.included-list li::before {
    content: '\f26b'; /* Bootstrap Icons check-circle-fill */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: #28a745;
    font-size: 1.1rem;
}

/* RTL Support for More Info */
body.rtl .more-info-inner {
    text-align: right;
}

body.rtl .timeline-list {
    padding-left: 0;
    padding-right: 30px;
}

body.rtl .timeline-list::before {
    left: auto;
    right: 8px;
}

body.rtl .timeline-item {
    padding-left: 0;
    padding-right: 15px;
}

body.rtl .timeline-item::before {
    left: auto;
    right: -26px;
}

body.rtl .included-list li {
    padding-left: 0;
    padding-right: 28px;
}

body.rtl .included-list li::before {
    left: auto;
    right: 0;
}

/* ========================================
   WORKSHOP DETAILS MODAL
   ======================================== */

.workshop-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s 0.4s;
}

.workshop-modal.active {
    visibility: visible;
    pointer-events: auto;
    transition: visibility 0s 0s;
}

/* Backdrop - scoped to workshop modal only */
.workshop-modal .workshop-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.workshop-modal.active .workshop-backdrop {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

/* Modal Container */
.modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 10000;
    width: 95%;
    max-width: 900px;
    max-height: 90vh;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.3s ease;
    display: flex;
    flex-direction: column;
}

.workshop-modal.active .modal-container {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
    background: #C36EA9;
    color: white;
    transform: scale(1.1) rotate(90deg);
}

/* Navigation Arrows */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
}

.workshop-modal.active .modal-nav {
    opacity: 1;
    pointer-events: auto;
}

.modal-nav-prev {
    left: -70px;
}

.modal-nav-next {
    right: -70px;
}

.modal-nav:hover {
    background: #C36EA9;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.modal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Modal Content Wrapper - using workshop-modal prefix to avoid Bootstrap conflicts */
.workshop-modal .modal-content {
    flex: 1;
    overflow-y: auto;
    scroll-behavior: smooth;
    background: #fff;
    border: none;
    border-radius: 0;
}

/* Hero Section */
.workshop-modal .modal-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.modal-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #C36EA9; /* Fallback color */
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.modal-container:hover .modal-hero-image {
    transform: scale(1.05);
}

.modal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.modal-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: white;
}

.modal-hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.modal-hero-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.modal-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
}

.modal-stat i {
    font-size: 1.1rem;
    color: #ffd700;
}

/* Modal Body */
.workshop-modal .modal-body {
    padding: 30px;
    padding-bottom: 30px;
    border: none;
}

.modal-section {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

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

.modal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-section h3 i {
    color: #C36EA9;
    font-size: 1.4rem;
}

.modal-intro .lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
}

/* Highlights Grid */
.modal-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.modal-highlight-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.modal-highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(195, 110, 169, 0.15);
    border-color: #C36EA9;
}

.modal-highlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #C36EA9 0%, #860c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-highlight-icon i {
    font-size: 1.5rem;
    color: white;
}

.modal-highlight-item h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.modal-highlight-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Timeline */
.modal-timeline {
    position: relative;
    padding-left: 40px;
}

.modal-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 5px;
    bottom: 5px;
    width: 3px;
    background: linear-gradient(to bottom, #C36EA9, #e9c6e0);
    border-radius: 3px;
}

.modal-timeline-item {
    position: relative;
    padding: 15px 0;
    padding-left: 20px;
}

.modal-timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 22px;
    width: 16px;
    height: 16px;
    background: #C36EA9;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #C36EA9;
}

.modal-timeline-time {
    display: inline-block;
    background: linear-gradient(135deg, #C36EA9 0%, #860c7e 100%);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.modal-timeline-item h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.modal-timeline-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Included List */
.modal-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.modal-included-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.2s ease;
}

.modal-included-list li:hover {
    background: #e9f7ef;
}

.modal-included-list li i {
    color: #28a745;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Pricing Section */
.modal-pricing {
    background: linear-gradient(135deg, #f8f4ff 0%, #fff 100%);
    margin: 0 -30px;
    padding: 30px !important;
    border-bottom: none !important;
}

#modalPricing {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

/* Take Home Section */
#modalTakeHome {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

/* Detailed Description */
#modalDetailedDescription {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

/* Sticky Footer */
.workshop-modal .modal-footer {
    flex-shrink: 0;
    padding: 20px 30px;
    background: white;
    border-top: 1px solid #eee;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
}

.modal-footer-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.modal-footer-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #C36EA9;
}

.modal-footer-duration {
    font-size: 0.9rem;
    color: #666;
}

.modal-book-btn {
    background: linear-gradient(135deg, #C36EA9 0%, #860c7e 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(195, 110, 169, 0.4);
}

.modal-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(195, 110, 169, 0.5);
}

.modal-book-btn:active {
    transform: translateY(0);
}

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Mobile Responsiveness */
@media (max-width: 1100px) {
    .modal-nav-prev {
        left: 10px;
    }
    .modal-nav-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .modal-container {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }

    .modal-hero {
        height: 220px;
    }

    .modal-hero-content h1 {
        font-size: 1.6rem;
    }

    .modal-hero-stats {
        gap: 10px;
    }

    .modal-stat {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .modal-body {
        padding: 20px;
        padding-bottom: 100px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .modal-nav-prev {
        left: 5px;
    }

    .modal-nav-next {
        right: 5px;
    }

    .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .modal-footer-info {
        text-align: center;
    }

    .modal-book-btn {
        width: 100%;
        justify-content: center;
    }

    .modal-highlights {
        grid-template-columns: 1fr;
    }

    .modal-included-list {
        grid-template-columns: 1fr;
    }

    .modal-pricing {
        margin: 0 -20px;
        padding: 20px !important;
    }
}

/* RTL Support */
body.rtl .modal-hero-content,
body.rtl .modal-body,
body.rtl .modal-footer {
    text-align: right;
}

body.rtl .modal-timeline {
    padding-left: 0;
    padding-right: 40px;
}

body.rtl .modal-timeline::before {
    left: auto;
    right: 12px;
}

body.rtl .modal-timeline-item {
    padding-left: 0;
    padding-right: 20px;
}

body.rtl .modal-timeline-item::before {
    left: auto;
    right: -34px;
}

body.rtl .modal-nav-prev {
    left: auto;
    right: -70px;
}

body.rtl .modal-nav-next {
    right: auto;
    left: -70px;
}

@media (max-width: 1100px) {
    body.rtl .modal-nav-prev {
        right: auto;
        left: 10px;
    }
    body.rtl .modal-nav-next {
        left: auto;
        right: 10px;
    }
}

/* Large screens - keep 3 cards max */
@media (min-width: 1400px) {
    .workshop-grid {
        max-width: 1400px;
    }

    .workshop-container {
        max-width: 1450px;
    }

    .carousel-container {
        max-width: 1500px;
    }
}

@media (max-width: 768px) {
    .btn-info {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    .btn-hero-cta {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    .hero-text-box {
        padding: 20px 25px;
    }
}

@media (max-width: 600px) {
    .workshop-grid {
        grid-template-columns: 1fr;
    }
    .filter-btn {
        display: inline-block;
        width: auto;
        margin: 4px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    .hero-text-box {
        padding: 20px 30px;
        margin: 0 10px 30px;
    }

    .hero-sound-btn {
        width: 45px;
        height: 45px;
    }
}

/* Filter Buttons */
.filter-buttons {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.filter-btn {
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    background: white;
    color: #C36EA9;
    border: 2px solid #C36EA9;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.filter-btn:hover {
    background: #C36EA9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(195, 110, 169, 0.3);
}

.filter-btn.active {
    background: #C36EA9;
    color: white;
    box-shadow: 0 5px 15px rgba(195, 110, 169, 0.3);
}

.workshop-card {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

.workshop-card.hiding {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.workshop-card.hidden {
    display: none;
}

.workshop-card.showing {
    animation: fadeInUp 0.5s ease forwards;
}

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

/* RTL Support */
[dir="rtl"] .slick-prev {
    right: 10px;
    left: auto;
}

[dir="rtl"] .slick-next {
    left: 10px;
    right: auto;
}

[dir="rtl"] .action-buttons {
    flex-direction: row-reverse;
}

/* Video Carousel Styles */
#videoCarouselTrack::-webkit-scrollbar {
    display: none;
}
#videoCarouselTrack {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.video-card {
    transition: transform 0.3s ease;
}
.video-card:hover {
    transform: scale(1.05);
}

/* Play button overlay for vertical videos */
.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: none;
    opacity: 0;
    z-index: 10;
}

.video-card:hover .video-play-overlay,
.video-card .video-play-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.video-play-overlay:hover {
    background-color: rgba(195, 110, 169, 0.95);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-overlay i {
    font-size: 40px;
    color: #333;
    margin-left: 5px;
}

.video-play-overlay:hover i {
    color: white;
}

.video-play-overlay.playing i::before {
    content: "\f28b"; /* Bootstrap Icons pause */
}

/* Video Carousel Section */
.video-carousel-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    margin: 20px 0;
}

.video-carousel-section h2 {
    text-align: center;
    color: white;
    margin-bottom: 30px;
    font-size: 2rem;
}

.carousel-container {
    position: relative;
    max-width: 1270px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
}

.nav-button {
    flex-shrink: 0;
    z-index: 10;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s;
}

.nav-button:hover {
    background: rgba(195, 110, 169, 0.95);
    color: white;
    transform: scale(1.1);
}

.nav-button.prev {
    order: 1;
}

.carousel-track {
    order: 2;
    flex: 1;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.nav-button.next {
    order: 3;
}

.video-card {
    position: relative;
    flex: 0 0 300px;
    height: 533px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.vertical-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.time-filters {
    margin-bottom: 15px;
}

/* Modal Styles */
.modal-header-custom {
    background: linear-gradient(135deg, #C36EA9, #860c7e);
    color: white;
}

.btn-custom-primary {
    background: linear-gradient(135deg, #C36EA9, #860c7e);
    border: none;
}

/* School Trips Banner */
.school-trips-banner {
    background: linear-gradient(135deg, #4a2c2a 0%, #2d1810 100%);
    padding: 40px 0;
    margin: 40px 0 0 0;
}

.school-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.school-banner-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.school-banner-icon i {
    font-size: 2.5rem;
    color: #f8d070;
}

.school-banner-text {
    flex: 1;
}

.school-banner-text h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.school-banner-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.5;
}

.btn-school-cta {
    flex-shrink: 0;
    background: linear-gradient(135deg, #C36EA9, #a855a1);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
}

.btn-school-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(195, 110, 169, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .school-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .school-banner-text h3 {
        font-size: 1.5rem;
    }

    .school-banner-text p {
        font-size: 1rem;
    }

    .btn-school-cta {
        width: 100%;
        justify-content: center;
    }
}

/* School Trips Button in Filter Bar */
.school-trips-btn {
    background: linear-gradient(135deg, #4a2c2a, #2d1810) !important;
    color: white !important;
    border: none !important;
    text-decoration: none;
}

.school-trips-btn:hover {
    background: linear-gradient(135deg, #5a3c3a, #3d2820) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 24, 16, 0.3);
}

.school-trips-btn i {
    color: #f8d070;
}

/* Mobile Video Carousel - Overlay navigation arrows */
@media (max-width: 768px) {
    .carousel-container {
        position: relative;
        padding: 0 10px;
        gap: 0;
    }

    .carousel-track {
        width: 100%;
        padding: 20px 35px; /* Make room for overlaid arrows */
        gap: 15px;
    }

    .video-card {
        flex: 0 0 calc(100vw - 100px); /* Full width minus arrow space */
        height: calc((100vw - 100px) * 16 / 9); /* Maintain 9:16 aspect ratio */
        max-height: 500px;
    }

    .nav-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        font-size: 20px;
        background: rgba(255, 255, 255, 0.85);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        z-index: 20;
    }

    .nav-button.prev {
        left: 5px;
    }

    .nav-button.next {
        right: 5px;
    }

    .video-carousel-section h2 {
        font-size: 1.5rem;
        padding: 0 15px;
    }

    .video-play-overlay {
        width: 60px;
        height: 60px;
    }

    .video-play-overlay i {
        font-size: 28px;
    }
}
