/* ===================================
   MODERN HTML STYLE CSS
   =================================== */

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.top-bar {
    background: #1c2b39;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.social-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
    text-decoration: none;
}

.social-links a:hover {
    color: #337ab7;
}

.main-nav {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.logo h1 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
}

.logo a {
    color: #337ab7;
    text-decoration: none;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav > li {
    position: relative;
    margin-left: 30px;
}

.navbar-nav > li > a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    display: block;
}

.navbar-nav > li > a:hover {
    color: #337ab7;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 200px;
    display: none;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    color: #333;
    text-decoration: none;
    padding: 8px 20px;
    display: block;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: #337ab7;
}

.book-now-btn .btn-book-now {
    background: #337ab7;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
}

.book-now-btn .btn-book-now:hover {
    background: #286090;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Main Content */
.main-content {
    min-height: 500px;
}

/* Footer Styles */
.main-footer {
    background: #1c2b39;
    color: #fff;
    padding: 50px 0 0;
}

.footer-content {
    padding-bottom: 30px;
}

.footer-widget h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-widget p {
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
}

.footer-links a:hover {
    color: #337ab7;
}

.footer-copyright {
    background: #0f1a24;
    padding: 20px 0;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    color: #ccc;
}

.footer-copyright a {
    color: #337ab7;
    text-decoration: none;
}

.payment-methods {
    text-align: right;
}

.payment-methods span {
    margin-right: 10px;
    color: #ccc;
}

.payment-methods i {
    font-size: 24px;
    margin-left: 10px;
    color: #ccc;
}

/* Hero Banner Section */
.hero-banner {
    background: linear-gradient(135deg, rgba(51, 122, 183, 0.9), rgba(40, 96, 144, 0.9)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1200&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    position: relative;
}

.hero-content {
    padding-right: 30px;
}

.hero-subtitle {
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
    color: #e3f2fd;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

/* Booking Form */
.booking-form-container {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.booking-tabs {
    margin-bottom: 25px;
}

.booking-tabs .nav-tabs {
    border: none;
    display: flex;
    background: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
}

.booking-tabs .nav-tabs li {
    flex: 1;
}

.booking-tabs .nav-tabs li a {
    border: none;
    border-radius: 0;
    text-align: center;
    padding: 12px;
    color: #666;
    background: transparent;
    margin: 0;
}

.booking-tabs .nav-tabs li.active a {
    background: #337ab7;
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.input-group {
    display: flex;
    align-items: center;
}

.input-group-addon {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-right: none;
    padding: 10px 12px;
    border-radius: 4px 0 0 4px;
    color: #666;
}

.form-control {
    width: 100%;
    padding: 5px 18px; /* Updated padding */
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    flex: 1;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 4px 4px 0;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #337ab7;
    color: #fff;
}

.btn-primary:hover {
    background: #286090;
}

.btn-secondary {
    background: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background: #545b62;
}

.btn-success {
    background: #5cb85c;
    color: #fff;
}

.btn-success:hover {
    background: #449d44;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    background: #f8f9fa;
}

.work-step {
    text-align: center;
    padding: 30px 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #337ab7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 32px;
    color: #fff;
}

.work-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.work-step p {
    color: #666;
    line-height: 1.6;
}

/* Top Destinations Section */
.destination-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.destination-image {
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-content {
    padding: 20px;
}

.destination-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.destination-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #fff;
}

.feature-box {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #337ab7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 28px;
    color: #fff;
}

.feature-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
}

/* Hot Deals Section */
.hot-deals {
    background: #f8f9fa;
}

.deal-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.deal-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.deal-content {
    padding: 20px;
}

.deal-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.deal-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Popular Routes Section */
.route-section {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    height: 100%;
}

.route-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.route-info p {
    color: #666;
    margin-bottom: 20px;
}

.route-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.route-features li {
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.route-features li i {
    color: #5cb85c;
    margin-right: 10px;
    width: 16px;
}

/* Page Banner Section */
.page-banner {
    background: linear-gradient(135deg, rgba(51, 122, 183, 0.9), rgba(40, 96, 144, 0.9)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1200&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb-item {
    color: #e3f2fd;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #e3f2fd;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #e3f2fd;
    margin: 0 10px;
}

/* About Us Section */
.about-us-section {
    background: #fff;
    padding: 80px 0;
}

.about-info {
    padding-right: 30px;
}

.about-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-features li {
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.about-features li i {
    color: #5cb85c;
    margin-right: 12px;
    width: 16px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.facts-list {
    margin-top: 40px;
}

.fact-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.fact-count {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #337ab7;
    margin-bottom: 5px;
}

.fact-item i {
    font-size: 24px;
    color: #337ab7;
    margin-bottom: 10px;
}

.fact-item span {
    display: block;
    color: #666;
    font-size: 14px;
}

/* Serviceable Cities Section */
.serviceable-cities {
    background: #f8f9fa;
    padding: 80px 0;
}

.cities-grid {
    margin-top: 40px;
}

.city-category {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    margin-bottom: 30px;
}

.city-category h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #337ab7;
}

.city-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.city-category li {
    color: #666;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.city-category li:last-child {
    border-bottom: none;
}

/* Partners Section */
.partners-section {
    background: #fff;
    padding: 80px 0;
}

.partners-grid {
    margin-top: 40px;
}

.partner-logo {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

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

.testimonials-grid {
    margin-top: 40px;
}

.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    margin-bottom: 30px;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating {
    margin-bottom: 15px;
}

.rating i {
    color: #ffc107;
    font-size: 16px;
    margin: 0 2px;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.testimonial-content span {
    color: #999;
    font-size: 14px;
}

/* Footer Popular Routes */
.footer-routes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-routes-list li {
    color: #ccc;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-routes-list li i {
    color: #337ab7;
    width: 16px;
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    color: #ccc;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info li i {
    color: #337ab7;
    width: 16px;
}

.contact-info li a {
    color: #ccc;
    text-decoration: none;
}

.contact-info li a:hover {
    color: #337ab7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-toggle {
        display: block;
    }
    
    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 20px;
    }
    
    .navbar-nav.active {
        display: flex;
    }
    
    .navbar-nav > li {
        margin: 0;
        margin-bottom: 15px;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        margin-top: 10px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .booking-form-container {
        margin-top: 30px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .banner-content h1 {
        font-size: 32px;
    }
    
    .about-info {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .payment-methods {
        text-align: center;
        margin-top: 15px;
    }
    
    .top-bar .contact-info span {
        display: block;
        margin-bottom: 5px;
    }
    
    .top-bar .social-links {
        text-align: right;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .banner-content h1 {
        font-size: 24px;
    }
    
    .booking-form-container {
        padding: 20px;
    }
    
    .booking-tabs .nav-tabs li a {
        padding: 8px;
        font-size: 12px;
    }
    
    .work-step {
        padding: 20px 10px;
    }
    
    .feature-box {
        padding: 30px 15px;
    }
    
    .deal-content {
        padding: 15px;
    }
    
    .route-section {
        padding: 20px;
    }
    
    .city-category {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
} 