/*
Theme Name: Hello Elementor Child
Theme URI: https://yourwebsite.com
Description: Child Theme for Hello Elementor
Author: Ajay
Author URI: https://yourwebsite.com
Template: hello-elementor
Version: 1.0
*/


/* =====  new css start  ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

html {
    font-size: 16px; 
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    font-size: 16px; 
}

/* ===== HEADINGS SYSTEM ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* ===== PROPER SCALE (REM BASED) ===== */
h1 { font-size: 2.625rem; } 
h2 { font-size: 2.25rem; }  
h3 { font-size: 1.875rem; } 
h4 { font-size: 1.5rem; }   
h5 { font-size: 1.25rem; }  
h6 { font-size: 1rem; }   

/* ===== PARAGRAPH ===== */
p {
    font-size: 1rem; 
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ===== SPACING ===== */
section {
    padding: 3.75rem 0; 
}

/* ===== LIST ===== */
ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

li {
    margin-bottom: 0.5rem;
}

/* ===== LINK ===== */
a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* ===== BUTTON ===== */
button,
.btn {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
    border: none;
    cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    html {
        font-size: 14px; 
    }

    h1 { font-size: 2rem; }   
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; } 
    h4 { font-size: 1.25rem;} 
    h5 { font-size: 1.125rem;}
    h6 { font-size: 1rem; }   

    p {
        font-size: 0.95rem;
    }

    section {
        padding: 2.5rem 0;
    }
}
/* ===== NAQSH ADVANTAGES SECTION ===== */
.section {
  position: relative;
  padding: 100px 20px;
  counter-reset: section;
  background:white !important;
}

/* LINE */
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background:#f0eae1 !important;
  box-shadow: 0 0 20px rgba(15,76,92,0.2);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
}

/* ROW */
.row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
  position: relative;
  counter-increment: section;
}

/* DOT */
.row::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, #0f4c5c, #08343d);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(15,76,92,0.5);
}

/* IMAGE */
.img-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.5s;
}

.img-box img:hover {
  transform: scale(1.05);
}

/* CONTENT */
.content {
  position: relative;
  padding-top: 40px;
}

/* NUMBER */
.content::before {
  content: counter(section, decimal-leading-zero);
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 70px;
  font-family: 'Playfair Display';
  color: rgba(15,76,92,0.08);
}

/* TEXT */
.content h2 {
  font-family: 'Playfair Display';
  font-size: 34px;
  margin-bottom: 15px;
}

.content p {
  font-size: 16px;
  line-height: 1.8;
}

/* BUTTONS */
.btn-group {
  margin-top: 20px;
}

.btn {
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  margin-right: 10px;
}

.btn-explore {
  background: #0f4c5c;
  color: #fff;
}

.btn-book {
  border: 1px solid #0f4c5c;
  color: #0f4c5c;
}

/* REVERSE */
.row.reverse {
  flex-direction: row-reverse;
}

/* MOBILE */
@media (max-width:768px){

  .row {
    flex-direction: column !important;
    text-align: center;
  }

  .section::before,
  .row::after {
    display: none;
  }

  .btn-group {
    display: flex;
    gap: 10px;
  }

  .btn {
    flex: 1;
    text-align: center;
  }
}
.section {
  position: relative;
  padding: 120px 20px;
  counter-reset: section;
  background: linear-gradient(135deg, #f5efe6, #e8e2d9);
  overflow: hidden;
}

/* CENTER LINE FIX */

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #cbbfae, #0f4c5c, #cbbfae, transparent);
  box-shadow: 0 0 25px rgba(15,76,92,0.3);
  z-index: 0;
}

/* CONTAINER */
.container {
    max-width: fit-content; 
	margin: auto;
    position: relative;
    z-index: 2;
}

/* ROW */
.row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 140px;
  position: relative;
  counter-increment: section;
}

/*  DOT FIX */
.row::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, #0f4c5c, #08343d);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 25px rgba(15,76,92,0.6);
  z-index: 3;
}

/* IMAGE BIG FIX */
.img-box {
  flex: 1;
}

