#recommended-tours,
#recommended-events,
#recommended-hotels,
#recommended-bungalows,
#recommended-locations {
    display: flex;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../gorsel/tours_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    padding: 100px 50px;
    box-sizing: border-box;
    align-items: center;
    position: relative;
    z-index: 20;
}

.mosaic-wrapper {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.mosaic-grid {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.mosaic-text-section {
    flex: 1;
    font-family: 'Comfortaa', sans-serif;
}

.mosaic-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mosaic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mosaic-item:hover img {
    transform: scale(1.1);
}

/* Mosaic Layout Logic */
.mosaic-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.mosaic-item-content h3 {
    font-size: 16px !important;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mosaic-item-content p {
    font-size: 13px !important;
    margin: 5px 0 0;
    opacity: 0.9;
}

/* First item (Featured) gets bigger text */
.mosaic-item:nth-child(1) .mosaic-item-content h3 {
    font-size: 28px !important;
}

.mosaic-item:nth-child(1) .mosaic-item-content p {
    font-size: 16px !important;
}
.mosaic-item:hover .mosaic-item-content {
    opacity: 1;
    transform: translateY(0);
}

.mosaic-item.see-all {
    background: #ecad29;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Comfortaa', sans-serif;
    transition: all 0.3s ease;
}

.mosaic-item.see-all:hover {
    background: #fff;
    color: #ecad29;
}

.mosaic-item.see-all span {
    font-size: 24px;
    margin-bottom: 10px;
}

.mosaic-item.see-all svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.mosaic-item.see-all:hover svg {
    transform: translateX(5px);
}

/* Text Section */
.u-label {
    font-size: 14px;
    color: #ecad29;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.mosaic-text-section h2 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 64px;
    line-height: 1.1;
    margin: 0 0 30px 0;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.mosaic-text-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}
.btn-premium {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    letter-spacing: 1px;
}
.btn-premium:hover {
    background: #ecad29;
    border-color: #ecad29;
    color: #000;
    padding-left: 50px;
    padding-right: 30px;
}

/* Reveal Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.reveal-on-scroll.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items */
.mosaic-item.reveal-on-scroll:nth-child(1) {
    transition-delay: 0.1s;
}

.mosaic-item.reveal-on-scroll:nth-child(2) {
    transition-delay: 0.2s;
}

.mosaic-item.reveal-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

.mosaic-item.reveal-on-scroll:nth-child(4) {
    transition-delay: 0.4s;
}

.mosaic-item.reveal-on-scroll:nth-child(5) {
    transition-delay: 0.5s;
}

.mosaic-item.reveal-on-scroll:nth-child(6) {
    transition-delay: 0.6s;
}

.mosaic-text-section.reveal-on-scroll {
    transition-delay: 0.2s;
}

.u-label,
.mosaic-text-section h2,
.mosaic-text-section p,
.btn-premium {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-active .u-label,
.reveal-active h2,
.reveal-active p,
.reveal-active .btn-premium {
    opacity: 1;
    transform: translateY(0);
}

.reveal-active .u-label {
    transition-delay: 0.3s;
}

.reveal-active h2 {
    transition-delay: 0.4s;
}

.reveal-active p {
    transition-delay: 0.5s;
}

.reveal-active .btn-premium {
    transition-delay: 0.6s;
}