/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

/* Utility Classes */
.desktop-only {
    display: none;
}

.mobile-only {
    display: none;
}

@media (min-width: 769px) {
    .desktop-only {
        display: block;
    }
    .desktop-only.nav-links {
        display: flex;
    }
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    .mobile-only.mobile-menu {
        display: flex;
    }
}

/* Top Call Bar */
.top-call-bar {
    background-color: #ff6b00;
    color: white;
    padding: 8px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}

.top-call-bar i {
    margin-right: 8px;
    transform: rotate(15deg);
}

/* Header Styles */
.navbar {
    background-color: #fff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.logo img {
    height: 35px;
    width: auto;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 15px;
    font-weight: 500;
}

.nav-links a.active {
    color: #ff6b00;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.new-tag {
    background-color: #ff6b00;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    margin-left: 5px;
}

.contact-info {
    text-align: right;
}

.contact-info .phone-number {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-info span {
    font-size: 12px;
    color: #666;
}

.phone-link {
    color: #ff6b00;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Mobile Header */
.mobile-menu {
    display: none;
    align-items: center;
    gap: 20px;
}

.chat-icon {
    color: #ff6b00;
    font-size: 24px;
}

.user-icon, .menu-toggle {
    color: #666;
    font-size: 24px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)), url('img/generic-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 50px 0;
    min-height: 600px;
    position: relative;
}

.hero-section h1 {
    color: white;
    font-size: 32px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Search Box */
.search-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 24px;
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
}

.trip-type {
    margin-bottom: 20px;
}

.radio-container {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    cursor: pointer;
}

.radio-container input[type="radio"] {
    margin-right: 8px;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    position: relative;
}

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

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.input-with-icon i {
    color: #666;
    margin: 0 12px;
}

.input-with-icon input {
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 14px;
    outline: none;
}

.swap-icon {
    padding: 8px;
    cursor: pointer;
    color: #666;
    margin-right: 8px;
}

.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.search-btn {
    grid-column: 1 / -1;
    background: #ff6b00;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.search-btn:hover {
    background: #ff5500;
}

/* Traveler Dropdown Styles */
.traveler-input {
    cursor: pointer;
}

.traveler-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 16px;
    margin-top: 5px;
    z-index: 1000;
    display: none;
}

.traveler-input.active .traveler-dropdown {
    display: block;
}

.traveler-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.traveler-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.traveler-type:last-child {
    margin-bottom: 0;
}

.counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
}

.counter-btn:hover {
    background: #f5f5f5;
}

.counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.counter input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 14px;
    padding: 0;
}

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

.cabin-section label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.cabin-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.minor-section {
    text-align: center;
}

.unaccompanied-minor {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
}

.unaccompanied-minor:hover {
    text-decoration: underline;
}

/* Preserve existing responsive styles */
@media (max-width: 768px) {
    .traveler-dropdown {
        width: calc(100vw - 40px);
        left: 20px;
        right: 20px;
    }
} 

/* Responsive styles */
@media (max-width: 768px) {
    .search-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .search-box {
        margin: 10px;
        padding: 15px;
    }

    .date-inputs {
        grid-template-columns: 1fr;
    }

    .traveler-dropdown {
        width: calc(100vw - 40px);
        left: 20px;
        right: 20px;
    }
} 

/* Ratings Section */
.ratings-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-box img {
    height: 30px;
}

.rating-box span {
    font-weight: bold;
}

.rating-box p {
    font-size: 12px;
    color: #666;
}