.img-box img {
  width: 100%;
  height: 450px;  
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.img-box img:hover {
  transform: scale(1.06);
}

/* CONTENT */
.content {
  flex: 1;
  position: relative;
  padding-top: 50px;
}

/* NUMBER */
.content::before {
  content: counter(section, decimal-leading-zero);
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 80px;
  font-family: 'Playfair Display';
  color: rgba(15,76,92,0.07);
}

/* TEXT */
.content h2 {
  font-family: 'Playfair Display';
  font-size: 38px;
  margin-bottom: 15px;
  color: #2c2c2c;
}

.content p {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
}

/* BUTTONS */
.btn-group {
  margin-top: 25px;
}

.btn {
  padding: 13px 28px;
  border-radius: 30px;
  text-decoration: none;
  margin-right: 12px;
  font-size: 14px;
  transition: 0.3s;
}

.btn-explore {
  background: #0f4c5c;
  color: #fff;
}

.btn-explore:hover {
  background: #082f36;
}

.btn-book {
  border: 1px solid #0f4c5c;
  color: #0f4c5c;
}

.btn-book:hover {
  background: #0f4c5c;
  color: #fff;
}

/* REVERSE */
.row.reverse {
  flex-direction: row-reverse;
}

/*  MOBILE FIX */
@media (max-width:768px){

  .section {
    padding: 60px 15px;
  }

  .row {
    flex-direction: column !important;
    text-align: center;
    gap: 25px;
  }

  .section::before,
  .row::after {
    display: none;
  }

  .img-box img {
    height: 260px;
  }

  .content::before {
    position: static;
    display: block;
    font-size: 40px;
    margin-bottom: 10px;
  }

  /* BUTTON INLINE */
  .btn-group {
    display: flex;
    gap: 10px;
  }

  .btn {
    flex: 1;
    text-align: center;
  }
}

.naqsh-advantages {
  position: relative;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
}

/* DARK OVERLAY */
.naqsh-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.naqsh-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.naqsh-subtitle {
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 10px;
  color: #d6d6d6;
}

.naqsh-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 60px;
}

/* GRID */
.naqsh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ITEM CARD */
.naqsh-item {
/*   display: flex; */
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s;
  text-align: left;
}

/* HOVER EFFECT */
.naqsh-item:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* ICON */
.naqsh-item .icon {
  font-size: 28px;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f4c5c, #08343d);
  border-radius: 50%;
  color: #fff;
}

/* TEXT */
.naqsh-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.naqsh-item p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
  .naqsh-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .naqsh-title {
    font-size: 30px;
  }

  .naqsh-grid {
    grid-template-columns: 1fr;
  }

  .naqsh-item {
    padding: 20px;
  }
}

/* room css start */
/* ===== TITLE ===== */
.luxr-title{
    text-align:center;
    padding:100px 20px 60px;
}

.luxr-title h1{
    font-family:'Playfair Display',serif;
    font-size:52px;
    position:relative;
    display:inline-block;
    margin-bottom:15px;
}

.luxr-title h1::before{
    content:"";
    width:80px;
    height:2px;
    background:#c9a97e;
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
}

.luxr-title p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:28px;
}

/* ===== SECTION ===== */
.luxr-rooms-wrap{
    padding:0 8% 100px;
}

/* ===== CARD ===== */
.luxr-card{
    position:relative;
    margin-bottom:120px;
}

/* ===== IMAGE ===== */
.luxr-img{
    width:70%;
    border-radius:25px;
    overflow:hidden;
}

.luxr-img img{
    width:100%;
    height:480px;
    object-fit:cover;
    display:block;
    border-radius:25px;
}

/* ===== CONTENT (MAIN FIX HERE) ===== */
.luxr-content{
    position:absolute;
    top:50%;
    right:0;
    transform:translateY(-50%);
    width:42%;  
    background:rgba(255, 255, 255, 0.85);
    backdrop-filter:blur(20px);
    padding:60px;
    border-radius:30px;
    box-shadow:0 30px 70px rgba(0,0,0,0.08);
    z-index:10;
}

