/* Header Fixes - Simple and Correct */

/* Ensure header is always visible */
.tj-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.tj-wrapper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Banner visibility is now handled by main CSS */

/* Ensure all sections are visible */
section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

.tj-how-it-works,
.tj-top-destinations,
.tj-why-choose-us,
.tj-hot-deals,
.tj-popular-routes {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    padding: 60px 0 !important;
}

/* Basic section styling */
.tj-heading-style {
    text-align: center;
    margin-bottom: 50px;
}

.tj-heading-style h3 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.tj-heading-style h4 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 15px;
}

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

/* Work steps styling */
.work-step {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
}

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

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

.step-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

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

/* Destination cards styling */
.destination-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    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 h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

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

.btn-explore {
    display: inline-block;
    padding: 8px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-explore:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
}

/* Feature boxes styling */
.feature-box {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

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

/* Deal cards styling */
.deal-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.deal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.deal-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

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

.btn-deal {
    display: inline-block;
    padding: 10px 25px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-deal:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
}

/* Route sections styling */
.route-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 25px;
    margin-bottom: 30px;
}

.route-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

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

.route-list li {
    margin-bottom: 8px;
}

.route-list li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.route-list li a:hover {
    color: #007bff;
}

/* Fix for mobile navigation */
@media (max-width: 767px) {
    .tj-nav-holder .navbar-default .navbar-nav > li > a {
        padding: 12px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .tj-nav-holder .navbar-nav li ul {
        position: static;
        float: none;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.1);
        box-shadow: none;
        border: none;
        margin: 0;
        padding: 0;
    }
    
    .tj-nav-holder .navbar-nav li ul li a {
        padding: 10px 25px;
        color: #cdd3d8;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .book_btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    .book_btn a {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

/* Fix for navbar toggle button */
.navbar-toggle {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
}

.navbar-toggle:hover,
.navbar-toggle:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-toggle.active .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Fix for responsive issues */
@media (max-width: 991px) {
    .tj-nav-holder .navbar {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .info_box {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .info_box i {
        float: none;
        margin: 0 auto 10px;
        display: block;
    }
    
    .info_box .info_text {
        float: none;
        text-align: center;
    }
    
    .phone_info {
        text-align: center;
    }
    
    .phone_icon:before {
        position: relative;
        margin: 0 auto;
        display: block;
    }
    
    .phone_info i {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto 10px;
        display: block;
    }
    
    .phone_info .phone_text {
        text-align: center;
    }
} 