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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-bottom: 120px; /* Space for fixed Quick Booking section */
}

/* Ensure Quick Booking is always visible */
html, body {
    position: relative;
}

.quick-booking {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    z-index: 9999 !important;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    color: #2c5aa0;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover {
    color: #2c5aa0;
}

/* Dropdown styles removed - simplified navigation */

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.85) 0%, rgba(102, 126, 234, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 180px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Quick Booking Section */
.quick-booking {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 1.5rem 0;
    z-index: 9999 !important;
    border-top: 1px solid rgba(44, 90, 160, 0.2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

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

.quick-booking h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.toggle-booking {
    background: #2c5aa0;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.toggle-booking:hover {
    background: #1e3d6f;
    transform: scale(1.1);
}

.toggle-icon {
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.booking-content {
    transition: all 0.3s ease;
    overflow: hidden;
    max-height: 500px;
    opacity: 1;
}

.booking-content.collapsed {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    transform: translateY(-10px);
}

.quick-booking.collapsed {
    padding: 0.5rem 0;
}

.quick-booking.collapsed .booking-header {
    margin-bottom: 0;
}

/* Smooth collapse animation */
.quick-booking {
    transition: padding 0.3s ease;
}

.booking-content {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effect for collapsed state */
.quick-booking.collapsed:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.15);
}

.booking-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #666;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

.booking-form {
    max-width: 1000px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Input Container */
.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.form-group select,
.form-group input {
    padding: 14px 45px 14px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #ffffff;
    width: 100%;
    box-sizing: border-box;
    color: #2c3e50 !important;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    -webkit-text-fill-color: #2c3e50 !important;
    opacity: 1 !important;
    -webkit-opacity: 1 !important;
}

.form-group select:focus,
.form-group input:focus {
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.form-group select:hover,
.form-group input:hover {
    border-color: #2c5aa0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Input Icons */
.input-icon {
    position: absolute;
    right: 15px;
    color: #666;
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 2;
}

/* Placeholder Styling */
.form-group input::placeholder {
    color: #999 !important;
    font-weight: 400;
    opacity: 1 !important;
    -webkit-text-fill-color: #999 !important;
}

/* Input Text Styling */
.form-group input[type="text"],
.form-group input[type="date"] {
    color: #2c3e50 !important;
    -webkit-text-fill-color: #2c3e50 !important;
    opacity: 1 !important;
    -webkit-opacity: 1 !important;
    opacity: 1 !important;
}

.form-group input[type="text"]:focus,
.form-group input[type="date"]:focus {
    color: #2c3e50 !important;
    -webkit-text-fill-color: #2c3e50 !important;
}

/* Ensure text is visible when typing */
.form-group input:not(:placeholder-shown) {
    color: #2c3e50 !important;
    -webkit-text-fill-color: #2c3e50 !important;
    font-weight: 500 !important;
}

/* Force text visibility for all input states */
.form-group input[type="text"]:valid,
.form-group input[type="date"]:valid,
.form-group input[type="text"]:invalid,
.form-group input[type="date"]:invalid {
    color: #2c3e50 !important;
    -webkit-text-fill-color: #2c3e50 !important;
    opacity: 1 !important;
}

/* Override any browser autofill styling */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #2c3e50 !important;
    color: #2c3e50 !important;
}

/* Ensure destination search is not affected by autofill styling */
.destination-search:-webkit-autofill,
.destination-search:-webkit-autofill:hover,
.destination-search:-webkit-autofill:focus,
.destination-search:-webkit-autofill:active {
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    -webkit-text-fill-color: #2c3e50 !important;
    color: #2c3e50 !important;
    background: #ffffff !important;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
    cursor: pointer;
}

.form-group select::-ms-expand {
    display: none;
}

/* Select Arrow */
.form-group select + .input-icon {
    right: 12px;
    font-size: 0.9rem;
    color: #666;
}

/* Form Labels */
.form-group label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: block;
}

/* Form Group Positioning */
.form-group {
    position: relative;
}

.btn-search {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 140px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff5252 0%, #e64a19 100%);
}

.btn-search:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

.btn-text {
    font-size: 1rem;
    font-weight: 600;
}

.btn-icon {
    font-size: 1rem;
}


/* Tour Types Section */
.tour-types {
    padding: 80px 0;
    background: #f8f9fa;
}

.tour-types h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.tour-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

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

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    padding: 1.5rem;
    margin: 0;
}

/* Holiday Themes Section */
.holiday-themes {
    padding: 80px 0;
    background: #ffffff;
}

.holiday-themes h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.holiday-themes h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #27ae60);
    border-radius: 2px;
}

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

.theme-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 280px;
}

.theme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.theme-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.theme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.theme-card:hover .theme-image img {
    transform: scale(1.1);
}

.theme-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.9), rgba(39, 174, 96, 0.9));
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.theme-overlay h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Holiday Themes */
@media (max-width: 768px) {
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .theme-card {
        height: 220px;
    }
    
    .theme-overlay h3 {
        font-size: 1.2rem;
    }
    
    .holiday-themes h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .themes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .theme-card {
        height: 200px;
    }
    
    .theme-overlay h3 {
        font-size: 1.1rem;
    }
}

/* Destinations Section - COMPLETELY REWRITTEN */
.destinations {
    padding: 80px 0;
    background: #f8f9fa;
}

