* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #ecfdf5, #e5f6f6);
    /* padding: 1rem; */
    color: #333;
    line-height: 1.5;
}

.container {
    max-width: 90%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 1rem 1rem;
}

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    padding: 2rem;
}

.section-title {
    color: #632240;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

/* nav bar style start */
.online-navbar {
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.online-nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.online-nav-brand h1 {
    color: #632240;
    font-size: 1.5rem;
    margin-bottom: 0px;
    font-weight: 700;
}

.online-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #632240;
}

.online-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin-bottom: 0px;
}

.online-nav-link {
    color: #632240;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

a:hover
{
    color: #632240;
    text-decoration: none;
    cursor: pointer;
}

.online-dropdown {
    position: relative;
}

.online-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem;
    z-index: 1000;
}

.online-dropdown-content.show {
    display: block;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.login-form input, .login-form textarea {
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 0.9rem;
}

.login-form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#loginotp {
    letter-spacing: 1em;
}

#loginotp::placeholder {
    letter-spacing: 0em; 
}

input[readonly] {
    background-color: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
    border: 1px solid #d1d5db;
}

.account-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.account-link {
    color: #632240;
    text-decoration: none;
    padding: 0px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.account-link:hover {
    background-color: #f3f4f6;
    color: #632240;
    text-decoration: none;
}

.account-link i {
    width: 20px;
}
/* nav bar style end */


/* Loader Overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(0.1rem);
}

/* Loader Styles */
.loader {
    width: 50px;
    height: 50px;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #632240;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Loader animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* property info start */
.details-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.details-card-booking {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.datetime-card {
    /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
    background: linear-gradient(135deg, #f5f7fa 0%, #63224080 100%);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.datetime-card:hover {
    transform: translateY(-5px);
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.feature-badge {
    background: linear-gradient(135deg, #632240c2 0%, #632240 100%);
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    color: white;
    padding: 0.6rem 0.6rem;
    border-radius: 10px;
    font-size: 1.0rem;
    font-weight: 600;
    animation: bounceIn 0.6s ease-out backwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-icon {
    width: 50px;
    height: 50px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #6322408c 0%, #632240 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.detail-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #632240;
    margin-bottom: 0.5rem;
}

.detail-text {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.datetime-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #632240;
}

.datetime-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.datetime-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #632240;
    margin: 0.3rem 0;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.price-card {
    /* background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); */
    background: linear-gradient(135deg, #632240d1 0%, #8c2c5c 100%);
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 8px 30px rgba(30, 60, 114, 0.3);
    position: sticky;
    top: 100px;
    text-align: center;
}

.price-header h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.rating-section {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    /* display: flex; */
    align-items: center;
    gap: 1rem;
}

.rating-text {
    font-size: 1.5rem;
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

.rating-text:hover {
    color: white;
    text-decoration: underline;
}
/* property info end */

/* simple gallery start */
.gallery-thumb-one {
    border-radius: 10px;
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.gallery-thumb-two {
    border-radius: 10px;
    height: 350px;
    object-fit: fill;
    width: 100%;
}
/* simple gallery end */

/* silder gallery start */
.gallery-grid-mr {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 240px);
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 15px; */
}

.gallery-item-mr {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    animation: fadeInScale 0.8s ease-out backwards;
}

.gallery-item-main-mr {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    animation: fadeInScale 0.8s ease-out backwards;
}

.gallery-item-main-mr img {
    width: 100%;
    height: 260px;
    object-fit: fill;
    transition: transform 0.5s ease;
}

.gallery-item-main-mr:hover img {
    transform: scale(1.1);
}

.gallery-item-mr img {
    width: 100%;
    height: 240px;
    object-fit: fill;
    transition: transform 0.5s ease;
}

.gallery-item-mr:hover img {
    transform: scale(1.1);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-main-mr {
    grid-column: 1 / 3;
    grid-row: 1 / 1;
}

.carousel-wrapper-mr {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-container-mr {
    position: relative;
    width: 100%;
    height: 260px;
}

.carousel-image-mr {
    position: absolute;
    width: 100%;
    height: 260px;
    object-fit: fill;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-image-mr.active {
    opacity: 1;
}
/* silder gallery end */

/* image >= 4 slide design start */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 15px; */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    animation: fadeInScale 0.8s ease-out backwards;
}

.gallery-item-main {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    animation: fadeInScale 0.8s ease-out backwards;
}
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: fill;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-main img {
    width: 100%;
    height: 420px;
    object-fit: fill;
    transition: transform 0.5s ease;
}

.gallery-item-main:hover img {
    transform: scale(1.1);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 420px;
}

.carousel-image {
    position: absolute;
    width: 100%;
    height: 420px;
    object-fit: fill;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-wrapper:hover .carousel-overlay {
    transform: translateY(0);
}
/* image >= 4 slide design end */

/* slide button start */
.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* background: rgba(255, 255, 255, 0.2); */
    background: rgb(180 166 166 / 99%);
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.carousel-wrapper:hover .carousel-btn {
    opacity: 1;
}

.carousel-wrapper-mr:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    /* background: rgba(255, 255, 255, 0.4); */
    background: rgb(180 166 166 / 99%);
    transform: scale(1.1);
}

.carousel-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}
/* slide button end */

/* booking step start */
.section-header {
    margin-bottom: 3rem;
}

.complete-title {
    font-size: 2rem;
    font-weight: 800;
    color: #632240;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.steps-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #999;
    transition: all 0.4s ease;
    border: 4px solid #e9ecef;
}

.step-item.active .step-circle {
    background: linear-gradient(135deg, #632240d1 0%, #8c2c5c 100%);
    color: white;
    border-color: #632240d1;
    animation: scaleIn 0.5s ease-out;
}

.step-item.complete .step-circle {
    background: linear-gradient(135deg, #F50 0%, #FF894E 100%);
    color: white;
    border-color: #F50;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

.step-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #999;
}

.step-item.active .step-label {
    color: #632240d1;
}

.step-item.complete .step-label {
    color: #F50;
}

.step-line {
    flex: 1;
    height: 4px;
    background: #e9ecef;
    margin: 0 -10px;
    margin-bottom: 2rem;
}

.booking-step-content {
    max-width: 1200px;
    margin: 1rem auto 0;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.step-card {
    background: #dac1cd38;
    border-radius: 16px;
    padding: 1rem;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #632240;
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: block;
}

.input-with-icon {
    position: relative;
    transform: scale(1); 
    transition: transform 0.2s;
}

.input-with-icon:hover {
    position: relative;
    transform: scale(1.02); 
    transition: transform 0.2s;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #632240;
    font-size: 1.1rem;
}

.form-control {
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 2px solid #63224029;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: auto !important;
}

.form-control:focus {
    border-color: #632240;
    box-shadow: 0 0 0 4px #a2678180;
}

.guest-form textarea {
    padding: 1rem;
    border: 2px solid #63224029;
    border-radius: 10px;
}

.guest-count-selector {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
}

.guest-counter {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 30px;
}
/* booking step end */

/* button start */
/* .btn-primary {
    background-color: #632240;
    background: linear-gradient(135deg, #632240c2 0%, #632240 100%);
    border-color: #632240 !important;
    color: white;
    cursor: pointer;
}

.btn-primary:hover {
 background-color: #632240; 
    background: linear-gradient(135deg, #632240c2 0%, #632240 100%);
    border-color: #632240;
}

.btn-primary:focus{
    box-shadow: 0 0 10px 2px #632240;
} */
.btn-primary {
    background: linear-gradient(135deg, #F50 0%, #FF894E 100%);
    border-color: #F73 !important;
    color: white;
    cursor: pointer;
    border-radius: 0.50rem !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F50 0%, #FF894E 100%);
    border-color: #F73;
}

.btn-primary:focus{
    box-shadow: 0 0 10px 2px #F73;
}

.btn-primary:disabled{
    cursor: not-allowed;
}
/* button end */

/* room error message */
.error-card {
    text-align: center;
    /* padding: 1rem 1rem; */
    /* background: #fef2f2; */
    /* border-radius: 0.5rem; */
    /* border: 1px solid #fee2e2; */
}

.error-icon {
    font-size: 3rem;
    color: #dc2626;
    /* margin-bottom: 1rem; */
}

.error-title {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.error-message {
    color: #7f1d1d;
    margin-bottom: 2rem;
    line-height: 1.6;
}
/* error message end */

/* check-box start */
.checkbox-group {
    margin-bottom: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    user-select: none;
    margin-bottom: 1rem;
    font-weight: 500;
}

.checkbox-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
    accent-color: #632240;
    cursor: pointer;
}

.checkbox-text {
    color: #4b5563;
}
/* check-box end */

/* room section start */
.room-option {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    background: #f9fafb;
}

.room-option:hover {
    border-color: #632240;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.room-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.room-title {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.room-description {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.room-price {
    font-weight: 600;
    color: #632240;
}

.room-gst{
    color: #dc2626;
    font-size: 12px;
    margin: 0px;
}

.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: #632240;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}
/* room section end */

/* extra-mattress start */ 
.extra-mattress {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.extra-mattress-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.extra-mattress-price {
    color: #632240;
    font-size: 0.875rem;
    margin-left: 1rem;
    margin-bottom: 0.5rem;
}

.extra-mattress-controls {
    padding: 1rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
}

.extra-mattress-control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.extra-mattress-control-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}
/* extra-mattress end */

/**  =====================
      Select-2 css start
==========================  **/
.select2-container--default:focus {
  border-color: #632240 !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  /* border-color: transparent transparent #fff transparent; */
  border-color: transparent transparent #000 transparent;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #92486a !important;
}

.select2-container--default .select2-selection--multiple {
  padding: 3px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #92486a !important;
  border: 1px solid #92486a !important;
  padding: 5px 15px;
  color: #fff !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice span {
  color: #fff !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #92486a !important;
}

.select2-container--default .select2-selection--single {
  color: #fff !important;
  height: auto;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  /* background-color: #4680ff;
    color: #fff; */
  padding: 8px 30px 8px 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 10px;
  right: 15px;
}

/* .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #fff transparent transparent transparent; } */
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #000 transparent transparent transparent;
}

/*===== Select-2 css ends =====*/

/* invoice start */ 
.invoice-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.invoice-section-title {
    color: #632240;
    margin-bottom: 1rem;
    /* font-size: 1.5rem; */
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.invoice-label{
    margin-bottom: 0px;
    /* margin-bottom: 0.5rem; */
    color: #374151;
    font-weight: 500;
}

.room-item {
    padding: 1rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.room-item h5 {
    color: #632240;
    margin-bottom: 0.5rem;
}

.room-item p {
    margin: 0.25rem 0;
}

.room-total {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e2e8f0;
    font-weight: bold;
    color: #632240;
}

.additional-info p {
    margin: 0.5rem 0;
    color: #4b5563;
}

.total-section {
    /* background: #632240; */
    background: #FFF0E8;
    color: #F50;
}

.total-section h4 {
    color: #F50;
    border-bottom-color: #F50;
}

.total-amount {
    text-align: center;
}

.grand-total {
    font-size: 2rem;
    font-weight: bold;
    /* margin: 1rem 0; */
    margin: 0px;
}

.room-table {
    width: 100%;
    border-collapse: collapse;
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
}

.room-table th,
.room-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    white-space: nowrap;
}

.room-table th {
    background: #FFF0E8;
    color: #F50;
    font-weight: 500;
    white-space: nowrap;
}

.room-table tbody tr:hover {
    background: #f1f5f9;
}

.room-table tfoot {
    background: #e2e8f0;
    font-weight: 600;
}

.room-table tfoot td {
    border-bottom: none;
    padding-top: 5px;
    padding-bottom: 5px;
}

.room-details {
    width: 100%;
    overflow-x: auto;
}
/* invoice end */

/* success Page Styles start */

.success-section {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.confirmation-message {
    text-align: center;
    padding: 0px;
}

.confirmation-icon {
    font-size: 4rem;
    color: #632240;
    /* margin-bottom: 1rem; */
}

.confirmation-message h2 {
    color: #632240;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.confirmation-message p {
    color: #64748b;
    font-size: 1.1rem;
}

.status-pending {
    color: #d97706 !important;
    font-weight: 700;
}

.notice-content {
    background: linear-gradient(135deg, #f5f7fa 0%, #63224080 100%);;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
}

.notice-box {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.notice-icon {
    font-size: 2.5rem;
    margin-top: -20px;
}

.notice-text h3 {
    color: #d97706;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.notice-text p {
    color: #92400e;
    font-weight: 500;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-info .info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-info h6 {
    color: #632240;
    margin-bottom: 0.25rem;
    font-weight: bold;
}

.container-success {
    max-width: 70%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 1rem 1rem;
}

.success-info-icon {
    color: #632240;
    font-size: 1.25rem;
    margin-top: -40px;
}
/* success Page Styles end */

/* Booking List Styles start */
.booking-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-item {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    overflow: hidden;
}

.booking-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #059669, #34d399);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-item:hover::before {
    opacity: 1;
}

.booking-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.booking-item.cancelled {
    background: linear-gradient(145deg, #fff5f5, #fef2f2);
    border-color: rgba(220, 38, 38, 0.1);
}

.booking-item.cancelled::before {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.booking-item.partial_pending::before, .booking-item.pending::before {
    background: linear-gradient(90deg, rgb(255, 110, 0), rgb(227, 162, 112));
}

.booking-view{
    cursor: pointer;
}

.booking-details h3 {
    color: #632240;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.room-status {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.room-status.confirmed {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #86efac;
}

.room-status.confirmed::before {
    content: "✔";
    color: #15803d;
    font-size: 1.2em;
}

.room-status.pending, .room-status.partial_pending {
    background: #eade78a8;
    color: #735d0d;
    border: 1px solid #eade78a8;
}

.room-status.pending::before, .room-status.partial_pending::before {
    content: "•";
    color: #735d0d;
    font-size: 1.2em;
}

.room-status.cancelled {
    background: #fecaca;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.room-status.cancelled::before {
    content: "×";
    color: #991b1b;
    font-size: 1.2em;
    font-weight: bold;
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.3rem;
}

.booking-info.cancelled{
    text-decoration: line-through;
}

.booking-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.booking-status.confirmed {
    background: #d1fae5;
    color: #632240;
}

.booking-status.cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.booking-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn-review, .btn-cancel, .btn-pay-now {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-review {
    background: #632240;
    color: white;
}

.btn-review:hover:not(:disabled) {
    background: #632240;
    color: white;
}

.btn-cancel {
    /* background: #fee2e2;
    color: #991b1b; */
    background: linear-gradient(90deg, #f87171, #ef4444);
    color: #FFFFFF;
}

.btn-cancel:hover:not(:disabled) {
    /* background: #fecaca; */
    /* background: #991b1b; */
    background: linear-gradient(90deg, #f87171, #ef4444);
    color: #FFFFFF;
}

.btn-pay-now
{
    background: #446388fc;
    color: white;
    font-weight: 700;
}

.btn-pay-now:hover:not(:disabled) {
    background: #224063;
    color: white;
    font-weight: 700;
}

.btn-review:disabled, .btn-cancel:disabled, .btn-pay-now:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    font-weight: 700;
}

.cancelled-message {
    color: #991b1b;
    font-size: 0.875rem;
    font-style: italic;
}

.load-more-container {
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.load-more-btn {
    background: linear-gradient(135deg, rgb(255, 85, 0) 0%, rgb(255, 137, 78) 100%);;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, rgb(255, 85, 0) 0%, rgb(255, 137, 78) 100%);
    border: 2px solid rgb(255, 85, 0);
}

.loading-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
}

.load-more-btn.loading .loading-spinner {
    display: block;
    animation: spin 1s linear infinite;
}

/* Booking List Styles end */

/* error section cancel booking start */
.details-section {
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
}

.error-section {
    background-color: #fef2f2;
    border-color: #dc2626 !important;
    margin-bottom: 2rem;
}

.error-message {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    color: #991b1b;
}

.error-message i {
    font-size: 2rem;
    flex-shrink: 0;
}

.error-content h3 {
    color: #991b1b !important;
    margin-bottom: 1.5rem;
    border-bottom: none !important;
    font-size: 1.25rem;
    font-weight: 700;
}

.error-content p {
    margin-bottom: 1rem;
}

.cancellation-contact-info {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    /* margin-top: 1rem; */
}

.cancellation-contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #991b1b;
}

.cancellation-contact-info span {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
}

.cancellation-contact-info i {
    font-size: 1rem;
    color: #632240;
}
/* error section cancel booking end */

/* package-button */
.package-button {
    background-color: #8c2c5c;
    color: #ffffff;
    padding: 10px 10px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(140, 44, 92, 0.3);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.package-button:hover {
    transform: translateY(-2px); /* Lifts the button slightly */
    box-shadow: 0 6px 16px rgba(140, 44, 92, 0.4);
}

/* media start */
@media (max-width: 768px) {
    .online-menu-toggle {
        display: block;
    }

    .online-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .online-nav-menu.active {
        display: flex;
        z-index: 9999;
    }

    .online-dropdown-content {
        position: static;
        box-shadow: none;
        padding: 1rem 0;
    }

    .online-nav-brand h1 {
        font-size: 1.2rem;
    }

    .complete-title {
        font-size: 2rem;
    }

    .steps-progress {
        overflow-x: auto;
    }

    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .invoice-section {
        padding: 1rem;
    }

    .room-table {
        font-size: 0.875rem;
    }

    .room-table th,
    .room-table td {
        padding: 0.75rem;
    }

    .container-success {
        max-width: 90%;
    }

    .booking-details h3 {
        align-items: normal;
        flex-direction: column;
    }

    .room-status{
        margin-left: auto;
    }

    .package-button{
        margin-left: auto;
    }
}

@media (max-width: 992px) {
    .gallery-grid-mr {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(1, 200px);
    }

    .gallery-item-mr img {
        height: 150px;
    }

    .gallery-item img {
        height: 150px;
    }

    .gallery-main-mr {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 150px);
    }

    .gallery-main {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .gallery-item-main img {
        height: 150px;
    }

    .carousel-wrapper {
        height: 150px;
    }

    .carousel-container {
        height: 150px;
    }
}

@media (max-width: 991px) {
    .online-menu-toggle {
        display: block;
    }

    .online-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .online-nav-menu.active {
        display: flex;
        z-index: 9999;
    }

    .online-dropdown-content {
        position: static;
        box-shadow: none;
        padding: 1rem 0;
    }

    .online-nav-brand {
        display: flex;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
}

@media (min-width: 990px){
    .online-nav-brand {
        width: 100%;
    }

    .online-nav-menu {
        gap: 1rem;
    }
}

@media (min-width: 1050px){
    .online-nav-brand {
        width: 100%;
    }

    .online-nav-menu {
        gap: 1rem;
    }
}

@media (min-width: 1050px){
    .online-nav-brand {
        width: 100%;
    }
}

@media (min-width: 1350px){
    .online-nav-brand {
        width: 100%;
    }

    .online-nav-menu {
        gap: 2rem;
    }
}

@media (max-width: 769px) {
    .gallery-thumb-one {
        height: 160px;
        object-fit: fill;
    }
    .gallery-thumb-two {
        height: 160px;
    }
}

@media (min-width: 1024px){
    .price-header h4 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1100px){
    .price-header h4 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 431px) {
    .card{
        padding: 0.7rem !important;
    }
    .room-option{
        padding: 0.5rem !important;
    }
    .complete-title{
        font-size: 1.5rem !important;
    }
    .details-card-booking{
        padding: 0.5rem !important;
    }
}

@media (max-width: 380px){
    .price-header h4 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}
/* media end */