/* Travel Desk CSS */

/* Hero Section */
.travel-hero {
    background-color: #ffcd29;
    padding: 60px 0;
    position: relative;
    z-index: -99;
}

.travel-hero_title {
    margin-bottom: 20px;
    color: #1B1F3B;
}

.travel-hero_text {
    margin-bottom: 30px;
    max-width: 600px;
}

.travel-hero_image {
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.travel-hero_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;

}

/* Category Boxes */
.travel-category-box {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 30px rgba(44,60,74,.08);
    display: block;
    color: #2c3c4a;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.travel-category-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(44,60,74,.15);
    color: #1B1F3B;
}

.travel-category-icon {
    font-size: 36px;
    color: #1B1F3B;
    margin-bottom: 15px;
}

.travel-category-box h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.travel-category-box p {
    margin-bottom: 0;
    font-size: 16px;
}

/* Travel Section */
.travel-section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 15px;
}

.section-subtitle {
    margin-bottom: 30px;
    font-size: 18px;
}

/* Search Box */
.travel-search-box {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 30px rgba(44,60,74,.08);
}

.travel-search-box h3 {
    margin-bottom: 20px;
    color: #1B1F3B;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-family: Mulish, sans-serif;
}

.form-control {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #808385;
    padding: 0 15px;
    font-size: 16px;
    width: 100%;
}

.form-control:focus {
    border-color: #1B1F3B;
    outline: none;
}

textarea.form-control {
    height: auto;
    padding: 10px 15px;
}

/* Features */
.travel-features {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 30px rgba(44,60,74,.08);
    height: 100%;
}

.travel-features.alt {
    border-left: 3px solid #1B1F3B;
}

.travel-features h3 {
    margin-bottom: 25px;
    color: #1B1F3B;
}

.travel-feature-item {
    display: flex;
    margin-bottom: 20px;
}

.travel-feature-icon {
    font-size: 24px;
    color: #1B1F3B;
    margin-right: 15px;
}

.travel-feature-content h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.travel-feature-content p {
    margin-bottom: 0;
    font-size: 16px;
}

/* Feature List */
.travel-feature-list {
    margin-top: 20px;
}

.travel-feature-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    
}

.travel-feature-list-item i {
    color: #ffcd29;
    margin-right: 10px;
    font-size: 18px;
}

.travel-feature-list li {
    margin-bottom: 18px; /* Increased from 10px to 18px */
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    padding-left: 28px;
  }
  
  .travel-feature-list li i {
    color: #c78b38;
    position: absolute;
    left: 0;
    top: 4px;
  }

/* Content Box */
.travel-content-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 30px rgba(44,60,74,.08);
    height: 100%;
}

.travel-content-box h3 {
    margin-bottom: 20px;
    color: #1B1F3B;
}

.travel-content-box p {
    margin-bottom: 20px;
    color: #1B1F3B;
}
.travel-feature-list-item span
{
    color: #1B1F3B;
    font-weight: 600;
    
}

/* Image Grid */
.travel-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    height: 100%;
}

.travel-image-item {
    overflow: hidden;
    border-radius: 8px;
    height: 200px;
}

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

.travel-image-item:hover img {
    transform: scale(1.1);
}

/* Property Types */
.travel-property-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.travel-property-type {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.travel-property-icon {
    font-size: 32px;
    color: #1B1F3B;
    margin-bottom: 15px;
}

.travel-property-type h4 {
    margin-bottom: 10px;
}

.travel-property-type p {
    margin-bottom: 0;
    font-size: 16px;
}

/* Flight Type Selector */
.flight-type-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.flight-type-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.flight-type-option input {
    margin-right: 5px;
}

/* Promo Box */
.travel-promo {
    background: #ffcd29;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.travel-promo-content h4 {
    margin-bottom: 10px;
    color: #1B1F3B;
}

.travel-promo-content p {
    margin-bottom: 15px;
}

/* Car Categories */
.travel-car-category {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    height: 100%;
}

.travel-car-icon {
    font-size: 40px;
    color: #fff;
    margin-bottom: 15px;
}

.travel-car-category h4 {
    margin-bottom: 10px;
    color: #fff;
}

.travel-car-category p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Box */
.travel-contact-box {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 30px rgba(44,60,74,.08);
}

.travel-contact-info h3 {
    margin-bottom: 25px;
    color: #1B1F3B;
}

.travel-contact-item {
    display: flex;
    margin-bottom: 20px;
}

.travel-contact-item i {
    font-size: 24px;
    color: #1B1F3B;
    margin-right: 15px;
}

.travel-contact-item p {
    margin-bottom: 5px;
    font-weight: 600;
}

.travel-contact-item a {
    color: #2c3c4a;
}

.travel-contact-item a:hover {
    color: #1B1F3B;
}

.travel-contact-form h3 {
    margin-bottom: 20px;
    color: #1B1F3B;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .travel-property-types {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .travel-search-box,
    .travel-features,
    .travel-content-box {
        padding: 40px;
    }
    
    .travel-image-item {
        height: 220px;
    }
}

@media (min-width: 992px) {
    .travel-hero {
        padding: 80px 0;
    }
    
    .travel-hero_image {
        height: 500px;
    }
    
    .travel-image-item {
        height: 250px;
    }
}

/* Visible/hidden classes */
.visible {
    display: block;
}

.hidden {
    display: none;
}
