:root {
    --main-color: #021f54;
    --white-color: #fff;
    --text-color: #272727;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* CSS */

.btn-main {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, .1) 0 2px 4px 0;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    font-family: "Akzidenz Grotesk BQ Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    outline: 0;
    padding: 10px 25px;
    text-align: center;
    transform: translateY(0);
    transition: transform 150ms, box-shadow 150ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.btn-main:hover {
    box-shadow: rgba(0, 0, 0, .15) 0 3px 9px 0;
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .btn-main {
        padding: 10px 30px;
    }
}


/* Top Header Styles */

.top-header {
    padding: 5px 30px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.top-icon img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.top-icon {
    align-items: center;
    margin-right: 20px;
}

.top-icon a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.top-icon a:hover {
    color: #0056b3;
}

.second-icon-top {
    justify-content: flex-end;
}


/* Navbar  */

.navbar {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 20px;
    background-color: transparent !important;
}

.custom-toggler {
    border: none;
    background: transparent;
    padding: 10px;
    position: relative;
    width: 30px;
    height: 24px;
    z-index: 999;
}

.toggler-icon {
    display: block;
    height: 3px;
    width: 100%;
    /* background-color: #fff; */
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.4s ease;
    border: 1px solid white;
}


/* Cross animation */

.navbar-toggler:focus {
    box-shadow: none;
}

.custom-toggler.collapsed .top-bar {
    transform: rotate(0) translateY(0);
}

.custom-toggler:not(.collapsed) .top-bar {
    transform: rotate(45deg) translateY(15px);
}

.custom-toggler.collapsed .middle-bar {
    opacity: 1;
}

.custom-toggler:not(.collapsed) .middle-bar {
    opacity: 0;
}

.custom-toggler.collapsed .bottom-bar {
    transform: rotate(0) translateY(0);
}

.custom-toggler:not(.collapsed) .bottom-bar {
    transform: rotate(-45deg) translateY(-15px);
}

.navbar-brand img {
    width: 200px;
}

.navbar-nav .nav-link {
    color: var(--white-color) !important;
    margin: 0 10px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}


.navbar-toggler {
    border: none;
    padding: 0;
    font-size: 1.5rem;
    color: var(--white-color) !important;
}


/* Hero Section Styles */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    background: linear-gradient(rgb(0 0 0 / 61%), rgb(0 15 85 / 46%)), url(../images/hero-img.jpg) center center / cover no-repeat;
    padding: 0 20px;
}

.navbar-toggler .close-icon {
    display: none;
    font-size: 2rem;
    line-height: 1;
    color: #000;
    /* Ya jo chaho */
}

.hero-tittle {
    margin-bottom: 20px;
}

.hero-tittle h3 {
    font-size: 90px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-tittle span {
    color: #4888ff;
}

.her-para p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-btn a {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn a:first-child {
    background-color: var(--white-color);
    color: var(--main-color);
}

.hero-btn a:last-child {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.hero-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


/* about us section start here  */

.section-padding {
    padding: 80px 0px;
}

.sub-title p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.sub-title h3 {
    font-size: 35px;
    font-weight: 600;
    color: var(--text-color);
}

.about-us p {
    font-size: 1rem;
}

.about-btn a {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: var(--main-color);
    color: var(--white-color);
}

.about-right {
    display: flex;
    justify-content: end;
    position: relative;
}

.about-right img {
    position: absolute;
    z-index: -10;
}

.about-bed-section {
    display: flex;
    padding: 40px 0px;
    position: absolute;
    flex-wrap: wrap;
}

.bed-1 img {
    width: 265px;
}

.bed-2 img,
.bed-3 img {
    width: 265px;
    margin-left: 10px;
}


/* our rooms start here  */


/* CSS Section */

.room-gallery-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--main-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--main-color);
}

.room-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 3px 0px;
    transition: all 0.4s ease-in-out;
    min-height: 100%;
}

.room-card img {
    border-radius: 1rem;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.room-detail h3 {
    font-size: 2rem;
    font-weight: 700;
}

.room-card .room-detail {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.room-detail .room-facility {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.room-detail .room-facility span {
    padding: 0.75rem;
    line-height: 1;
    font-size: 0.85rem;
    border: 1px solid #021f5416;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    background-color: #021f5416;
    color: var(--main-color);
}

.room-item {
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    margin: 15px;
}

.room-item:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); */
}

.room-img {
    height: auto;
    overflow: hidden;
    position: relative;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-img-2 img {
    width: 100%;
    margin-bottom: 10px;
}

.room-item:hover .room-img img {
    transform: scale(1.05);
}

.room-content {
    padding: 25px;
    background-color: var(--main-color);
    margin-bottom: 10px;
}

.room-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white-color);
    position: relative;
    padding-bottom: 10px;
}

.room-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--main-color);
}

