/* Custom Styles for Tourism Website */

/* Enhanced Agency Cards */
.tour-box {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.tour-box_img {
    height: 250px;
    overflow: hidden;
}

.tour-box_img img {
    transition: transform 0.3s ease;
}

.tour-box:hover .tour-box_img img {
    transform: scale(1.1);
}

/* Badge Styling */
.badge.bg-success {
    background: linear-gradient(45deg, #28a745, #20c997) !important;
    border: none;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

/* Star Rating */
.star-rating .fas.fa-star {
    font-size: 16px;
    margin-right: 2px;
}

/* Enhanced Buttons */
.th-btn.style4 {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.th-btn.style4:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

/* Section Titles */
.sec-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-size: 2.5rem;
}

.sec-text {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #007bff;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #007bff;
    color: white;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #007bff;
    transform: scale(1.2);
}

/* Enhanced Content */
.tour-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 3px solid #007bff;
}

.box-title a {
    color: #007bff !important;
    transition: color 0.3s ease;
}

.box-title a:hover {
    color: #0056b3 !important;
}

/* Location Icon */
.fa-map-marker-alt {
    color: #dc3545;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sec-title {
        font-size: 2rem;
    }

    .tour-box_img {
        height: 200px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Hover Effects */
.tour-box .tour-content {
    position: relative;
    overflow: hidden;
}

.tour-box .tour-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.tour-box:hover .tour-content::before {
    left: 100%;
}

/* Enhanced Gallery */
.gallery-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

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

/* Counter Section Enhancement */
.counter-area {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.counter-area .sec-title {
    color: white;
    text-shadow: none;
}

/* Testimonial Enhancement */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Contact Form Enhancement */
.contact-form input,
.contact-form textarea {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Footer Enhancement */
.footer-area {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.footer-area a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-area a:hover {
    color: #3498db;
}
