/* ===================================
   PREMIUM STYLE CSS - TRAVELZONE
   =================================== */

/* ===================================
   NEW SECTIONS STYLING
   =================================== */

/* How It Works Section */
.tj-how-it-works {
    padding: 80px 0;
}

.work-step {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.work-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #337ab7, #286090);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.step-content h4 {
    color: #337ab7;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

/* Top Destinations Section */
.tj-top-destinations {
    padding: 80px 0;
    background: #fff;
}

.destination-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

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

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-content {
    padding: 25px;
}

.destination-content h4 {
    color: #337ab7;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.btn-explore {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #337ab7, #286090);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: linear-gradient(135deg, #286090, #1e4b7a);
    color: #fff;
    text-decoration: none;
    transform: translateX(5px);
}

/* Why Choose Us Section */
.tj-why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feature-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #337ab7, #286090);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

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

.feature-content h4 {
    color: #337ab7;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

/* Hot Deals Section */
.tj-hot-deals {
    padding: 80px 0;
    background: #fff;
}

.deal-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.deal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.deal-content {
    padding: 30px;
}

.deal-content h4 {
    color: #337ab7;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.btn-deal {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #337ab7, #286090);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-deal:hover {
    background: linear-gradient(135deg, #286090, #1e4b7a);
    color: #fff;
    text-decoration: none;
    transform: translateX(5px);
}

/* Popular Routes Section */
.tj-popular-routes {
    padding: 80px 0;
    background: #f8f9fa;
}

.route-section {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.route-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.route-section h4 {
    color: #337ab7;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #337ab7;
}

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

.route-list li {
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.route-list li:last-child {
    border-bottom: none;
}

.route-list li a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.route-list li a:hover {
    color: #337ab7;
    padding-left: 10px;
}

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

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

.city-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.city-item:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.city-item h4 {
    color: #337ab7;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

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

.city-item ul li {
    padding: 5px 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
}

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

/* About Features */
.about-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-features li {
    padding: 8px 0;
    color: #666;
}

.about-features li i {
    color: #337ab7;
    margin-right: 10px;
    font-weight: bold;
}

/* ===================================
   FORM STYLING IMPROVEMENTS
   =================================== */

.trip-type-tabs .nav-tabs {
    border: none;
    margin-bottom: 20px;
}

.trip-type-tabs .nav-tabs li {
    margin-right: 5px;
}

.trip-type-tabs .nav-tabs li a {
    border: none;
    background: #f8f9fa;
    color: #666;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trip-type-tabs .nav-tabs li.active a,
.trip-type-tabs .nav-tabs li a:hover {
    background: linear-gradient(135deg, #337ab7, #286090);
    color: #fff;
    border: none;
}

.field-outer {
    position: relative;
    margin-bottom: 20px;
}

.field-outer span {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #337ab7;
    z-index: 2;
}

.field-outer input,
.field-outer select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.field-outer input:focus,
.field-outer select:focus {
    border-color: #337ab7;
    outline: none;
    box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.1);
}

.search-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #337ab7, #286090);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #286090, #1e4b7a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(51, 122, 183, 0.3);
}

/* ===================================
   BANNER STYLING IMPROVEMENTS
   =================================== */

.banner-caption h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-caption strong {
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
    opacity: 0.9;
}

.banner-caption p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.banner-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-style-1,
.btn-style-2 {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-style-1:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    text-decoration: none;
}

.btn-style-2 {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-style-2:hover {
    background: #fff;
    color: #337ab7;
    text-decoration: none;
}

/* ===================================
   HEADING STYLES
   =================================== */

.tj-heading-style {
    text-align: center;
    margin-bottom: 50px;
}

.tj-heading-style h3 {
    font-size: 36px;
    font-weight: 700;
    color: #337ab7;
    margin-bottom: 15px;
    position: relative;
}

.tj-heading-style h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #337ab7, #286090);
    border-radius: 2px;
}

.tj-heading-style h4 {
    font-size: 24px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.tj-heading-style p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   EXISTING ELEMENTS FIXES
   =================================== */

/* Trip Outer Styling */
.trip-outer {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

/* Tab Content Styling */
.tab-content {
    background: transparent;
}

.tab-pane {
    background: transparent;
}

/* Form Container Styling */
.trip-type-frm {
    background: transparent;
}

/* Button Improvements */
.btn-book {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #337ab7, #286090);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-book:hover {
    background: linear-gradient(135deg, #286090, #1e4b7a);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(51, 122, 183, 0.3);
}

/* Service Box Improvements */
.cab-service-box {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.cab-service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-thumb {
    position: relative;
    overflow: hidden;
    height: 150px;
}

.service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cab-service-box:hover .service-thumb img {
    transform: scale(1.1);
}

.service-desc {
    padding: 25px;
}

.service-desc h4 {
    color: #337ab7;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-desc p {
    color: #666;
    line-height: 1.6;
}

/* Special Service Box Improvements */
.special-service-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.special-service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-info h4 {
    color: #337ab7;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    color: #666;
}

.service-features li i {
    color: #337ab7;
    margin-right: 10px;
    font-weight: bold;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .banner-caption h2 {
        font-size: 32px;
    }
    
    .banner-btns {
        flex-direction: column;
    }
    
    .tj-heading-style h3 {
        font-size: 28px;
    }
    
    .work-step,
    .feature-box,
    .destination-card,
    .deal-card,
    .route-section,
    .cab-service-box,
    .special-service-box {
        margin-bottom: 20px;
    }
    
    .step-icon,
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i,
    .feature-icon i {
        font-size: 24px;
    }
    
    .trip-outer {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .tj-banner-form {
        padding: 60px 0;
    }
    
    .banner-caption h2 {
        font-size: 24px;
    }
    
    .tj-heading-style h3 {
        font-size: 24px;
    }
    
    .destination-content,
    .deal-content,
    .service-desc {
        padding: 20px;
    }
    
    .special-service-box {
        padding: 30px 20px;
    }
}

/* ===================================
   ANIMATION ENHANCEMENTS REMOVED
   =================================== */

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-gradient {
    background: linear-gradient(135deg, #337ab7, #286090);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.border-radius-custom {
    border-radius: 15px;
}

.transition-custom {
    transition: all 0.3s ease;
} 