/* REVERSE */
.luxr-reverse .luxr-img{
    margin-left:auto;
}
.luxr-reverse .luxr-content{
    left:0;
    right:auto;
}

/* ===== TEXT ===== */
.luxr-content h2{
    font-family:'Playfair Display',serif;
    font-size:36px;
    margin-bottom:20px;
    position:relative;
    padding-top:20px;
}

.luxr-content h2::before{
    content:"";
    width:60px;
    height:3px;
    background:#c9a97e;
    position:absolute;
    top:0;
    left:0;
}

.luxr-content p{
    color:#555;
    line-height:30px;
    margin-bottom:30px;
}

/* ===== BUTTON ===== */
.luxr-btn{
    display:inline-block;
    padding:14px 32px;
    background:#c9a97e;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.luxr-btn:hover{
    background:#111;
}

/* ===== HOVER ===== */
.luxr-card:hover .luxr-img img{
    transform:scale(1.05);
    transition:0.6s;
}

.luxr-card:hover .luxr-content{
    transform:translateY(-50%) translateX(-10px);
}

/* ===== MOBILE ===== */
@media(max-width:768px){

    .luxr-img{
        width:100%;
    }

    .luxr-img img{
        height:260px;
    }

    .luxr-content{
        position:relative;
        width:100%;
        transform:none;
        margin-top:-60px;
        padding:25px;
        border-radius:20px;
    }

    .luxr-content h2{
        font-size:22px;
    }
}

/* ===== TABLET ===== */
@media(min-width:769px) and (max-width:1024px){

    .luxr-content{
        width:50%;
        padding:30px;
    }

    .luxr-img img{
        height:350px;
    }
}
/*room  css end */
.wp-hotel-booking-page:not(.tp-themes-premium) .hb_single_room .room-single-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 53px;
/*     padding-top: 231px;  */
}
/* MAIN LAYOUT */
.custom-room-layout {
    list-style: none;
    margin-bottom: 40px;
}

/* TOP SECTION FLEX */
.room-top-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* LEFT GALLERY */
.room-gallery {
    width: 60%;
    max-height: 500px;
    overflow-y: auto;
}

.room-gallery img {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 6px;
}

/* RIGHT BOOKING FORM */
.room-booking-form {
    width: 40%;
    position: sticky;
    top: 20px;
    background: #ffffff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* DESCRIPTION */
.room-description-tabs {
    width: 100%;
    margin-top: 40px;
}
.btn-explore {
    background: #c9a97e!important;
    color: #fff;
}
.row::after {
   
	background: radial-gradient(circle, #c9a97e, #c9a97e) !important;
   
}

#hotel-booking-payment.hb-checkout-modern .hb-checkout-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 150px!important;
}
/* singale room   css start  */


/* =========================
   CART WRAPPER
========================= */
.hb-cart-modern {
    max-width: 1300px;
    margin: 40px auto;
    padding: 15px;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
}

/* =========================
   MAIN LAYOUT
========================= */
.hb-cart-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* LEFT SIDE */
.hb-cart-items-column {
    flex: 2;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    overflow-x: auto;
}

/* RIGHT SIDE */
.hb-cart-total-column {
    flex: 1;
}

.hb-cart-total-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 20px;
}

/* =========================
   TABLE STYLE
========================= */
.hb-cart-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.hb-cart-table thead {
    background: #111;
    color: #fff;
}

.hb-cart-table th {
    padding: 12px;
    font-size: 14px;
    text-align: left;
    white-space: nowrap;
}

.hb-cart-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    vertical-align: middle;
}

/* ROOM IMAGE */
.hb-room-thumb img {
    width: 70px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
}

