:root {
    /* Individual Gold Colors from Figma Stops */
    --gold-dark-1: #BA8843;  /* 0% stop */
    --gold-mid-1: #DEC368;   /* 30% stop */
    --gold-light: #F6E37A;   /* 68% stop */
    --gold-dark-2: #A76A31;  /* 100% stop */

    /* The Full Linear Gradient for backgrounds */
    --gold-gradient: linear-gradient(
        90deg, 
        #BA8843 0%, 
        #DEC368 30%, 
        #F6E37A 68%,  
        #A76A31 100%
    );
} 


/* --- BOOKING SECTION BASE --- */
.booking-section {
    background-color: #ffffff;
    padding: 60px 20px;
    width: 100%;
    box-sizing: border-box;
}

.booking-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- TITLE STYLING WITH LINES & STARS --- */
.booking-section .trending-title {
    text-align: center;
    font-family: 'Libertinus Serif', 'Liberation Serif', serif;
    font-size: 34px;
    font-weight: 600; 
    line-height: 42px;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.booking-section .star {
    color: red;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.booking-section .line {
    display: inline-block;
    height: 1.5px;
    width: 120px; 
}

.booking-section .line-left {
    background: linear-gradient(to left, red, transparent);
}

.booking-section .line-right {
    background: linear-gradient(to right, red, transparent);
}

/* --- GRID LAYOUT (3 Columns Desktop) --- */
.booking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    width: 100%;
}

.booking-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    width: 100%;
    border: 1px solid #94A3B8;
    border-radius: 35px;
    overflow: hidden; 
    box-sizing: border-box;
    padding-bottom: 25px;
}

/* --- IMAGE BOX & FLOATING BADGE --- */
.booking-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; 
    border-radius: 30px; 
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-top-left-radius: 34px;
    border-top-right-radius: 34px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    box-shadow: none;
}

.booking-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badge-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* --- CARD DETAILS & TYPOGRAPHY --- */
.booking-card-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px 0;
    width: 100%;
    flex-grow: 1;
}

.booking-card-title {
    font-family: 'Noto Serif', serif;
    font-size: 22px; 
    font-weight: 700; 
    color: #191C1D;  
    margin: 0 0 8px 0; 
}

.booking-card-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    line-height: 18px;
    color: #7a7a7a;
    max-width: 280px;
    margin: 0 0 15px 0;
}

/* --- RED BOOKING BUTTON --- */
.booking-now-btn {
    width:fit-content;
        height:45px;
        border:none;
        border-radius:6px;
        background:#FF0000;
        color:#fff;
        font-size:12px;
        font-weight:700;
        cursor:pointer;
        transition:0.3s;
        letter-spacing:1.6px;
        font-family:'manrope',sans-serif;
        padding:10px;
        white-space: nowrap !important;
        min-width: max-content;
}

.booking-now-btn:hover {
     background:var(--gold-gradient);
        color:#000;
}

@media (max-width: 1024px) {
    .booking-grid {
        grid-template-columns: repeat(3, 1fr); 
        gap: 15px;
    }
}

/* @media (max-width: 768px) {
    .booking-section .trending-title {
        font-size: 24px;
    }
    .booking-section .line {
        width: 60px; 
    }
    .booking-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
        max-width: 400px; 
        margin: 0 auto;
    }
    .booking-card-title {
        font-size: 18px;
    }
} */

@media (max-width: 768px) {
    .booking-section {
        padding: 40px 15px;
    }
    .booking-container {
        padding: 35px 0px ;    
        box-shadow: 0px 0px 0px rgba(0,0,0,0.08);

    }
    .booking-section .trending-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 30px;
        gap: 10px;
    }
    
    .booking-section .star {
        font-size: 16px;
    }

    .booking-section .line {
        width: 45px;
    }

    .booking-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 25px 15px;
        max-width: 100%;
        margin: 0 auto;
    }

    .booking-img-box {
        border-radius: 20px;
    }
.booking-card {
        border: none !important;
        border-radius: 0px !important;
        padding-bottom: 0px !important;
        overflow: visible !important;
    }
    .booking-card-details {
        padding: 12px 5px 0;
    }

    .booking-card-title {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 6px;
    }

    .booking-card-desc {
        font-size: 11px;
        line-height: 15px;
        max-width: 100%;
        margin-bottom: 12px;
        padding: 0 5px;
    }

    .booking-now-btn {
        padding: 8px 16px;
        font-size: 10px;
        width: auto;
    }
}
/* =========================
   QUICK BOOKING SECTION
========================= */