.room-amenities {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.room-amenities li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
    color: var(--white-color);
}

.tick-icon {
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}


/* facilities section start here  */

.facilities-section {
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 1rem;
}

.facilities-section img {
    width: 100px;
}

.facilities-section h3 {
    font-size: 25px;
    padding: 15px 0px;
}


/* book now section  */

.booking-section {
    background: linear-gradient(rgb(255 255 255 / 58%), rgb(255 255 255 / 57%)), url(../images/book-now-bg.jpg) center center / cover no-repeat;
}

.booking-content {
    width: 50%;
    text-align: center;
    right: 0;
    margin: auto;
    padding: 40px;
    color: var(--white-color);
    background-color: var(--main-color);
}


/* testimonial start here  */

.testimonail-section {
    background-image: url(../images/testi-bg.webp);
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.testi-item {
    padding: 24px 20px;
}

.card-item {
    /* border-top: 1px solid var(--text-color);
    border-right: 0px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    border-left: 11px solid var(--text-color); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background-color: #adcaff85;
    padding: 50px;
    border-top-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.testi-profile {
    font-size: 30px;
    font-weight: bold;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    background-color: var(--main-color);
    color: white;
    border-radius: 50%;
}

.google-review {
    display: flex;
    justify-content: center;
}

.card-item .google-review a {
    width: 50% !important;
}

.card-item .card-description p {
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

footer h5 {
    font-size: 28px;
}

.contact i {
    font-size: 28px;
    padding: 0.75rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 50%;
    background-color: white;
    color: var(--main-color);
}

.contact a {
    text-decoration: none;
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 20px;
    color: white;
    margin-bottom: 1rem
}

.social-icon img {
    width: 40px;
}

.footer-links li {
    padding: 0.3rem 0;
}

.footer-links a {
    font-size: 18px;
    color: rgb(203, 203, 203);
    text-decoration: none;
}




/* about page start here  */
.inner-section {
    background: linear-gradient(rgb(3 3 3 / 59%), rgb(2 2 2 / 64%)), url(../images/about-bg.webp) center center / cover no-repeat;
}

.inner-title {
    padding: 160px 0px;
    position: relative;
}

.inner-title h3 {
    position: absolute;
    transform: translate(-50%, -50%);
    align-items: center;
    top: 65%;
    left: 50%;
    color: var(--white-color);
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
}

.about-page {

    padding: 20px 40px;
}

.about-border {
    border: 1px solid #021f5400;
    padding: 40px 40px;
    border-radius: 20px;
    box-shadow: 2px 3px 5px 1px #021f5452;
}

.section-dec {
    position: absolute;
    left: 46%;
    width: 475px;
    height: 387px;
    margin-left: -230px;
    z-index: -1;
    background: url(../images/map_bg.png) no-repeat center;
    opacity: .7;
}

.about-title p {
    font-size: 20px;
    font-weight: 500;
    color: var(--main-color);
    text-transform: uppercase;
}

.about-title h3 {
    font-size: 40px;
    font-weight: 600;
    color: var(--main-color);
}

.about-inner-page {
    position: relative;
    padding: 40px 0;

}

.img-2 {
    position: relative;
}

.img-2 img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.img-1 {
    position: absolute;
    top: -55px;
    right: -34px;
}

.img-1::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 10px;
    border: 1px dotted var(--main-color);
    z-index: 0;
    border-radius: 20px;

}

.img-1 img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    border-radius: 20px;

}

.img-3 {

    position: absolute;
    left: -30px;
    bottom: -25px;
}

.img-3 img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    border-radius: 20px;
}

.img-3::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 10px;
    border: 1px dotted var(--main-color);
    z-index: 0;

}

/* gallery page start here  */

.gallery-img {

    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}









/* room details start here  */
/* Header Section */
.room-header {
    position: relative;
    margin-bottom: 40px;
    border-radius: var(--main-color);
    overflow: hidden;
    box-shadow: var(--main-color);
}

