/* General Styles */
:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --dark-color: #2d3436;
    --bg-light: #f8f9fa;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.spacing-10 {
    margin: 10px 0;
    width: 100%;
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    transition: background-color 0.3s ease;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

/* Services Section */
.service-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card i {
    color: var(--primary-color);
}

.services-cta-button {
    padding: 2rem;
    width: 100%;
}

/* Routes Section */
#map {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Booking Form */
.booking-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* About Section */
#about img {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* About Page Styles */
.hero-about {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/about-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.story-image {
    width: 100%;
    height: 300px;
    background: url('../images/story-image.jpg') no-repeat center center;
    background-size: contain;
}
.story-image:hover {
    background: url('../images/story-image-hover.jpg') no-repeat center center;
    background-size: contain;
}

.mission-card {
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.mission-card i {
    color: var(--primary-color);
}

.missions-cta-button {
    padding: 2rem;
    width: 100%;
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.values-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

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

/* Routes Page Styles */
.hero-routes {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/routes-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.route-list {
    height: 600px;
    max-height: 600px;
    overflow-y: scroll;
}

.route-list .list-group-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.route-list .list-group-item:hover {
    background-color: var(--light-color);
}

.route-list .list-group-item.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#map {
    border: 2px solid var(--light-color);
    border-radius: 8px;
}

.route-details {
    margin-top: 20px;
}

.route-details i {
    color: var(--primary-color);
}
.odyssey-card {
    background: var(--bg-light);
    padding: 1rem;
    margin: 0px 0px 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    margin: 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.testimonial-content {
    position: relative;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 20px 0;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-text .quote-left,
.testimonial-text .quote-right {
    font-size: 1.5rem;
    position: relative;
    top: -5px;
    margin: 0 8px;
}

.testimonial-text span {
    display: inline;
}

.testimonial-author h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.8;
    top: 50%;
    transform: translateY(-50%);
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
    margin: 0 5px;
}

.carousel-indicators button.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
        margin: 10px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Contact Section */
.social-links a {
    color: var(--dark-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Language Switcher */
/* .language-switcher {
    top: 20px;
    right: 20px;
    z-index: 1100;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 20px;
} */

.lang-switch {
    background: none;
    border: none;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-switch.active {
    background: var(--primary-color);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

/* Phone Input Styles */
.iti {
    width: 100%;
}

.form-control.is-invalid ~ .iti__flag-container .iti__selected-flag,
.was-validated .form-control:invalid ~ .iti__flag-container .iti__selected-flag {
    border-color: #dc3545;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
}