.quick-booking-section {
    width: 100%;
    background: #ffffff;
    padding: 50px 40px;
    box-sizing: border-box;
}

.booking-container {
    width: 100%;
    max-width: 1788px;
    margin: 0 auto;
    background: #ffffff;
    padding:35px 35px 45px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.08);
}

/* =========================
   TITLE
========================= */

.trending-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 45px;
}

.trending-title .line {
    width: 110px;
    height: 2px;
    background: #ffb3b3;
}

.trending-title .star {
    color: red;
    font-size: 22px;
}

.lounge-title {
    font-size: 52px;
    font-weight: 800;
    font-family: 'Noto Serif', serif;
    color: #000;
    text-transform: uppercase;
}

/* =========================
   BAR WRAPPER
========================= */

.booking-bar-wrapper {
    width: 100%;
    background: #DDE1ED;
    border-radius: 12px;
    padding: 82px 80px;
    box-sizing: border-box;
    position: relative;
}

/* =========================
   FORM
========================= */

.booking-bar-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

/* =========================
   INPUT GROUP
========================= */

.booking-input-group {
    width: 100%;
    max-width: 410px;
    height: 80px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 20px;
    box-sizing: border-box;
}

/* LEFT ICON */
.booking-input-group .min-icon {
    font-size: 30px;
    color: #111;
    margin-right: 22px;
}


.date-input{
    width:100%;
    height:100%;
    border:none;
    outline:none;
    background:transparent;

    font-family:'Noto Serif', serif;
    font-size:20px;
    font-weight:700;
    color:#191C1D;

    cursor:pointer;
}

.date-input::-webkit-calendar-picker-indicator{
    opacity:0;
    position:absolute;
    width:100%;
    height:100%;
    cursor:pointer;
}

.date-input:focus{
    border-color:#E3174F;
}

@media (max-width:768px){

    .date-input{
        font-size:16px;
    }

} 

/* SELECT */

/* .booking-input-group select {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: 'Noto Serif', serif;
    font-size: 20px;
    font-weight: 700;
    color: #191C1D;
    cursor: pointer;
} */
 
/* SELECT */
.booking-input-group select {
    width: 80%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: 'Noto Serif', serif;
    font-size: 20px;
    font-weight: 700;
    color: #191C1D;
    cursor: pointer;
}

/* OPTIONS */
.booking-input-group select option {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    color: #111111;
    font-size: 16px;
    font-weight: 600;
    padding: 12px;
    margin: auto;
}

/* DISABLED OPTION */
.booking-input-group select option:disabled {
    color: #999999;
}

/* ARROW */

.booking-input-group .arrow-icon {
    position: absolute;
    right: 24px;
    font-size: 20px;
    color: #111;
    pointer-events: none;
}

/* =========================
   BUTTON
========================= */



 .bar-btn{
        width:fit-content;
        height:45px;
        border:none;
        border-radius:6px;
        background:#FF0000;
        color:#fff;
        font-size:12px;
        font-weight:700;
        cursor:pointer;
        transition:0.3s;
        letter-spacing:1.6px;
        font-family:'manrope',sans-serif;
        padding:10px;
        white-space: nowrap !important;
        min-width: max-content;
    }

    .bar-btn:hover{
        background:var(--gold-gradient);
        color:#000;
       
    }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
.booking-bar-wrapper {
    padding: 56px 54px;
}
    .booking-bar-form {
        /* flex-wrap: wrap; */
        display: flex;
        gap: 10px;
    }

    .booking-input-group {
        max-width: 100%;
        display: flex; 
        height: 60px;
        padding: 0 10px;
    }

    .booking-input-group .min-icon {
        font-size: 18px;
        margin-right: 5px;
    }

    .booking-input-group select {
        font-size: 16px;
    }

    .booking-input-group .arrow-icon {
        right: 14px;
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .booking-bar-form {
        flex-wrap: wrap;
    }

    .booking-bar-wrapper {
        padding: 40px 25px;
    }

    .booking-bar-form {
        flex-direction: column;
        gap: 22px;
    }

    .booking-input-group {
        height: 62px;
    }

    .booking-input-group select {
        font-size: 18px;
    }

    .booking-input-group .min-icon {
        font-size: 20px;
    }

    .bar-btn {
        width: 100%;
        height: 58px;
        font-size: 18px;
    }

    .lounge-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .quick-booking-section {
        padding: 20px 10px;
    }

    .booking-container {
        padding: 15px 10px 25px;
        box-shadow: none;
    }

    .trending-title {
        gap: 10px;
        margin-bottom: 25px;
    }

    .trending-title .line {
        width: 40px;
        height: 1.5px;
    }

    .trending-title .star {
        font-size: 16px;
    }

    .lounge-title {
        font-size: 24px;
    }

    .booking-bar-wrapper {
        padding: 30px 15px;
    }

    .booking-bar-form {
        flex-direction: column;
        gap: 15px;
    }

    .booking-input-group {
        max-width: 100%;
        height: 54px;
        padding: 0 15px;
        border-radius: 8px;
    }

    .booking-input-group .min-icon {
        font-size: 20px;
        margin-right: 12px;
    }

    .booking-input-group select {
        font-size: 16px;
        width: 85%;
    }

    .booking-input-group .arrow-icon {
        right: 15px;
        font-size: 16px;
    }

    .bar-btn {
        width: 100%;
        height: 50px;
        font-size: 14px;
        border-radius: 8px;
        padding: 0;
    }

    .floating-contact-icons {
        right: 50%;
        transform: translateX(50%);
        bottom: -55px;
        gap: 20px;
    }

    .floating-contact-icons a {
        width: 50px;
        height: 50px;
    }

    .floating-contact-icons i {
        font-size: 24px;
    }
}
/* FLOATING ICONS */