/* Features Section */
.features {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    text-align: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-card i {
    font-size: 40px;
    color: #ff6b00;
    margin-bottom: 20px;
}

/* Popular Destinations */
.popular-destinations {
    padding: 50px 0;
}

.popular-destinations h2 {
    text-align: center;
    margin-bottom: 30px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.destination-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-card h3,
.destination-card p {
    padding: 15px;
    margin: 0;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: white;
    text-decoration: none;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #ff6b00;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Mobile Call Button */
.mobile-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b00, #ff8533);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: float 2s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.mobile-call-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.mobile-call-button a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.mobile-call-button .phone-icon {
    background-color: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.mobile-call-button .phone-icon i {
    color: white;
    font-size: 20px;
    transform: rotate(-15deg);
}

.mobile-call-button .call-text {
    font-size: 13px;
    color: white;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.mobile-call-button .phone-number {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-top: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Add these styles before the media queries */

/* City Suggestions Dropdown */
.suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.suggestions div {
    padding: 10px 15px;
    cursor: pointer;
}

.suggestions div:hover {
    background-color: #f5f5f5;
}

/* Travelers Dropdown */
.travelers-dropdown {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
    position: absolute;
    width: 320px;
    margin-top: 5px;
}

.traveler-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.traveler-type:last-child {
    border-bottom: none;
}

.type-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.type-info span {
    color: #333;
}

.type-info span:first-child {
    font-size: 16px;
    font-weight: 500;
}

.age-limit {
    font-size: 14px;
    color: #666 !important;
}

.counter {
    display: flex;
    align-items: center;
    gap: 20px;
}

.round-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0066ff;
    padding: 0;
    line-height: 1;
}

.round-btn.plus {
    color: #ff6b00;
}

.round-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: #999;
}

.counter span {
    min-width: 24px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.cabin-selection {
    padding-top: 20px;
    margin-top: 5px;
    border-top: 1px solid #eee;
}

.cabin-selection span {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.cabin-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

.cabin-select:focus {
    outline: none;
    border-color: #0066ff;
}

/* Add overlay when dropdown is open */
.travelers-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

.travelers-overlay.active {
    display: block;
}

/* Style for the select input when dropdown is open */
.input-with-icon select.active {
    border-color: #ff6b00;
    box-shadow: 0 0 0 2px rgba(255,107,0,0.1);
}

/* Date Picker Customization */
.flatpickr-calendar {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    border: 1px solid #ddd !important;
}

.flatpickr-day.selected {
    background: #ff6b00 !important;
    border-color: #ff6b00 !important;
}

.flatpickr-day.today {
    border-color: #ff6b00 !important;
}

.flatpickr-day:hover {
    background: #fff3e6 !important;
}

/* Input Focus States */
.input-with-icon input:focus,
.input-with-icon select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255,107,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
    }

    .hero-section {
        padding: 20px 0 80px;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 24px;
        padding: 0 15px;
    }

    .search-box {
        padding: 20px 15px;
        margin: 0 15px;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

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

    .feature-grid,
    .destination-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 20px;
    }

    .trip-type {
        flex-direction: column;
    }
} 

/* Add this at the end of the file to override desktop styles for mobile */

@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
    }

    .nav-links, 
    .contact-info {
        display: none !important;
    }

    .mobile-menu {
        display: flex !important;
        align-items: center;
        gap: 20px;
    }

    .hero-section {
        padding: 20px 0 80px;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 24px;
        padding: 0 15px;
        text-align: center;
    }

    .search-box {
        padding: 20px 15px;
        margin: 0 15px;
        border-radius: 8px;
    }

    .search-form {
        grid-template-columns: 1fr !important;
    }

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

    .input-with-icon {
        height: 45px;
    }

    .input-with-icon input,
    .input-with-icon select {
        height: 100%;
        font-size: 16px;
    }

    /* Show mobile date input, hide desktop date inputs */
    .date-inputs.desktop-only {
        display: none !important;
    }

    .input-with-icon.mobile-only {
        display: flex !important;
    }

    /* Show mobile specific elements */
    .clear-icon.mobile-only,
    .swap-icon.mobile-only {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .swap-icon {
        width: 30px;
        height: 30px;
    }

    /* Mobile call button */
    .mobile-call-button {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 15px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .mobile-call-button a {
        display: flex;
        width: 100%;
        align-items: center;
        gap: 15px;
        text-decoration: none;
    }

    .mobile-call-button .phone-icon {
        background: #ff6b00;
        width: 45px;
        height: 45px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-call-button .phone-icon i {
        color: white;
        font-size: 24px;
    }

    .mobile-call-button .call-text {
        font-size: 14px;
        color: #333;
    }

    .mobile-call-button .phone-number {
        font-size: 24px;
        font-weight: bold;
        color: #333;
        margin-top: 2px;
    }

    /* Hide desktop sections on mobile */
    /* .features,
    .popular-destinations,
    footer {
        display: none;
    } */
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 20px;
    }

    .trip-type {
        flex-direction: column;
    }

    .search-box {
        padding: 15px;
    }

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

/* Flexible Booking Banner */
.flexible-booking-banner {
    background-color: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: inline-block;
    margin: 20px auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 14px;
    color: #333;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.flexible-booking-banner .highlight {
    color: #ff6b00;
    font-weight: 600;
    margin-right: 4px;
}

/* Features Section */
.features-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    padding: 40px 0;
    margin-top: -100px;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-box {
    text-align: center;
    color: white;
}

.feature-box h3 {
    font-size: 18px;
    margin: 15px 0 10px;
    font-weight: 500;
}

.feature-box p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.feature-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.feature-icon.price-match,
.feature-icon.quick-easy {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon.price-match i,
.feature-icon.quick-easy i {
    color: #333;
    font-size: 20px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 20px 0 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    .flexible-booking-banner {
        margin: 15px 0px;
        width: calc(100% - 85px);
        text-align: center;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .hero-section {
        padding: 20px 0 30px;
    }
} 

/* Exclusive Services Section */
.exclusive-services {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.exclusive-services h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 15px;
    margin: 0;
    color: #333;
    font-size: 1.5rem;
    text-align: center;
}

.service-card p {
    padding: 0 15px 15px;
    margin: 0;
    color: #666;
    text-align: center;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }

    .exclusive-services h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        padding: 10px;
    }

    .service-card p {
        font-size: 0.9rem;
        padding: 0 10px 10px;
    }

    .service-card img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 10px;
        padding: 0 10px;
    }

    .service-card img {
        height: 120px;
    }
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #1b2838;
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 0;
    font-size: 13px;
    line-height: 1.6;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 10px;
}

.disclaimer-content a {
    color: #ff6b00;
    text-decoration: none;
}

.disclaimer-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .disclaimer-section {
        padding: 15px 15px 85px 15px; /* Added 85px bottom padding to account for mobile CTA */
        font-size: 12px;
    }
} 

/* Tips Section */
.tips-section {
    padding: 50px 0;
    background-color: #fff;
}

.tips-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.tips-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tips-content h3 {
    color: #333;
    font-size: 20px;
    margin: 25px 0 15px;
}

.tips-content ul {
    list-style: none;
    padding: 0;
}

.tips-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
}

.tips-content ul li:before {
    content: "•";
    color: #ff6b00;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

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

.tips-content strong {
    color: #333;
}

@media (max-width: 768px) {
    .tips-section {
        padding: 30px 0;
    }
    
    .tips-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .tips-content h3 {
        font-size: 18px;
    }
} 

.esa-option {
    margin-top: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 14px;
    color: #333;
}

/* Responsive styles */
@media (max-width: 768px) {
    .esa-option {
        margin-top: 8px;
    }
    
    .checkbox-label {
        font-size: 13px;
    }
} 

/* Traveler Dropdown Styles */
.traveler-input {
    cursor: pointer;
    position: relative;
}

.traveler-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px;
    margin-top: 5px;
    z-index: 1000;
}

.traveler-input.active .traveler-dropdown {
    display: block;
}

.traveler-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.traveler-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.traveler-type:last-child {
    margin-bottom: 0;
}

.counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
}

.counter-btn:hover {
    background: #f5f5f5;
}

.counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.counter input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 14px;
    padding: 0;
}

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

.cabin-section label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.cabin-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.minor-section {
    text-align: center;
}

.unaccompanied-minor {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
}

.unaccompanied-minor:hover {
    text-decoration: underline;
}

/* Preserve existing responsive styles */
@media (max-width: 768px) {
    .traveler-dropdown {
        width: calc(100vw - 30px);
        left: 15px;
        right: 15px;
    }
} 

/* Responsive styles */
@media (max-width: 768px) {
    .search-box {
        padding: 15px;
        margin: 0 10px;
        width: auto;
    }

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

    .traveler-dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 350px;
        max-height: 90vh;
        overflow-y: auto;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .search-box {
        padding: 10px;
        margin: 0 5px;
    }

    .input-with-icon input {
        font-size: 14px;
    }
} 