/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 56px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Tourist Places Carousel */
#tourist-places {
    background-color: #f8f9fa;
    padding: 60px 0;
}

#touristCarousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-item {
    height: 600px;
    position: relative;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 20px;
    text-align: left;
}

.carousel-caption h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 1.2rem;
    color: #f8f9fa;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
}

.carousel-indicators button.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-success {
    background-color: #28a745;
    border: none;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* Contact Section */
#contact .card {
    background-color: white;
    border-radius: 10px;
}

#contact .form-control {
    border: 1px solid #ddd;
    padding: 12px;
}

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

/* Footer */
footer {
    background-color: #343a40;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .card-img-top {
        height: 200px;
    }

    .carousel-item {
        height: 400px;
    }

    .carousel-caption h3 {
        font-size: 1.8rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.5s ease-out;
}

/* Carousel Styles */
#sedanCarousel .carousel-item img,
#suvCarousel .carousel-item img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

/* Testimonials Section */
#testimonials {
    background-color: #f8f9fa;
}

.testimonial-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
    margin: 10px;
}

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

.testimonial-rating {
    font-size: 1.2rem;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-card .card-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.testimonial-author strong {
    color: #333;
    font-size: 1.1rem;
}

.testimonial-author p {
    font-size: 0.9rem;
}

/* Testimonials Carousel */
#testimonialsCarousel {
    padding: 20px 40px;
    position: relative;
}

#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: #007bff;
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

#testimonialsCarousel .carousel-control-prev {
    left: 0;
}

#testimonialsCarousel .carousel-control-next {
    right: 0;
}

#testimonialsCarousel .carousel-control-prev:hover,
#testimonialsCarousel .carousel-control-next:hover {
    background-color: #0056b3;
    transform: translateY(-50%) scale(1.1);
}

#testimonialsCarousel .carousel-control-prev-icon,
#testimonialsCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Feedback Form */
.feedback-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.rating-input {
    font-size: 1.5rem;
    cursor: pointer;
}

.rating-input i {
    color: #ddd;
    transition: color 0.2s ease;
}

.rating-input i:hover,
.rating-input i.active {
    color: #ffc107;
}

.rating-input i:hover ~ i {
    color: #ddd;
}

.feedback-card .form-control,
.feedback-card .form-select {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 8px;
}

.feedback-card .form-control:focus,
.feedback-card .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.feedback-card .btn-primary {
    padding: 12px;
    font-size: 1.1rem;
    border-radius: 8px;
}

/* Car Carousels */
#sedanCarousel,
#suvCarousel {
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

#sedanCarousel .carousel-item,
#suvCarousel .carousel-item {
    height: 400px;
    position: relative;
}

#sedanCarousel .carousel-item img,
#suvCarousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

#sedanCarousel .carousel-caption,
#suvCarousel .carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    text-align: left;
}

#sedanCarousel .carousel-caption h3,
#suvCarousel .carousel-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#sedanCarousel .carousel-caption p,
#suvCarousel .carousel-caption p {
    font-size: 1rem;
    color: #f8f9fa;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#sedanCarousel .carousel-control-prev,
#sedanCarousel .carousel-control-next,
#suvCarousel .carousel-control-prev,
#suvCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

#sedanCarousel .carousel-control-prev,
#suvCarousel .carousel-control-prev {
    left: 10px;
}

#sedanCarousel .carousel-control-next,
#suvCarousel .carousel-control-next {
    right: 10px;
}

#sedanCarousel .carousel-control-prev:hover,
#sedanCarousel .carousel-control-next:hover,
#suvCarousel .carousel-control-prev:hover,
#suvCarousel .carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

/* Card body styling */
.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.card-text {
    color: #666;
    margin-bottom: 1rem;
}

.list-unstyled li {
    margin-bottom: 0.5rem;
}

.list-unstyled i {
    margin-right: 0.5rem;
}

/* Contact Section Styling */
#contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#contact .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#contact .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

#contact .contact-info i {
    color: #007bff;
    margin-bottom: 10px;
}

#contact .contact-info h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

#contact .contact-info p,
#contact .contact-info a {
    color: #666;
    font-size: 0.95rem;
}

#contact .contact-info a:hover {
    color: #0056b3;
    text-decoration: none;
}

#contact .form-control,
#contact .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

#contact .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

#contact .btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#contact .btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Quick Contact Buttons */
.quick-contact-buttons .btn {
    margin: 5px;
    min-width: 150px;
}

.quick-contact-buttons .btn i {
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #sedanCarousel,
    #suvCarousel {
        height: 300px;
    }

    #sedanCarousel .carousel-item,
    #suvCarousel .carousel-item {
        height: 300px;
    }

    #sedanCarousel .carousel-caption h3,
    #suvCarousel .carousel-caption h3 {
        font-size: 1.5rem;
    }

    #sedanCarousel .carousel-caption p,
    #suvCarousel .carousel-caption p {
        font-size: 0.9rem;
    }

    #contact .btn-lg {
        padding: 12px 20px;
        font-size: 1rem;
        min-width: 120px;
    }

    .quick-contact-buttons .btn {
        min-width: 120px;
        margin: 3px;
    }
} 