* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header and Navigation */
header {
    background: linear-gradient(90deg, #2c3e50, #3498db);
    color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.nav-links li a:hover,
.nav-links li a[aria-current="page"] {
    color: #f1c40f;
    transform: translateY(-2px);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #f1c40f;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background-color: #fff;
    display: block;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.hamburger[aria-expanded="true"] .line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .line:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] .line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    text-align: center;
}

.hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #fff;
}

/* Search Container */
.search-container {
    display: flex;
    justify-content: center;
    margin: 2rem auto;
    max-width: 600px;
}

.search-container input {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    width: 100%;
    max-width: 400px;
    outline: none;
}

.search-container button {
    padding: 0.75rem 1rem;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-container button:hover {
    background-color: #2980b9;
}

/* Booking Section */
.booking-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.booking-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.booking-form:hover {
    transform: translateY(-5px);
}

.booking-form h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    display: none;
    margin-top: 0.5rem;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #2980b9, #1a5276);
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    text-align: center;
}

.trust-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.trust-item {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 0.95rem;
    color: #34495e;
}

/* Footer */
.footer {
    background: linear-gradient(90deg, #2c3e50, #34495e);
    color: #fff;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-column p,
.footer-column ul li a {
    font-size: 0.95rem;
    color: #bdc3c7;
    text-decoration: none;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a:hover {
    color: #f1c40f;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background: #f1c40f;
    transform: rotate(360deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100vh;
        background: rgba(44, 62, 80, 0.95);
        flex-direction: column;
        align-items: center;
        padding-top: 4rem;
        transition: transform 0.3s ease;
        transform: translateX(-100%);
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .booking-content {
        grid-template-columns: 1fr;
    }

    .search-container input {
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .booking-form h2 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group select {
        font-size: 0.9rem;
    }

    .submit-btn {
        font-size: 1rem;
    }

    .search-container input {
        max-width: 200px;
    }

    .trust-section h2 {
        font-size: 1.5rem;
    }
}