* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { 
    font-size: 24px; 
    font-weight: 600; 
    margin-left: 2px;
    color: #333; 
    cursor: pointer; 
}

.nav-links { 
    display: flex; 
    list-style: none; 
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    margin-left: 30px;
    transition: 0.3s;
}

.nav-links li a:hover { 
    color: #ff5a5f; 
}

/* Hero */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 { 
    font-size: 3rem; 
    margin-bottom: 20px; 
}

/* Booking Form */
.booking-container {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 100%;
    max-width: 850px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: #333;
}

.booking-form { 
    display: flex; 
    gap: 15px; 
    flex-wrap: wrap; 
    align-items: flex-end; 
}

.input-group { 
    flex: 1; 
    min-width: 180px; 
    text-align: left; 
}

.input-group label { 
    display: block; 
    font-size: 13px; 
    font-weight: 600; 
    margin-bottom: 5px; 
}

.input-group input {
    width: 100%; 
    padding: 12px; 
    border: 1px solid #ddd; 
    border-radius: 6px; 
    outline: none;
}

.btn-search {
    background: #ff5a5f; 
    color: white; 
    padding: 12px 30px; 
    border: none;
    border-radius: 6px; 
    cursor: pointer; 
    font-weight: 600; 
    transition: 0.3s;
}

.btn-book {
    background: #ff5a5f; 
    color: white;
    margin-bottom: 20px; 
    padding: 12px 30px; 
    border: none;
    border-radius: 6px; 
    cursor: pointer; 
    font-weight: 600; 
    transition: 0.3s;
}

.btn-search:hover { 
    background: #e0484d; 
}

.btn-book:hover {
    background: #e0484d;
}

/* Destinations Grid */

.destinations { 
    padding: 80px 8%; 
    background: #f9f9f9; 
}

.section-title { 
    text-align: center; 
    margin-bottom: 50px; 
    font-size: 2.2rem; 
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    text-align: center;
    background: white; 
    border-radius: 12px; 
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); 
    transition: 0.3s;
}

.card:hover { 
    transform: translateY(-10px); 
}

.card-img { 
    position: relative; 
    height: 200px; 
}

.card-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.tag {
    position: absolute; 
    top: 12px; 
    left: 12px; 
    background: #ff5a5f;
    color: white; 
    padding: 4px 12px; 
    border-radius: 20px; 
    font-size: 11px; 
    font-weight: 600;
}

.card h3 { 
    padding: 15px 20px 5px; 
}

.card p { 
    padding: 0 20px 20px; 
    color: #777; 
    font-size: 14px; 
}

/* Contact */

.contact { 
    padding: 80px 8%; 
    background: #fff; 
}

.contact-container { 
    display: flex; 
    gap: 50px; 
    max-width: 1100px; 
    margin: 0 auto; 
}

.contact-info { 
    flex: 1; 
}

.info-item { 
    margin-bottom: 30px; 
}

.info-item h3 { 
    color: #ff5a5f; 
    margin-bottom: 5px; 
}

.contact-form { 
    flex: 1.5; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.contact-form input, .contact-form textarea {
    padding: 12px; 
    border: 1px solid #ddd; 
    border-radius: 6px; 
    outline: none;
}

/* Footer */

footer { 
    background: #222; 
    color: #888; 
    text-align: center; 
    padding: 40px; 
}

/* Burger Mobile Menu */

.burger { 
    display: none; 
    cursor: pointer; 
}

.burger div { 
    width: 25px; 
    height: 3px; 
    background: #333; 
    margin: 5px; 
    transition: 0.3s; 
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; 
        right: 0; 
        top: 60px; 
        height: 100vh; 
        width: 60%;
        background: white; 
        flex-direction: column; 
        align-items: center;
        transform: translateX(100%); 
        transition: 0.5s ease;
    }

    .nav-links li { 
        margin: 25px 0; 
    }

    .burger { 
        display: block; 
    }

    .nav-active { 
        transform: translateX(0%); 
    }

    .toggle .line1 { 
        transform: rotate(-45deg) translate(-5px, 6px); 
    }

    .toggle .line2 { 
        opacity: 0; 
    }

    .toggle .line3 { 
        transform: rotate(45deg) translate(-5px, -6px); 
    }

    .contact-container { 
        flex-direction: column; 
    }

}

.success-msg { 
    text-align: center; 
    padding: 20px; 
    color: #27ae60; 
}