/* ROOM TITLE */
.hb-cart-item-title a {
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

.hb-cart-item-title a:hover {
    color: #e74c3c;
}

/* REMOVE BUTTON */
.hb-cart-item-remove {
    display: inline-block;
    width: 26px;
    height: 26px;
    background: #ff4d4d;
    color: #fff;
    text-align: center;
    line-height: 26px;
    border-radius: 50%;
    font-weight: bold;
    text-decoration: none;
}

.hb-cart-item-remove:hover {
    background: #d63031;
}

/* INPUT */
.hb_room_number_edit {
    width: 60px;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
}

/* =========================
   SUMMARY BOX
========================= */
.hb-cart-total-title {
    font-size: 18px;
    margin-bottom: 15px;
}

.hb-cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.hb-cart-grand-total {
    font-size: 18px;
    font-weight: bold;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
}

/* BUTTON */
.hb-btn,
.hb-btn-checkout {
    display: block;
    width: 100%;
    padding: 12px;
    background: #111;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 15px;
    transition: 0.3s;
    font-weight: 600;
}

.hb-btn:hover,
.hb-btn-checkout:hover {
    background: #333;
}

/* EMPTY CART */
.hb-empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.hb-empty-cart-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* =========================
   EXTRA PACKAGES
========================= */
.hb-cart-extra-packages {
    margin-top: 10px;
    font-size: 13px;
    color: #555;
}

.hb-extra-packages-list {
    margin: 5px 0 0;
    padding-left: 15px;
}

/* =========================
   QUANTITY INPUT WRAP
========================= */
.hb-quantity-control {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .hb-cart-wrapper {
        flex-direction: column;
    }

    .hb-cart-total-box {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .hb-cart-table {
        min-width: 600px;
    }

    .hb-cart-modern {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hb-cart-table th,
    .hb-cart-table td {
        font-size: 12px;
        padding: 8px;
    }
}

/* =========================
   MAIN WRAPPER
========================= */
.hb-checkout-modern {
    max-width: 1200px;
    margin: 40px auto;
    padding: 15px;
    font-family: "Poppins", Arial, sans-serif;
    background: #fff;
    color: #111;
}

/* =========================
   2 COLUMN LAYOUT
========================= */
.hb-checkout-wrapper {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

/* LEFT COLUMN */
.hb-checkout-left-column {
    flex: 1.2;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 20px;
}

/* RIGHT COLUMN */
.hb-checkout-right-column {
    flex: 1;
}

/* ORDER BOX */
.hb-order-summary {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 20px;
    position: sticky;
    top: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* =========================
   TITLE STYLE
========================= */
.hb-order-summary-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
    border-bottom: 2px solid #c9a97e;
    padding-bottom: 8px;
}

/* =========================
   COUPON BOX
========================= */
.hb_coupon input[type="text"] {
    width: 65%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.hb_coupon button {
    padding: 10px 14px;
    background: #111;
    color: #c9a97e;
    border: 1px solid #c9a97e;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.hb_coupon button:hover {
    background: #c9a97e;
    color: #111;
}

/* =========================
   ORDER ITEMS
========================= */
.hb-order-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.hb-order-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.hb-order-item-qty {
    color: #c9a97e;
    font-weight: 700;
    margin-left: 5px;
}

.hb-order-item-meta {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.hb-meta-label {
    color: #111;
    font-weight: 600;
}

/* =========================
   EXTRA SERVICES
========================= */
.hb-order-extra-services {
    margin-top: 8px;
    font-size: 12px;
}

.hb-extra-services-list {
    margin: 5px 0 0;
    padding-left: 15px;
}

/* =========================
   PRICE STYLE
========================= */
.hb-order-item-price {
    font-weight: 700;
    color: #c9a97e;
    white-space: nowrap;
}

/* =========================
   SUMMARY ROWS
========================= */
.hb-order-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
}

.hb-order-total {
    font-size: 18px;
    font-weight: 700;
    border-top: 2px solid #c9a97e;
    margin-top: 10px;
    padding-top: 10px;
}

/* =========================
   PAYMENT METHODS
========================= */
.hb-checkout-right-column input[type="radio"] {
    accent-color: #c9a97e;
}

.hb-order-terms {
    margin-top: 15px;
    font-size: 13px;
}

.hb-order-terms a {
    color: #c9a97e;
    text-decoration: none;
}

/* =========================
   BUTTON (PLACE ORDER)
========================= */
.hb-btn-place-order {
    width: 100%;
    padding: 14px;
    background: #111;
    color: #c9a97e;
    border: 1px solid #c9a97e;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;
}

.hb-btn-place-order:hover {
    background: #c9a97e;
    color: #111;
}

/* =========================
   LOGIN NOTICE
========================= */
.hb-checkout-login-notice {
    background: #fff7ec;
    border-left: 4px solid #c9a97e;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 13px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .hb-checkout-wrapper {
        flex-direction: column;
    }

    .hb-order-summary {
        position: relative;
        top: auto;
    }
}

@media (max-width: 600px) {

    .hb-order-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .hb_coupon input[type="text"] {
        width: 100%;
        margin-bottom: 8px;
    }
}
.hb-thank-you-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.hb-message {
    background: #e6f7ee;
    padding: 15px;
    border-left: 5px solid #28a745;
    margin-bottom: 20px;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.booking_item_table {
    width: 100%;
    border-collapse: collapse;
}

.booking_item_table th,
.booking_item_table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.grand-total {
    font-weight: bold;
    background: #eaf4ff;
}

#booking-customer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.customer-details,
.booking-notes {
    padding: 20px;
    border-radius: 8px;
}

.customer-details {
    background: #f5f5f5;
}

.booking-notes {
    background: #fff8e1;
}

.hb-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}
/* Page Background */


/* Main Container */
#booking-details,
#booking-items,
#booking-customer {
    max-width: 1100px;
    margin: 20px auto;
}

/* Success Message */
.hb-message {
    max-width: 1100px;
    margin: 20px auto;
    background-color:white!important;
	color:black!important;
    padding: 18px 25px;
    border-radius: 10px;
    font-size: 16px;
}

/* Booking Header */
.booking-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.booking-data-number {
    font-size: 22px;
    font-weight: 600;
}

.booking-date {
    color: #777;
}

/* Table Styling */
.booking_item_table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.booking_item_table th {
    background: #f1f5f9;
    padding: 14px;
    text-align: left;
    font-weight: 600;
}

.booking_item_table td {
    padding: 14px;
    border-bottom: 1px solid #eee;
}

.booking_item_table tr:hover {
    background: #fafafa;
}

/* Total Rows */
.booking_item_table tr:last-child td {
    font-weight: bold;
    background: #eaf4ff;
}

/* Customer Section */
#booking-customer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Customer Box */
.customer-details {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.customer-details li {
    list-style: none;
    margin-bottom: 10px;
}

.customer-details label {
    font-weight: 600;
    display: inline-block;
    width: 140px;
}

/* Notes */
.booking-notes {
    background: #fff8e1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* Payment Instruction */
#instruction {
    margin-top: 20px;
    background: #eef4ff;
    padding: 20px;
    border-left: 5px solid #007bff;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    #booking-customer {
        grid-template-columns: 1fr;
    }

    .booking-data {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
body .hotel-booking-search, body .hotel-booking-rooms-search {
    width: auto;
    max-width: 100%;
/*     padding-top: 142px !important; */
	padding-bottom:200px !important:
}
/* SECTION WRAPPER */
.hb_related_other_room {
    padding: 60px 15px;
    max-width:auto;
    margin: auto;
}

/* TITLE */
.hb_related_other_room .title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #1f2d24;
    font-weight: 600;
}

/* OWL CONTAINER FIX */
.hb_related_other_room .rooms {
    width: 100% !important;
}

/* GAP FIX (MOST IMPORTANT) */
.hb_related_other_room .owl-item {
    padding: 18px !important;
    box-sizing: border-box;
}

/* ROOM CARD */
.hb_related_other_room .hb_room {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.hb_related_other_room .hb_room:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* IMAGE */
.hb_related_other_room .hb_room img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.4s;
}

/* IMAGE ZOOM */
.hb_related_other_room .hb_room:hover img {
    transform: scale(1.05);
}

/* CONTENT */
.hb_related_other_room .summary {
    padding: 20px;
    text-align: center;
}

/* TITLE */
.hb_related_other_room .summary h3,
.hb_related_other_room .summary h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1f2d24;
}

/* PRICE */
.hb_related_other_room .price {
    color: #6a8f7b;
    font-weight: 600;
    margin: 10px 0;
}

/* BUTTON */
.hb_related_other_room .hb_view_more {
    display: inline-block;
    padding: 10px 18px;
    background: #1f2d24;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.hb_related_other_room .hb_view_more:hover {
    background: #3a5a4a;
}

/* NAV BUTTONS */
.hb_related_other_room .navigation .prev,
.hb_related_other_room .navigation .next {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1f2d24;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rooms .hb_room .summary .price {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-right: 63px !important;
    padding-bottom: 22px!important;
}
.room-container .hotel-booking-rooms-search {
    margin-bottom: 20px;
    padding-top: 186px!important;
	padding-bottom: 156px!important;

}

/*singale room css  end */

ul.rooms.tp-hotel-booking {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 25px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

/* CARD FIX WIDTH */
ul.rooms.tp-hotel-booking li.hb_room {
    width:auto!important;
    background: #fff !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    transition: 0.3s ease !important;
    position: relative !important;
    display: block !important;
}

ul.rooms.tp-hotel-booking li.hb_room:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.15) !important;
}

/* IMAGE FIX */
ul.rooms.tp-hotel-booking .media {
    width: 100% !important;
    height: 240px !important;
    overflow: hidden !important;
}

ul.rooms.tp-hotel-booking .media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: 0.4s ease !important;
}

/* TITLE */
ul.rooms.tp-hotel-booking .title {
    padding: 15px !important;
}

ul.rooms.tp-hotel-booking .title h4 {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}

/* PRICE */
ul.rooms.tp-hotel-booking .price {
    padding: 0 15px 15px !important;
}

/* FEATURED BADGE */
ul.rooms.tp-hotel-booking .feature {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    background: #efcf55 !important;
    color: #fff !important;
    padding: 5px 10px !important;
    font-size: 12px !important;
    border-radius: 6px !important;
    z-index: 10 !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    ul.rooms.tp-hotel-booking li.hb_room {
        width: calc(50% - 15px) !important;
    }
}

@media (max-width: 600px) {
    ul.rooms.tp-hotel-booking li.hb_room {
        width: 100% !important;
    }
}.btn-book:hover {
    background: #020202!important;
    color: #fff;
}


/* style .css start */
/* Premium Testimonials Grid Style */
.testimonials { padding: 4rem 1rem; font-family: 'Poppins', sans-serif; }
.container { max-width: 1100px; margin: auto; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

.card {
    background: #fff;
    padding: 2.2rem;
    border-radius: 18px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04), 0 2px 10px rgba(0,0,0,0.03);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s cubic-bezier(.22,1,.36,1) forwards;
}

.card::before {
    content: ""; position: absolute; top: 0; left: 0; height: 4px;
    width: 50px; background: #ebba19; border-radius: 20px; transition: 0.4s ease;
}

.card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 25px 60px rgba(0,0,0,0.08); }
.card:hover::before { width: 100%; }

.card::after {
    content: ""; position: absolute; inset: 0; background: #ebba19;
    opacity: 0; transition: 0.4s ease; z-index: 0;
}
.card:hover::after { opacity: 0.05; }

.card p { position: relative; z-index: 2; color: #444; line-height: 1.75; margin-bottom: 10px; }
.name { margin-top: 1.6rem; font-weight: 600; position: relative; z-index: 2; }
.role { font-size: 0.85rem; color: #777; position: relative; z-index: 2; }

.card.featured { grid-column: span 2; padding: 3rem; }

@media(max-width: 768px) { .card.featured { grid-column: span 1; } }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Animation Delays */
.card:nth-child(1){animation-delay:0.1s;}
.card:nth-child(2){animation-delay:0.2s;}
.card:nth-child(3){animation-delay:0.3s;}
.card:nth-child(4){animation-delay:0.4s;}

