.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 300px;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-description {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.gallery-link {
    color: #0077FF;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.gallery-link:hover {
    text-decoration: underline;
}

/* Virtual Tours Section */
.virtual-tours-section {
    margin-top: 50px;
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tours-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.tours-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0077FF;
}

.tours-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tour-item {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tour-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tour-item h4 {
    text-align: center;
    padding: 20px;
    margin: 0;
    background-color: #0077FF;
    color: #fff;
}

.kuula-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.kuula-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Testimonials Section */
.testimonials-slider {
    padding: 20px 0;
    overflow: hidden;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p:before,
.testimonial-content p:after {
    content: '"';
    font-size: 2rem;
    color: #0077FF;
    position: absolute;
    font-family: Georgia, serif;
}

.testimonial-content p:before {
    left: 0;
    top: -10px;
}

.testimonial-content p:after {
    right: 0;
    bottom: -20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-icon {
    width: 50px;
    height: 50px;
    background-color: #0077FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
    font-size: 1.5rem;
}

.author-info h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: #333;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

.testimonials-pagination {
    text-align: center;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    opacity: 1;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    background-color: #0077FF;
}

/* About Section */
.about-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    color: #ccc;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0077FF;
    margin-bottom: 10px;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

/* Coverage Section */
.coverage-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.coverage-area {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.coverage-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.coverage-icon {
    color: #0077FF;
    font-size: 1.2rem;
    margin-right: 10px;
}

.coverage-area h4 {
    margin: 0;
    font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .tours-container {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .coverage-areas {
        flex-direction: column;
        align-items: center;
    }
    
    .coverage-area {
        width: 80%;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .virtual-tours-section {
        padding: 20px;
    }
    
    .coverage-area {
        width: 100%;
    }
}