.floating-contact-icons{
    position: absolute;
    right: 18px;
    bottom: -34px;

    display: flex;
    align-items: center;
    gap: 14px;
}

/* COMMON STYLE */

.floating-contact-icons a{
    width: 64px;
    height: 64px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    box-shadow: 0 4px 10px rgba(0,0,0,0.15);

    transition: 0.3s ease;
}

/* ICON SIZE */

.floating-contact-icons i{
    font-size: 30px;
    color: #fff;
}

/* WHATSAPP */

.whatsapp-icon{
    background: #4AC959;
}

/* MAIL */

.mail-icon{
    background: #FF5A52;
}

/* HOVER */

.floating-contact-icons a:hover{
    transform: translateY(-4px);
}

@media (max-width: 1024px) {

.floating-contact-icons{
    right: 14px;
    bottom: -24px;
}

.floating-contact-icons a{
    width: 44px;
    height: 44px;
}

/* ICON SIZE */

.floating-contact-icons i{
    font-size: 20px;
}

}

/* MOBILE */

@media(max-width:768px){

    .floating-contact-icons{
        right: 20%;
        bottom: -28px;
    }

    .floating-contact-icons a{
        width: 42px;
        height: 42px;
    }

    .floating-contact-icons i{
        font-size: 20px;
    }
}

/* --- FEATURES MAIN SECTION --- */
.mall-features-section {
    background-color: #ffffff;
    width: 100%;
    max-width: 1924px; 
    margin: 0 auto;   
    padding: 50px 40px; 
    box-sizing: border-box;
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.25); 
    display: block; 

    position: relative;
    z-index: 10;
}

/* --- INNER CONTAINER FOR ALIGNMENT --- */
.features-container {
    max-width: 1400px; 
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    gap: 40px;
    width: 100%;
}

/* --- INDIVIDUAL FEATURE ITEM --- */
.feature-item {
    display: flex;
    align-items: center; 
    gap: 20px; 
    flex: 1;
    justify-content: center;
}

/* --- ICON BOX --- */
.feature-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-box i {
    color: #575757;
    font-size: 42px; 
    line-height: 1;
}

/* --- TEXT BOX & TYPOGRAPHY --- */
.feature-text-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Heading Typography */
.feature-title {
    font-family: 'Noto Serif', serif; 
    font-size: 22px;
    font-weight: 700;
    color: #191C1D;
    margin: 0;
    line-height: 1.2;
}

/* Description Typography */
.feature-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #686A6A;
    margin: 0;
    line-height: 1.3;
}

/* --- RESPONSIVE VIEW */
@media (max-width: 1024px) {
    .features-container {
        gap: 30px;
    }
    .feature-title {
        font-size: 18px;
    }
    .feature-icon-box i {
        font-size: 34px;
    }
    .feature-desc {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .mall-features-section {
        padding: 30px 15px;
    }

    .features-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 25px 15px;
        max-width: 100%;
    }

    .feature-item {
        display: flex;
        flex-direction: row; 
        text-align: left;
        justify-content: flex-start;
        align-items: center; 
        width: 100%;
        gap: 20px; 
        padding-left: 10px; 
    }

    .feature-item .feature-text-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
    }

    .feature-title {
        font-size: 16px;
        line-height: 22px;
    }

    .feature-desc {
        font-size: 13px;
        line-height: 18px;
    }

    .feature-icon-box i {
        font-size: 35px;
    }
}