.room-header img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.room-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px;
}

.room-title h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.price-tag {
    background-color: var(--text-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    font-size: 1.2rem;
}

/* Main Content */
.room-details-section {
    background: white;
    border-radius: var(--main-color);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--main-color);
    position: relative;
}

.room-details-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--main-color);
    border-radius: var(--main-color) 0 0 var(--main-color);
}

.section-title {
    color: var(--text-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--white-color);
    position: relative;
}



/* Room Specs */
.room-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white-color);
    padding: 10px 15px;
    border-radius: var(--main-color);
}

.spec-item i {
    color: var(--main-color);
    font-size: 1.2rem;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    transition: all 0.3s ease;
    border-radius: var(--main-color);
}

.amenity-item:hover {
    background: var(--light-color);
    transform: translateY(-3px);
}

.amenity-item i {
    color: var(--main-color);
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}





/* Similar Rooms */
.similar-rooms {
    margin-top: 50px;
}

.similar-rooms-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
}

.similar-rooms-title h2 {
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.similar-rooms-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--main-color);
}

.room-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.room-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.room-card:hover .room-card-img img {
    transform: scale(1.1);
}

.room-card-body {
    padding: 20px;
}

.room-card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.room-card-price {
    color: var(--white-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: block;
}

.view-details-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--main-color);
    color: white;
    border-radius: var(--main-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: #2980b9;
    color: white;
}

.book-now-btn {
    background-color: var(--main-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-size: 1rem;
}

.book-now-btn:hover {
    background-color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.book-now-btn i {
    font-size: 1rem;
    margin-right: 8px;
}

.nearby-section {
    display: flex;
    justify-content: center;
    align-items: center;
}





.attraction-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.attraction-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.attraction-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.attraction-card:hover .attraction-img img {
    transform: scale(1.1);
}

.attraction-body {
    padding: 20px;
}

.attraction-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 600;
}

.attraction-distance {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.attraction-description {
    margin-bottom: 20px;
    color: #666;
}

.attraction-features {
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.feature-icon {
    color: var(--main-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}


.map-container {
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.category-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-btn {
    margin: 5px;
    padding: 8px 20px;
    background: var(--light-color);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: var(--main-color);
    color: white;
}


/* Contact Section Styling */
.contact-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.sec-title {
    margin-bottom: 40px;
}

.sec-title .sub-title {
    display: block;
    color: var(--main-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sec-title h2 {
    color: var(--text-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.sec-title .text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Form Styling */
.form-control {
    height: 50px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-primary {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.btn-primary:hover {
    background-color: var(--text-color);
    border-color: var(--white-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
    transform: translateY(-2px);
}

/* Contact Info Styling */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.contact-info-list li:hover {
    transform: translateX(5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #aaaaaa;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}




.text-box h6 {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.text-box a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.text-box a:hover {
    color: var(--main-color);
}

.text-box a span {
    color: var(--main-color);
    font-weight: 600;
}

.text-box span {
    color: #666;
    line-height: 1.6;
}





















/* book now start here  */
/* Booking Section Styles */
.book-now-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.booking-form-container {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Form Titles */
.form-section-title {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--main-color);
}

.payment-title {
    margin-top: 30px;
}

/* Form Controls */
.form-control,
.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--main-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

/* Submit Button */
.submit-btn {
    background: var(--main-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--text-color);
    transform: translateY(-2px);
}

.fa-brands:before,
.fa-regular:before,
.fa-solid:before,
.fa:before,
.fab:before,
.far:before,
.fas:before {
    content: var(--fa);
    color: #021f54 !important;
}

.booking-sidebar a {
    text-decoration: none;
}

/* Responsive */
@media (max-width: 767px) {
    .book-now-section {
        padding: 30px 0;
    }

    .booking-form-container {
        padding: 20px;
    }

    .about-border {

        padding: 0px 0px;

    }
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .book-now-section {
        padding: 50px 0;
    }

    .booking-form-container {
        padding: 20px;
    }

    .form-section-title {
        font-size: 20px;
    }

    .col-md-6,
    .col-md-3 {
        margin-bottom: 10px;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Responsive Design */

@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
    }

    .room-content h3 {
        font-size: 20px;
    }

    .room-carousel .owl-nav {
        position: relative;
        top: 0;
        text-align: center;
        margin-bottom: 20px;
    }
}