*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0f172a;
    color:white;
}

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 50px;
    background:rgba(5,15,40,.95);
    backdrop-filter:blur(10px);
    z-index:1000;
}

.logo-section{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-section img{
    width:60px;
    height:60px;
    border-radius:10px;
}

.logo-section h2{
    font-size:26px;
    white-space:nowrap;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#38bdf8;
}

.hero{
    height:45vh;
    padding-top:90px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1600");
    background-size:cover;
    background-position:center;
}

.hero h1{
    font-size:60px;
    margin-bottom:15px;
}

.hero p{
    font-size:20px;
    color:#d1d5db;
}

.booking{
    padding:80px 8%;
    display:flex;
    justify-content:center;
}

.form-box{
    background:#1e293b;
    padding:40px;
    border-radius:20px;
    width:100%;
    max-width:750px;
}

.form-box h2{
    text-align:center;
    margin-bottom:30px;
    font-size:36px;
}

/* =============================================
   NEW: FORM ROW (DESKTOP PAR SIDE-BY-SIDE KE LIYE)
   ============================================= */
.form-row {
    display: flex;
    gap: 20px;
}

.form-row .input-box {
    flex: 1;
}

.input-box {
    margin-bottom: 20px;
}

/* Updated to support FontAwesome Icons in labels */
.input-box label{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom:8px;
    font-size: 14px;
    color: #cbd5e1;
}

.input-box label i {
    color: #38bdf8; /* Blue color for your premium icons */
}

.input-box input,
.input-box select,
.input-box textarea{
    width:100%;
    padding:15px;
    background:#0f172a;
    border:1px solid #334155;
    border-radius:10px;
    color:white;
    font-size:16px;
    transition: 0.3s ease;
}

/* Focus and Glow State */
.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{
    outline:none;
    border-color:#38bdf8;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.2);
}

/* Updated Button with Hover Glow Effect */
.btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#2563eb,#06b6d4);
    color:white;
    font-size:18px;
    cursor:pointer;
    transition:.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

footer{
    background:#020617;
    padding:25px;
    text-align:center;
}

.floating-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    color:white;
    text-decoration:none;
    transition: 0.3s;
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* =============================================
   MOBILE RESPONSIVE UPDATES
   ============================================= */
@media(max-width:768px){

    .navbar{
        height:auto;
        padding:15px;
        flex-direction:column;
    }

    .logo-section{
        margin-bottom:10px;
    }

    .logo-section h2{
        font-size:18px;
        white-space:normal;
        text-align:center;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero{
        height:auto;
        padding:120px 20px 60px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:16px;
    }

    /* Mobile standard par single-column automatic switch hoga */
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .booking{
        padding:40px 20px;
    }

    .form-box{
        padding:25px;
    }
}