/* Modern Header Styles */
.header-area {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header-area {
    background: white !important;
}

.modern-nav > li > a {
    color: #31408a !important;
}

.modern-nav > li > a.active {
    color: #f97316 !important;
    background: rgba(249, 115, 22, 0.1) !important;
}

.modern-nav > li > a:hover {
    color: #f97316 !important;
    background: rgba(249, 115, 22, 0.1) !important;
}

.houseboat-search-form .form-control {
    font-size: 15px;
}

.houseboat-search-form label {
    font-size: 14px;
}

/* Modern Header Styles */
.modern-header {
    position: relative;
    z-index: 999;
}

.header-wrapper {
    padding: 15px 0;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 24px;
    font-weight: 700;
    color: #31408a;
    margin: 0;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 14px;
    color: #f97316;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.modern-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.modern-nav > li {
    margin: 0 8px;
}

.modern-nav > li > a {
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.modern-nav > li > a:hover,
.modern-nav > li > a.active {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316 !important;
}

.header-cta {
    text-align: right;
}

.btn-enquire {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #f97316 0%, #ff8c42 100%);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-enquire:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    color: white;
}

.mobile-menu-toggle {
    display: flex;
    justify-content: flex-end;
}

.menu-btn {
    background: transparent;
    border: none;
    padding: 5px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-btn span {
    width: 25px;
    height: 3px;
    background: #31408a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Modern Hero Section */
.modern-hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content-wrapper {
    padding: 60px 0;
}

.hero-main-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    margin: 0;
}

/* Modern Booking Form */
.modern-booking-form {
    background: rgba(255, 255, 255, 0.76);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    margin-top: 30px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #31408a;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.form-row {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.form-col {
    flex: 1;
}

.form-col-btn {
    flex: 0 0 auto;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #31408a;
    margin-bottom: 8px;
}

.select-wrapper {
    position: relative;
}

.modern-select {
    width: 100%;
    height: 55px;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background: white;
    appearance: none;
    transition: all 0.3s ease;
}

.modern-select:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

.btn-search-modern {
    width: 100%;
    height: 55px;
    background: linear-gradient(135deg, #f97316 0%, #ff8c42 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, #ff8c42 0%, #f97316 100%);
}

.form-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.quick-link-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.quick-link {
    font-size: 14px;
    color: #31408a;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: #f0f7ff;
    color: #f97316;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .hero-main-title {
        font-size: 40px;
    }
    .modern-nav > li {
        margin: 0 5px;
    }
    .modern-nav > li > a {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .logo-text {
        display: none;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .form-col-btn {
        width: 100%;
    }
    .hero-main-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .modern-booking-form {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .hero-main-title {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .form-title {
        font-size: 22px;
    }
    .modern-booking-form {
        padding: 20px;
    }
    .quick-links {
        flex-direction: column;
        gap: 10px;
    }
}
