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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo-img {
    height: 80px;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: #2c3e50;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #3498db;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    color: white;
    overflow: hidden;
    padding-bottom: 2rem;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 1200px;
    z-index: 2;
    opacity: 0;
    transition: all 1s ease-in-out;
}

.slide.active .slide-content {
    opacity: 1;
}

.slide-content h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
}

.slide-content p {
    font-size: 1.4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(5px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 65%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
    border-color: white;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    margin-top: 15vh;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .slide-content h2 {
        font-size: 2.8rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 60px;
    }

    .slide-content {
        top: 8%;
    }

    .slide-content h2 {
        font-size: 2.4rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .search-bar-container {
        margin-top: 28vh;
        padding: 0 1.5rem 1.5rem 1.5rem;
        width: 95%;
    }

    .tab {
        min-width: 90px;
        padding: 0.7rem 0.5rem;
    }

    .form-group {
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 50px;
    }

    .slide-content {
        top: 7%;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .search-bar-container {
        margin-top: 22vh;
        padding: 0 1rem 1rem 1rem;
    }

    .tab {
        min-width: 70px;
        padding: 0.6rem 0.4rem;
    }

    .form-group {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .travel-tabs {
        padding: 0.8rem;
        gap: 0.3rem;
    }

    .trip-type-selector {
        padding: 0.6rem;
        gap: 0.5rem;
    }

    .trip-type {
        padding: 0.5rem 1rem;
        min-width: 90px;
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* Search Bar Container */
.search-bar-container {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 0 2rem 2rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1200px;
    margin-top: 35vh;
    z-index: 4;
    backdrop-filter: blur(10px);
}

/* Tab Content Styles */
.tab-content {
    background: white;
    border-radius: 0 0 10px 10px;
    padding: 1.5rem;
}

.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
}

/* Travel Tabs */
.travel-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 10px 10px 0 0;
    border-bottom: 2px solid #e1e1e1;
}

.tab {
    flex: 1;
    min-width: 110px;
    padding: 0.8rem 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: transparent;
}

.tab i {
    font-size: 1.2rem;
}

.tab span {
    font-size: 1rem;
    white-space: nowrap;
}

.tab:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.tab.active {
    background: #3498db;
    color: white;
}

/* Form Styles */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    min-width: 180px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* Search Button */
.search-button {
    width: auto;
    min-width: 200px;
    margin: 0 auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tab-pane {
        padding: 1rem;
    }

    .form-group {
        min-width: 100%;
    }

    .search-button {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .trip-type {
        min-width: 100px;
        padding: 0.4rem 0.8rem;
    }

    .tab {
        min-width: 100px;
        padding: 0.8rem 0.5rem;
    }

    .tab i {
        font-size: 1rem;
    }

    .tab span {
        font-size: 0.9rem;
    }
}

/* Package Form Specific Styles */
.package-search-form .form-row {
    justify-content: space-between;
}

/* Hotel Form Specific Styles */
.hotel-search-form .traveller-group {
    flex: 2;
}

.traveller-input {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.traveller-selector {
    flex: 1;
    cursor: pointer !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    padding: 0.8rem !important;
    border-radius: 5px;
    font-size: 1rem;
    color: #333 !important;
    transition: all 0.3s ease;
}

.traveller-selector:hover {
    border-color: #3498db !important;
    background: #f8f9fa !important;
}

.traveller-selector:focus {
    outline: none;
    border-color: #3498db !important;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.modify-btn {
    padding: 0.8rem 1.5rem;
    background: #2ecc71;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modify-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

/* Visa Form Specific Styles */
.visa-search-form .form-row {
    align-items: flex-end;
}

/* Transfer Form Specific Styles */
.transfer-search-form .form-row {
    align-items: flex-start;
}

/* Activities Form Specific Styles */
.activities-search-form .form-row {
    align-items: flex-start;
}

/* Destinations Section */
.destinations {
    padding: 6rem 5% 4rem 5%;
    background-color: #fff;
}

.destinations h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
    position: relative;
}

.destinations h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #3498db, #2ecc71);
    border-radius: 2px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 25px rgba(52, 152, 219, 0.3);
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.destination-content {
    padding: 1.5rem;
}

.destination-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.destination-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.destination-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    color: #666;
}

.destination-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.destination-info i {
    color: #f1c40f;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    color: #3498db;
    text-decoration: none;
    border: 1px solid #3498db;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.learn-more:hover {
    background: #3498db;
    color: white;
    padding-right: 1.5rem;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .destinations {
        padding: 4rem 4% 3rem 4%;
    }

    .destinations h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .destination-grid {
        gap: 2rem;
    }

    .destination-card img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .destinations {
        padding: 3rem 3% 2rem 3%;
    }

    .destinations h2 {
        font-size: 1.8rem;
    }

    .destination-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .destination-card {
        max-width: 100%;
    }
}

/* Travel Tips Section */
.travel-tips {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.travel-tips h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tip-card {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.tip-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
    background: rgba(52, 152, 219, 0.1);
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tip-card:hover i {
    transform: scale(1.1);
    background: rgba(52, 152, 219, 0.2);
}

.tip-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 4rem 5%;
    background-color: #fff;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.submit-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 4rem 5% 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b2b2b2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-section.about-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-logo-img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.footer-contact-info p {
    margin-bottom: 0.8rem;
}

.footer-contact-info i {
    color: #3498db;
    margin-right: 0.5rem;
}

.articles-section ul, .useful-links-section ul {
    list-style: none;
    padding: 0;
}

.articles-section li, .useful-links-section li {
    margin-bottom: 0.8rem;
}

.articles-section a, .useful-links-section a {
    color: #b2b2b2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.articles-section a:hover, .useful-links-section a:hover {
    color: #3498db;
}

.social-links a {
    color: white;
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
}

.social-links a:hover {
    color: #3498db;
    background: rgba(255, 255, 255, 0.2);
}

.follow-us-newsletter-section .social-links {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input[type="email"] {
    padding: 0.8rem;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 0.9rem;
    flex-grow: 1;
    min-width: 100px;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    font-weight: 600;
}

.newsletter-form button:hover {
    background: #c0392b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .search-bar-container {
        width: 95%;
    }

    .travel-tabs .tab {
        font-size: 0.8rem;
        padding: 0.8rem 0.3rem;
    }

    .travel-tabs .tab i {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .tab-content {
        padding: 1rem;
    }

    .activity-search-form {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .activity-search-form input[type="text"],
    .activity-search-form input[type="number"],
    .activity-search-form .search-button {
        padding: 0.6rem;
        font-size: 0.8rem;
    }

    .hero-nav-arrow {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .left-arrow {
        left: 10px;
    }

    .right-arrow {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section.about-section, 
    .footer-section.articles-section, 
    .footer-section.useful-links-section,
    .footer-section.follow-us-newsletter-section {
        text-align: center;
    }

    .footer-logo-img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-contact-info p {
        justify-content: center;
    }

    .articles-section ul, .useful-links-section ul {
        padding: 0;
    }

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

    .newsletter-form input[type="email"],
    .newsletter-form button {
        border-radius: 5px;
        margin-top: 0.5rem;
    }

    .search-bar-container {
        transform: translate(-50%, 30%);
    }

    .travel-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .travel-tabs .tab {
        flex-basis: 30%;
        padding: 0.5rem;
    }

    .activity-search-form {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .activity-search-form input[type="text"],
    .activity-search-form input[type="number"],
    .activity-search-form .search-button {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Coming Soon Modal */
.coming-soon-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
}

.coming-soon-modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.coming-soon-content {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    width: 90%;
    max-width: 500px;
    margin: 20px;
}

.coming-soon-content h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.coming-soon-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.coming-soon-content .contact-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.coming-soon-content .contact-info p {
    color: #666;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.coming-soon-content .contact-info a {
    color: #e74c3c;
    text-decoration: none;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    font-size: 24px;
    color: #666;
    background: #f8f9fa;
    border-radius: 50%;
}

/* Form Containers */
.flight-search-form,
.package-search-form,
.hotel-search-form,
.visa-search-form,
.transfer-search-form,
.activities-search-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 1rem 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group.traveller-group {
    flex: 1 1 100%;
    max-width: 100%;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b4a;
}

/* Traveller Input Styling */
.traveller-input {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.traveller-selector {
    flex: 1;
    cursor: pointer !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    padding: 0.8rem !important;
    border-radius: 5px;
    font-size: 1rem;
    color: #333 !important;
    transition: all 0.3s ease;
}

.traveller-selector:hover {
    border-color: #3498db !important;
    background: #f8f9fa !important;
}

.traveller-selector:focus {
    outline: none;
    border-color: #3498db !important;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.traveller-input .modify-btn {
    flex-shrink: 0;
}

/* Search Button Container */
.search-button {
    align-self: flex-end;
    padding: 10px 30px;
    background: #ff6b4a;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
    white-space: nowrap;
    margin-top: 10px;
}

.search-button:hover {
    background: #ff5436;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-group {
        max-width: 100%;
    }
    
    .search-button {
        width: 100%;
        margin-top: 15px;
    }
    
    .traveller-input {
        flex-direction: column;
        align-items: stretch;
    }
    
    .modify-btn {
        width: 100%;
    }
}

/* Trip Type Selector */
.trip-type-selector {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    background: #f8f9fa;
    padding: 0.8rem;
    border-radius: 8px;
}

.trip-type {
    padding: 0.6rem 1.2rem;
    flex: 1;
    min-width: 110px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
}

.trip-type:hover {
    background: #e9ecef;
    border-color: #ced4da;
}

.trip-type.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

/* Trip Segments */
.trip-segment {
    display: flex;
    gap: 15px;
    width: 100%;
    position: relative;
    padding-right: 30px;
}

.one-way-container,
.round-trip-container,
.multi-trip-container {
    width: 100%;
}

/* Modify Button */
.modify-btn {
    padding: 5px 15px;
    background: transparent;
    color: #ff6b4a;
    border: 1px solid #ff6b4a;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

/* Add More Button */
.add-more-btn {
    padding: 8px 16px;
    background: transparent;
    color: #ff6b4a;
    border: 1px solid #ff6b4a;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.add-more-btn:hover {
    background: #ff6b4a;
    color: white;
}

/* Passenger Details */
.passenger-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .trip-segment {
        flex-direction: column;
    }
    
    .passenger-details {
        flex-direction: column;
    }
}

/* Package Search Form */
.package-search-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.package-search-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-start;
}

.package-search-form .form-group {
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 300px;
}

.package-search-form input,
.package-search-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.package-search-form input:focus,
.package-search-form select:focus {
    border-color: #ff6b4a;
    box-shadow: 0 0 0 2px rgba(255, 107, 74, 0.1);
}

.package-search-form .search-button {
    align-self: flex-end;
    min-width: 150px;
    padding: 12px 24px;
}

@media (max-width: 768px) {
    .package-search-form .form-group {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .package-search-form .search-button {
        width: 100%;
        margin-top: 10px;
    }
}

/* Remove Button */
.remove-segment-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ff6b4a;
    background: transparent;
    color: #ff6b4a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}

.remove-segment-btn:hover {
    background: #ff6b4a;
    color: white;
}

/* Hide remove button on first segment */
.trip-segment:first-child .remove-segment-btn {
    display: none;
}

/* Multi Trip Container */
.multi-trip-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.segments-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.multi-trip-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
}

/* Trip Segments */
.trip-segment {
    display: flex;
    gap: 15px;
    width: 100%;
    position: relative;
    padding-right: 30px;
    background: #fff;
    border-radius: 4px;
    padding: 15px;
    border: 1px solid #eee;
}

/* Add More Button */
.add-more-btn {
    padding: 8px 16px;
    background: transparent;
    color: #ff6b4a;
    border: 1px solid #ff6b4a;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.add-more-btn:hover {
    background: #ff6b4a;
    color: white;
}

/* Remove Button */
.remove-segment-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ff6b4a;
    background: transparent;
    color: #ff6b4a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}

.remove-segment-btn:hover {
    background: #ff6b4a;
    color: white;
}

/* Hide remove button on first segment */
.trip-segment:first-child .remove-segment-btn {
    display: none;
}

@media (max-width: 768px) {
    .trip-segment {
        flex-direction: column;
        padding-right: 40px;
    }
    
    .remove-segment-btn {
        top: 15px;
        transform: none;
    }
}

/* Round Trip Container */
.round-trip-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.round-trip-container .trip-segment {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #eee;
}

.round-trip-container .form-group {
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 300px;
}

@media (max-width: 768px) {
    .round-trip-container .trip-segment {
        flex-direction: column;
    }
    
    .round-trip-container .form-group {
        max-width: 100%;
    }
}

/* Flight Search Form Styles */
.flight-search-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
}

.trip-type-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.trip-type {
    padding: 0.8rem 1.5rem;
    border: 2px solid #3498db;
    background: transparent;
    color: #3498db;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trip-type:hover {
    background: #3498db;
    color: white;
}

.trip-type.active {
    background: #3498db;
    color: white;
}

.one-way-container,
.round-trip-container,
.multi-trip-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trip-segment {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.destination-input {
    position: relative;
}

.remove-segment-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #e74c3c;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.remove-segment-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.multi-trip-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.add-more-btn {
    padding: 0.8rem 1.5rem;
    background: #2ecc71;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.add-more-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.passenger-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 1rem;
}

.search-button {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.search-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .flight-search-container {
        padding: 1rem;
    }

    .trip-type-selector {
        justify-content: center;
    }

    .trip-type {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .form-group {
        min-width: 100%;
    }

    .passenger-details {
        flex-direction: column;
    }
}

/* Traveler Modal Styles */
.traveler-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.traveler-modal.active {
    display: flex;
}

.traveler-modal-content {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.room-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.room-block {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.room-header h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.remove-room {
    color: #e74c3c;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.traveler-counter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.counter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.counter-group label {
    font-weight: 600;
    color: #2c3e50;
}

.counter-group small {
    color: #666;
    font-size: 0.8rem;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.counter-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.counter-btn:hover {
    background: #f8f9fa;
    border-color: #3498db;
    color: #3498db;
}

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

.counter-value {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
}

.add-room-btn {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 1px dashed #3498db;
    color: #3498db;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.add-room-btn:hover {
    background: rgba(52, 152, 219, 0.1);
}

.apply-btn {
    padding: 0.8rem 2rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .traveler-modal-content {
        width: 95%;
        margin: 1rem;
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .room-block {
        padding: 1rem;
    }
} 