/* Gallery Styles */
.gallery-container {
    width: 100%;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-main {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

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

.gallery-thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background-color: var(--light-gray);
}

.gallery-thumb {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-thumb.active {
    border-color: var(--gold);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .gallery-main {
        height: 300px;
    }
    
    .gallery-thumbnails {
        padding: 10px;
    }
    
    .gallery-thumb {
        width: 70px;
        height: 50px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .comparison-container {
        flex-direction: column;
    }
    
    .comparison-slider {
        height: 300px;
    }
    
    .features-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .location-container {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Additional Mobile Fixes */
@media (max-width: 480px) {
    .gallery-main {
        height: 250px;
    }
    
    .gallery-thumb {
        width: 60px;
        height: 40px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .highlight-card {
        margin-bottom: 1.5rem;
    }
    
    .form-row {
        margin-bottom: 1rem;
    }
}
