/* Custom Animations and Responsive Styles */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced Service Card Animations */
.zr-theme-single-service-card {
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.zr-theme-single-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.zr-theme-single-service-card img {
    transition: all 0.5s ease;
}

.zr-theme-single-service-card:hover img {
    transform: scale(1.1);
}

/* About Section Enhancements */
.about .content {
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.about .content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 50%;
    background: var(--primary-color, #ff4a17);
    border-radius: 4px;
}

/* Gallery Hover Effects */
.gallery-grid .gallery-item {
    transition: all 0.4s ease;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-grid .gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Enhanced Contact Form */
.form-container-box {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.form-container-box:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-form .form-control {
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color, #ff4a17);
    box-shadow: 0 0 15px rgba(255,74,23,0.1);
}

/* Partner Logo Animation */
.single-partner {
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.single-partner:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Testimonial Card Enhancement */
.testimonial-area .testimonial-item {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-area .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .zr-theme-single-service-card {
        margin-bottom: 30px;
    }
    
    .about .content {
        margin-top: 30px;
    }
    
    .about .img-overlay-right {
        position: relative;
        margin-top: 20px;
    }
    
    .gallery-grid {
        gap: 15px;
    }
    
    .contact-form {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .zr-theme-reservation-area h1 {
        font-size: 32px;
    }
    
    .single-cta {
        text-align: center;
        flex-direction: column;
    }
    
    .single-cta i {
        margin-bottom: 15px;
    }
}

/* Loading Animation */
.loading .spinner {
    border: 4px solid rgba(0,0,0,0.1);
    border-left-color: var(--primary-color, #ff4a17);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Slide In Animation */
.slide-in {
    opacity: 0;
    animation: slideIn 1s ease forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}