/* HERO */
.hero{
    background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url('img/bg-img/new1.jpeg') center/cover no-repeat;
    height: 60vh;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-align:center;
}

.hero h1{
    font-size:42px;
    font-weight:700;
    letter-spacing:1px;
}

/* GALLERY */
.gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:15px;
    transition:0.4s;
}

.gallery img:hover{
    transform:scale(1.05);
}

/* BOOKING CARD GLASS */
.booking-card{
    
    color:#fff;
    padding:35px;
    border-radius:20px;
    backdrop-filter:blur(10px);
    box-shadow:0 10px 40px rgba(0,0,0,0.3);
}

.booking-card input{
    border-radius:10px;
    margin-bottom:15px;
}

.price{
    font-size:30px;
    font-weight:700;
    color:#19C1B1;
}

.book-btn{
    background:#19C1B1;
    border:none;
    padding:12px;
    font-weight:600;
    border-radius:10px;
    transition:0.3s;
}

.book-btn:hover{
    background:#ffca2c;
    transform:translateY(-3px);
}

/* AMENITIES */
.amenity{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:15px;
}

.amenity i{
    font-size:22px;
    color:#19C1B1;
}

/* OFFER */
.offer{
    background:#111;
    color:#fff;
    padding:70px 0;
    text-align:center;
}

.offer h3{
    color:#19C1B1;
}



sd,fksjhkhk
.why-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
}

.why-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.why-section p {
    font-size: 16px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.why-card {
    background: #ffffff;
    color: #333;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card i {
    font-size: 40px;
    color: #2c5364;
    margin-bottom: 20px;
    transition: 0.4s;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #555;
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.why-card:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #0f2027;
}

/* Animation */
.why-card {
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

.why-card:nth-child(1) { animation-delay: 0.2s; }
.why-card:nth-child(2) { animation-delay: 0.4s; }
.why-card:nth-child(3) { animation-delay: 0.6s; }
.why-card:nth-child(4) { animation-delay: 0.8s; }
.why-card:nth-child(5) { animation-delay: 1s; }

@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.policy-section{
    padding:80px 20px;
    max-width:1100px;
    margin:auto;
}

.policy-section h2{
    text-align:center;
    font-size:36px;
    margin-bottom:10px;
    color:#1e293b;
}

.policy-section p.section-subtitle{
    text-align:center;
    color:#64748b;
    margin-bottom:60px;
}

/* Timeline Container */
.timeline{
    position:relative;
    margin-left:30px;
    padding-left:40px;
    border-left:3px solid #19C1B1;
}

/* Policy Item */
.policy-item{
    position:relative;
    margin-bottom:40px;
    padding:25px 25px 25px 30px;
    background:#ffffff;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.4s ease;
    opacity:0;
    transform:translateX(-40px);
    animation:slideIn 0.8s forwards;
}

.policy-item:nth-child(1){ animation-delay:0.2s; }
.policy-item:nth-child(2){ animation-delay:0.4s; }
.policy-item:nth-child(3){ animation-delay:0.6s; }
.policy-item:nth-child(4){ animation-delay:0.8s; }

/* Circle Icon */
.policy-item::before{
    content:"";
    position:absolute;
    left:-55px;
    top:30px;
    width:40px;
    height:40px;
    background:#19C1B1;
    border-radius:50%;
    box-shadow:0 5px 15px rgba(37,99,235,0.4);
}

.policy-item i{
    position:absolute;
    left:-45px;
    top:38px;
    color:#fff;
    font-size:18px;
}

/* Hover Effect */
.policy-item:hover{
    transform:translateX(5px);
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.policy-item h3{
    margin:0 0 8px;
    font-size:20px;
    color:#0f172a;
}

.policy-item p{
    margin:0;
    color:#475569;
    font-size:14px;
}

/* Animation */
@keyframes slideIn{
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* Responsive */
@media(max-width:768px){
    .timeline{
        margin-left:10px;
        padding-left:30px;
    }
    .policy-item::before{
        left:-45px;
    }
    .policy-item i{
        left:-35px;
    }
}
.map-section{
    padding:60px 0;
    
}

.map-section iframe{
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}
/* 
gallery */

/* Section */
.gallery-section{
    padding:70px 0;
}

.gallery-title{
    font-size:34px;
    font-weight:700;
    text-align:center;
    margin-bottom:50px;
    color:#333;
}

/* Gallery Box */
.gallery-box{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    transform: translateY(0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    display:block;
}

/* Overlay */
.gallery-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:20px;
    background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color:white;
    opacity:0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-overlay h5{
    margin:0;
    font-weight:600;
}

.gallery-overlay i{
    margin-right:8px;
    color:#1CC397;
    transition: transform 0.4s ease;
}

/* Hover Animations */
.gallery-box:hover img{
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1.1);
}

.gallery-box:hover .gallery-overlay{
    opacity:1;
    transform: translateY(0);
}

.gallery-box:hover i{
    transform: rotate(20deg);
}

.gallery-box:hover{
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: translateY(-10px);
}

/* Custom Heights */
.big-img{
    height:520px;
}

.small-img{
    height:250px;
}

@media(max-width:768px){
    .big-img{
        height:300px;
    }
    .small-img{
        height:200px;
    }
}

/* Animate on Scroll */
@keyframes fadeInUp {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity:1; transform: translateY(0);}
}

.gallery-box {
    animation: fadeInUp 0.8s ease forwards;
    opacity:0;
}

/* Hero Section */
.hero {
    background: url('https://images.unsplash.com/photo-1501117716987-c8e1ecb21032?q=80&w=1400') center/cover no-repeat;
    height: 55vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Booking Card */
.booking-card {
    margin-top: -80px;
    border-radius: 20px;
    border: none;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Labels */
.form-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

/* Inputs */
.form-control,
.form-select {
    height: 48px;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid #dee2e6;
}

.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.2);
}

/* Button */
.btn-book {
    background-color: #0d6efd;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-book:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

/* Mobile Fix */
@media (max-width: 768px) {
    .booking-card {
        margin-top: -40px;
        padding: 20px;
    }

    .hero {
        height: 45vh;
    }
}

/* Fix Select Dropdown Styling */
.custom-select {
    height: 48px;
    border-radius: 12px;
    padding-right: 150px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5.516 7.548L10 12.032l4.484-4.484 1.032 1.032L10 14.097 4.484 8.58z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    cursor: pointer;
}

.custom-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.2);
}
.custom-select1 {
    height: 48px;
    border-radius: 12px;
    padding-right: 100px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5.516 7.548L10 12.032l4.484-4.484 1.032 1.032L10 14.097 4.484 8.58z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    cursor: pointer;
}

.custom-select1:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.2);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .custom-select,
    .custom-select1 {
        height: 44px;
        font-size: 14px;
        padding-right:180px;
        background-position: right 10px center;
        background-size: 16px;
    }
}
/* Mobile Responsive */
@media (max-width: 576px) {
    .custom-select{
        height: 44px;
        font-size: 14px;
        padding-right:180px;
        background-position: right 10px center;
        background-size: 16px;
    }
}

        .terms-card {
            background: #ffffff;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        .terms-title {
            font-weight: 700;
            color: #1CC397;
        }

        .feature-item {
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background-color: #f1f5ff;
            transform: translateX(5px);
        }

        .icon-circle {
            width: 45px;
            height: 45px;
            background-color: #e7f1ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #1CC397;
            margin-right: 15px;
        }

        .location-badge {
            background-color: #ffc107;
            color: #000;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
        }

        @media (max-width: 576px) {
            .terms-card {
                padding: 25px;
            }
        }

        