.destinations h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.destinations h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #27ae60);
    border-radius: 2px;
}

.search-box {
    max-width: 400px;
    margin: 0 auto 40px auto;
}

.search-box input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    background: white;
    color: #2c3e50;
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-box input:focus {
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.search-box input::placeholder {
    color: #999;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.dest-card {
    background: white;
    padding: 20px 15px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    border: 2px solid transparent;
}

.dest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.2);
    border-color: #2c5aa0;
}

.dest-card.active {
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.step {
    text-align: center;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.step-icon i {
    font-size: 2.5rem;
    color: white;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: #2c5aa0;
    font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

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

/* Travel Insights Section */
.travel-insights {
    padding: 80px 0;
    background: #f8f9fa;
}

.travel-insights h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.insight-image {
    height: 200px;
    overflow: hidden;
}

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

.insight-card:hover .insight-image img {
    transform: scale(1.1);
}

.insight-card h3 {
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.insight-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* News & Events Section - REMOVED */

/* Inquiry Form Section - COMPLETELY REDESIGNED */
.inquiry-form {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 50%, #1a365d 100%);
    position: relative;
    overflow: hidden;
}

.inquiry-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.form-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.form-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #f8f9fa;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.form-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: #e9ecef;
    font-weight: 400;
}

.multi-step-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.form-step {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
}

.form-step h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2c5aa0, #27ae60);
    border-radius: 2px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    background: white;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-group input::placeholder,
.form-group select::placeholder {
    color: #6c757d;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5aa0;
    background: #f8f9fa;
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.1), 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    background: white;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 500;
    color: #2c3e50;
}

.radio-group label:hover {
    border-color: #2c5aa0;
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.1);
}

.radio-group input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: #2c5aa0;
}

.radio-group input[type="radio"]:checked + span {
    color: #2c5aa0;
    font-weight: 600;
}

.radio-group label:has(input[type="radio"]:checked) {
    border-color: #2c5aa0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.15);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 1rem;
}

.form-navigation button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

#prevBtn {
    background: #f8f9fa;
    color: #2c3e50;
    border: 2px solid #e1e5e9;
}

#prevBtn:hover {
    background: #e9ecef;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

#nextBtn,
#submitBtn {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

#nextBtn:hover,
#submitBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.4);
    background: linear-gradient(135deg, #1e3a8a 0%, #2c5aa0 100%);
}

/* Step Progress Indicator */
.step-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.step-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e1e5e9;
    z-index: 1;
}

.step-progress-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e1e5e9;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
    transition: all 0.3s ease;
}

.step-progress-item.active {
    background: #2c5aa0;
    color: white;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.step-progress-item.completed {
    background: #27ae60;
    color: white;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2c5aa0;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.member-logos {
    text-align: center;
    margin-bottom: 2rem;
}

.member-logos h4 {
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo-item {
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-item:hover {
    background: #2c5aa0;
    transform: translateY(-3px);
}

.logo-item i {
    font-size: 1.5rem;
    color: white;
}

.footer-copyright {
    text-align: center;
    color: #999;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2c5aa0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

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

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .booking-tabs {
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select {
        padding: 12px 40px 12px 12px;
        font-size: 0.9rem;
    }

    .input-icon {
        right: 12px;
        font-size: 1rem;
    }

    .btn-search {
        padding: 12px 20px;
        min-width: 120px;
        height: 45px;
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .quick-booking {
        padding: 1rem 0;
    }

    .booking-header {
        margin-bottom: 1rem;
    }

    .quick-booking h3 {
        font-size: 1.2rem;
    }

    .toggle-booking {
        width: 25px;
        height: 25px;
    }

    .toggle-icon {
        font-size: 1rem;
    }

    .booking-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .booking-card h3 {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .booking-image {
        height: 120px;
    }

    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .tour-card h3 {
        padding: 1rem;
    }

    .tour-image {
        height: 150px;
    }

    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .dest-card {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .destinations h2 {
        font-size: 2rem;
    }
    
    .search-box {
        max-width: 300px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }


    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logos {
        justify-content: center;
    }

    .form-header h2 {
        font-size: 2.5rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .multi-step-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .form-step h3 {
        font-size: 1.5rem;
    }

    .radio-group {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .form-navigation button {
        width: 100%;
        padding: 1rem 2rem;
    }

    .step-progress-item {
        width: 35px;
        height: 35px;
        margin: 0 1rem;
        font-size: 0.9rem;
    }
}

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

    .booking-options {
        grid-template-columns: 1fr;
    }

    .tour-grid {
        grid-template-columns: 1fr;
    }

    .themes-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .dest-card {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .destinations h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }
}

/* Enhanced Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth transitions for all interactive elements */
a, button, input, select, textarea {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Improved Loading Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left {
    animation: fadeInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right {
    animation: fadeInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Improved Hover Effects */
.tour-card,
.dest-card,
.theme-card,
.booking-card,
.testimonial-card,
.insight-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow;
}

/* Smooth hover animations */
.tour-card:hover,
.dest-card:hover,
.theme-card:hover,
.testimonial-card:hover,
.insight-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Button hover effects */
.btn-primary,
.btn-secondary,
.btn-search {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-search:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Form input focus effects */
.form-group input:focus,
.form-group select:focus,
.destination-search:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2c5aa0;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e3d6f;
}
