/* arun */
/* --- 1. OVERALL ALIGNMENT & FONT --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hr-online-services {
    width: 100%;
    max-width: 1000px;
}

/* --- 2. HEADER ALIGNMENT & FONT --- */
.hr-header {
    text-align: center;
    margin-bottom: 50px;
}

.hr-header h2 {
    color: #8c1c13; 
    /* Exact font for the main title */
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 10px 0;
}

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 350px;
    margin: 0 auto;
}

.ornament::before,
.ornament::after {
    content: "";
    height: 1px;
    background-color: #333;
    flex-grow: 1;
}

.ornament span {
    margin: 0 10px;
    font-size: 1.2rem;
    color: #333;
}

/* --- 3. DIAMOND GRID ALIGNMENT --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 30px 20px;
    /* Centers the cards within the grid cells */
    justify-items: center;
    align-items: center;
}

/* Places the cards in the diamond shape */
.card-top { grid-column: 2; grid-row: 1; }
.card-left { grid-column: 1; grid-row: 2; }
.card-right { grid-column: 3; grid-row: 2; }
.card-bottom { grid-column: 2; grid-row: 3; }

/* --- 4. CARD ALIGNMENT, HOVER & FONTS --- */
.service-card {
    background-color: #ffffff;
    width: 320px;
    min-height: 240px;
    padding: 40px 30px;
    
    /* Centers all text and elements inside the card */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
    border-radius: 40px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: background-color 0.4s ease, transform 0.3s ease;
    cursor: pointer;
}

.service-card h3 {
    color: #8c1c13;
    /* Exact font for card titles */
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.service-card p {
    color: #777777;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 25px;
    transition: color 0.4s ease;
}

.service-card .read-more {
    color: #111;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    border-bottom: 2px solid #111;
    padding-bottom: 2px;
    transition: color 0.4s ease, border-color 0.4s ease;
}

/* Hover Effects */
.service-card:hover {
    background-color: #0f1f4c;
    transform: translateY(-5px); 
}

.service-card:hover h3,
.service-card:hover .read-more {
    color: #ffffff;
}

.service-card:hover .read-more {
    border-bottom-color: #ffffff;
}

.service-card:hover p {
    color: #d1d5db; 
}

/* --- 5. RESPONSIVE ALIGNMENT --- */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .card-top, .card-left, .card-right, .card-bottom {
        grid-column: span 1;
        grid-row: auto;
    }
}

@media (max-width: 650px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .card-top, .card-left, .card-right, .card-bottom {
        grid-column: 1;
    }
}

/* ==================================================
   CUSTOM INSTRUCTIONS MODAL (Conflict-Free) 
   ================================================== */
.hr-instruction-modal .hr-modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hr-instruction-modal .hr-modal-header {
    border-bottom: 2px solid #8c1c13; /* Dark red border */
    padding: 20px 30px;
    position: relative;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.hr-instruction-modal .hr-modal-title {
    color: #8c1c13;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin: 0;
}

/* Position the close 'X' button properly */
.hr-instruction-modal .hr-btn-close {
    position: absolute;
    right: 20px;
    top: 25px;
}

.hr-instruction-modal .hr-modal-body ul {
    list-style-type: disc;
    padding-left: 25px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.hr-instruction-modal .hr-modal-body ul li {
    margin-bottom: 12px;
    text-align: justify;
}

.hr-instruction-modal .hr-modal-body ul li:last-child {
    margin-bottom: 0;
}

.hr-instruction-modal .hr-btn-proceed {
    background-color: #8c1c13;
    color: #ffffff;
    padding: 12px 50px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    text-decoration: none;
}

.hr-instruction-modal .hr-btn-proceed:hover {
    background-color: #630000;
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- PHONE BOOKING HIGHLIGHT BOX --- */
.hr-contact-highlight {
    background-color: #fdf3f3; /* Light red background */
    color: #8c1c13; /* Theme dark red text */
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 25px;
    border: 1px solid #f5c6c6;
}

.hr-contact-highlight strong {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

/* bookink room */

/* ==================================================
   ROOM AVAILABILITY SECTION (Conflict-Free)
   ================================================== */

.hr-availability-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

/* Header Styling */
.hr-main-title {
    text-align: center;
    color: #8c1c13;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hr-subtitle {
    text-align: center;
    color: #666666;
    font-size: 1rem;
    margin-bottom: 40px;
}

.hr-section-title {
    text-align: center;
    color: #8c1c13;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Month Block */
.hr-month-block {
    margin-bottom: 50px;
}

.hr-month-title {
    color: #8c1c13;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hr-month-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin-bottom: 25px;
}

/* Grid/Flex Layout for Cards */
.hr-date-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* This centers the last row automatically */
    gap: 15px;
}

/* Individual Card Styling */
.hr-date-card {
    background-color: #52a057; /* Match the green from the image */
    color: #ffffff;
    width: 110px;
    max-height: 173px;
    border-radius: 8px;
    padding: 1px 6px 4px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hr-date-card:hover {
    transform: translateY(-5px);
    background-color: #468e4a;
}

.hr-day-name {
    font-size: 0.95rem;
    font-weight: 700;
}

.hr-date-num {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin: -4px 0;
}

.hr-month-year {
    font-size: 0.75rem;
    margin-bottom: 0px;
    font-weight: 500;
}

.hr-avail-box {
    background-color: #3b7c40; /* Darker green for the bottom tag */
    width: 100%;
    padding: 5px 0;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .hr-date-grid {
        gap: 10px;
    }
    .hr-date-card {
        width: calc(33% - 10px); /* 3 items per row on mobile */
    }
}

/* booking time */

/* ==================================================
   TIME SELECTION UI (Conflict-Free)
   ================================================== */

.hr-ts-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 50px 40px;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    font-family: 'Inter', sans-serif;
}

/* Headers */
.hr-ts-date {
    color: #8c1c13;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 15px 0;
}

.hr-ts-title {
    color: #6a7c8a; /* Muted Slate Blue */
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 15px 0;
}

.hr-ts-subtitle {
    text-align: center;
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Duration Selector Dropdown */
.hr-ts-duration-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.hr-ts-duration-label {
    font-weight: 700;
    color: #333333;
    display: block;
    margin-bottom: 12px;
    font-size: 1rem;
}

/* Wrapper to position the custom arrow */
.hr-ts-select-wrapper {
    position: relative;
    display: inline-block;
}

.hr-ts-duration-select {
    appearance: none; /* Removes default browser styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fcfcfc;
    border: 1px solid #8c1c13;
    color: #333333;
    padding: 10px 45px 10px 20px; /* Extra padding on right for the arrow */
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: background-color 0.2s;
}

.hr-ts-duration-select:hover, 
.hr-ts-duration-select:focus {
    background-color: #f4e8e8;
}

/* Custom Red Dropdown Arrow */
.hr-ts-select-wrapper::after {
    content: "";
    font-size: 0.75rem;
    color: #8c1c13;
    position: absolute;
    right: 1px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Ensures clicking the arrow still opens the menu */
}

/* AM / PM Block Titles */
.hr-ts-period-title {
    color: #6a7c8a;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 20px 0;
}

/* Grid Layout for Time Slots */
.hr-ts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

/* Individual Time Slot Buttons */
.hr-ts-slot {
    border: none;
    border-radius: 6px;
    height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.hr-ts-time {
    font-weight: 700;
    font-size: 1rem;
}

.hr-ts-count {
    font-size: 0.75rem;
    margin-top: 6px;
    font-weight: 400;
}

/* Available Status (Green) */
.hr-ts-avail {
    background-color: #318235;
    cursor: pointer;
}

.hr-ts-avail:hover {
    transform: translateY(-3px);
    background-color: #276b2a;
    box-shadow: 0 4px 10px rgba(49, 130, 53, 0.3);
}

/* Past / No Rooms Status (Grey) */
.hr-ts-past {
    background-color: #e0e0e0;
    cursor: not-allowed;
}

/* Legend */
.hr-ts-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}

.hr-ts-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555555;
}

.hr-ts-legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.hr-ts-color-avail {
    background-color: #318235;
}

.hr-ts-color-past {
    background-color: #e0e0e0;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .hr-ts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .hr-ts-wrapper {
        padding: 30px 20px;
        margin: 20px;
    }
    .hr-ts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .hr-ts-date { font-size: 1.8rem; }
    .hr-ts-title { font-size: 1.5rem; }
}

@media (max-width: 400px) {
    .hr-ts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* booking process */

/* ==================================================
   ROOM BOOKING SELECTION SECTION (Conflict-Free)
   ================================================== */

.hr-rb-wrapper {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

/* Header Area */
.hr-rb-header {
    text-align: center;
    margin-bottom: 30px;
}

.hr-rb-header h2 {
    color: #8c1c13;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.hr-rb-meta {
    color: #7a8a9a; /* Muted slate gray */
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
}

/* Main Card Layout */
.hr-rb-card {
    display: flex;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    align-items: stretch;
}

/* 1. Image Section */
.hr-rb-image {
    width: 280px;
    flex-shrink: 0;
}

.hr-rb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 2. Building Name Section */
.hr-rb-info {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    background-color: #ffffff;
}

.hr-rb-info h3 {
    color: #111111;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
}

/* 3. Green Options Panel */
.hr-rb-options-panel {
    display: flex;
    background-color: #318235; /* Dark Green */
    padding: 25px 30px;
    gap: 25px;
    flex-shrink: 0;
}

.hr-rb-option-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hr-rb-option-title {
    color: #f6b60d; /* Mustard Yellow */
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Inner White Cards */
.hr-rb-option-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px 25px;
    width: 200px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hr-rb-option-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.hr-rb-type {
    font-weight: 700;
    color: #000000;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.hr-rb-price {
    color: #318235; /* Green to match background */
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.hr-rb-avail {
    font-size: 0.8rem;
    color: #b0b0b0; /* Light gray text */
    display: flex;
    align-items: center;
    gap: 5px;
}

.hr-rb-count {
    color: #f6b60d; /* Mustard Yellow Number */
    font-size: 1.1rem;
    font-weight: 700;
}

/* Responsive Design for Tablets and Mobiles */
@media (max-width: 992px) {
    .hr-rb-card {
        flex-direction: column;
    }
    
    .hr-rb-image {
        width: 100%;
        height: 250px;
    }
    
    .hr-rb-info {
        padding: 30px 20px;
    }
    
    .hr-rb-options-panel {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 500px) {
    .hr-rb-options-panel {
        flex-direction: column;
        align-items: center;
    }
    
    .hr-rb-option-box {
        width: 100%;
        max-width: 260px;
    }
}

/* ==================================================
   EXACT POPUP DESIGN (Conflict-Free)
   ================================================== */

.hr-exact-modal-content {
    border-radius: 8px;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

/* Header Styling */
.hr-exact-modal-header {
    background-color: #fcfcfc;
    border-bottom: 1px solid #eeeeee;
    padding: 18px 25px;
    position: relative;
}

.hr-exact-modal-title {
    color: #8c1c13; /* Theme Red */
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.35rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.hr-exact-btn-close {
    position: absolute;
    right: 20px;
    top: 22px;
    font-size: 0.9rem;
}

/* Body Styling */
.hr-exact-modal-body {
    padding: 30px 40px;
    text-align: center;
    background-color: #ffffff;
}

.hr-exact-subtitle {
    color: #555555;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* Amount & Availability Details */
.hr-exact-details-box {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
}

.hr-exact-detail-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hr-exact-label {
    color: #666666;
    font-size: 0.95rem;
    font-weight: 500;
}

.hr-exact-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: #222222;
}

.hr-text-red {
    color: #8c1c13 !important;
}

/* Dropdown Styling */
.hr-exact-select-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
}

.hr-exact-select-label {
    color: #444444;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.hr-exact-select {
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 1rem;
    color: #333333;
    text-align: center;
    box-shadow: none;
    cursor: pointer;
}

.hr-exact-select:focus {
    border-color: #8c1c13;
    box-shadow: 0 0 0 0.2rem rgba(140, 28, 19, 0.1);
}

/* Footer & Button Styling */
.hr-exact-modal-footer {
    border-top: none;
    padding: 0 40px 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: #ffffff;
}

.hr-exact-btn-cancel {
    background-color: #ffffff;
    color: #555555;
    border: 1px solid #cccccc;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.hr-exact-btn-cancel:hover {
    background-color: #f5f5f5;
    color: #333333;
    border-color: #bbbbbb;
}

.hr-exact-btn-proceed {
    background-color: #8c1c13;
    color: #ffffff;
    border: 1px solid #8c1c13;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.2s;
}

.hr-exact-btn-proceed:hover {
    background-color: #6a150e;
    border-color: #6a150e;
    color: #ffffff;
}

/* ==================================================
   PIXEL-PERFECT BOOKING MODAL
   ================================================== */

.hr-modal-container {
    border-radius: 8px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', sans-serif;
}

/* Header */
.hr-modal-header-box {
    border-bottom: 2px solid #8c1c13;
    padding: 16px 20px;
    position: relative;
    background-color: #ffffff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.hr-modal-main-title {
    color: #8c1c13; /* Exact match dark red */
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0;
}

.hr-modal-close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* Body */
.hr-modal-body-box {
    padding: 30px;
    text-align: center;
    background-color: #ffffff;
}

.hr-modal-subtitle {
    color: #6a7c8a; /* exact slate grey match */
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

/* Info Row (Amount & Available) */
.hr-modal-info-row {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin-bottom: 25px;
}

.hr-modal-info-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.hr-modal-label {
    color: #666666;
    font-size: 0.95rem;
    font-weight: 500;
}

.hr-modal-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.hr-value-red {
    color: #8c1c13;
}

.hr-value-dark {
    color: #333333;
}

/* Dropdown */
.hr-modal-select-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 260px;
    margin: 0 auto;
}

.hr-modal-select-label {
    color: #333333;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    align-self: flex-start; /* Aligns label to the left of the dropdown */
    width: 100%;
    text-align: left;
}

.hr-modal-dropdown {
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 1rem;
    color: #333333;
    box-shadow: none;
    cursor: pointer;
}

.hr-modal-dropdown:focus {
    border-color: #8c1c13;
    box-shadow: 0 0 0 0.2rem rgba(140, 28, 19, 0.15);
}

/* Footer & Buttons */
.hr-modal-footer-box {
    border-top: none;
    padding: 0 30px 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    background-color: #ffffff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.hr-btn-outline-cancel {
    background-color: #ffffff;
    color: #8c1c13;
    border: 1px solid #8c1c13;
    padding: 10px 35px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.hr-btn-outline-cancel:hover {
    background-color: #fdf3f3;
    color: #8c1c13;
}

.hr-btn-solid-proceed {
    background-color: #8c1c13;
    color: #ffffff;
    border: 1px solid #8c1c13;
    padding: 10px 35px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.hr-btn-solid-proceed:hover {
    background-color: #6a150e;
    color: #ffffff;
}

/* ==================================================
   NUMBER OF ROOMS POPUP DESIGN (Conflict-Free)
   ================================================== */

.hr-num-modal-container {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.hr-num-modal-body {
    padding: 35px 35px 30px;
    text-align: left;
    background-color: #ffffff;
}

/* Typography & Info */
.hr-num-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    letter-spacing: -0.2px;
}

.hr-num-info {
    font-size: 1rem;
    color: #6c757d; /* Slate gray */
    margin: 0 0 8px 0;
}

.hr-num-text-green {
    color: #278136; /* Dark Green */
    font-weight: 700;
}

.hr-num-text-yellow {
    color: #f7b700; /* Mustard Yellow */
    font-weight: 700;
}

/* Counter Area */
.hr-num-counter-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin: 35px 0;
}

.hr-num-counter-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #99a2ab;
    background-color: #ffffff;
    color: #4a5560;
    font-size: 1.5rem;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
    padding-bottom: 4px; /* visually centers the +/- signs */
}

.hr-num-counter-btn:hover {
    background-color: #f4f6f8;
}

.hr-num-counter-val {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

/* Estimated Total Box */
.hr-num-total-box {
    background-color: #f4f9f0; /* Light pastel green */
    border: 1px solid #c9e4b6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.hr-num-total-label {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.hr-num-total-calc {
    font-size: 1.4rem;
    font-weight: 700;
}

.hr-num-text-red {
    color: #b22222; /* Rich dark red */
    font-weight: 700;
}

/* Buttons Area */
.hr-num-actions {
    display: flex;
    gap: 15px;
}

.hr-num-btn-cancel,
.hr-num-btn-next {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    font-size: 1.05rem;
    transition: all 0.2s;
}

.hr-num-btn-cancel {
    background-color: #ffffff;
    border: 1px solid #8c98a4;
    color: #6c757d;
    font-weight: 500;
}

.hr-num-btn-cancel:hover {
    background-color: #f8f9fa;
    color: #495057;
}

.hr-num-btn-next {
    background-color: #212529; /* Dark Charcoal */
    border: 1px solid #212529;
    color: #ffffff;
    font-weight: 700;
}

.hr-num-btn-next:hover {
    background-color: #101214;
    color: #ffffff;
}
/* Fix for Modal Overlapping */
.modal.fade.show {
    z-index: 1060 !important;
}

.modal-backdrop.show {
    z-index: 1050 !important;
}

/* ==================================================
   VERIFICATION POPUP DESIGN (Conflict-Free)
   ================================================== */
.hr-ver-modal-container { border-radius: 12px; overflow: hidden; border: none; }

/* Left Side Styling */
.hr-ver-left-panel {
    background-color: #fff;
    color: #000;
    padding: 40px;

    /* More visible line */
    border-right: 2px solid #423636;
}
.hr-ver-title { color: #000; font-family: 'Playfair Display'; margin-bottom: 20px; }
.hr-ver-room-type { font-weight: bold; margin-bottom: 20px; text-transform: uppercase; }
.hr-ver-details p { margin-bottom: 15px; line-height: 1.4; opacity: 0.9; }

/* Right Side Styling */
.hr-ver-right-panel { padding: 40px; background: #fff; }
.hr-ver-label { font-weight: 600; margin-bottom: 10px; display: block; }
.hr-ver-input { border: 1px solid #ced4da; padding: 12px; }
.hr-ver-btn-next { background: #6daae7; color: #fff; width: 100%; padding: 12px; font-weight: bold; }
.hr-ver-otp-text { font-size: 0.8rem; color: #666; margin-top: 20px; line-height: 1.5; }

/* Layout for Input + Button */
.hr-ver-btn-otp { background: #000; color: #fff; font-weight: 600; }
.hr-ver-btn-otp:hover { background: #6a7e6d; color: #fff; }

/* Status message styles */
.hr-ver-status { font-size: 0.85rem; margin-top: 5px; font-weight: 600; }
.hr-ver-status.success { color: #278136; } /* Green for verified */
.hr-ver-status.error { color: #dc3545; }   /* Red for incorrect */

/* Fix input-group alignment */
/* neutral input-group rule */
.input-group > .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.hr-ver-btn-otp {
    height: 50px; /* Matches input height */
    padding: 0 20px;
    background-color: #8c1c13;
    color: #ffffff;
    font-weight: 600;
    border-radius: 0 4px 4px 0;
    border: none;
}

.hr-ver-btn-otp:hover {
    background-color: #6a150e;
}

/* Ensure the label and input are properly spaced */
.hr-ver-label {
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* booking guest details */

/* ==================================================
   ROOM BOOKING GUEST DETAILS (Conflict-Free)
   ================================================== */

.hr-guest-wrapper {
    max-width: 950px;
    margin: 50px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

/* Headers */
.hr-guest-title {
    color: #8c1c13;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.hr-guest-meta {
    text-align: center;
    color: #888888;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.hr-guest-subtitle {
    color: #8c1c13;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.hr-guest-back-link {
    display: inline-block;
    color: #666666;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.hr-guest-back-link:hover {
    color: #8c1c13;
    text-decoration: underline;
}

/* Main Form Card */
.hr-guest-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
    padding: 40px;
    border: 1px solid #f0f0f0;
}

.hr-guest-card-title {
    color: #8c1c13;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

/* Summary Box */
.hr-guest-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 35px;
    font-size: 0.95rem;
    color: #444444;
}

.hr-guest-summary strong {
    color: #111111;
    font-weight: 600;
}

.hr-summary-item.hr-border-sides {
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    padding: 0 25px;
    flex-grow: 1;
    margin: 0 25px;
}

.hr-summary-price {
    color: #198754; /* Green */
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
}

/* Form Grid */
.hr-guest-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.hr-guest-group {
    display: flex;
    flex-direction: column;
}

.hr-full-width {
    grid-column: span 2;
}

/* Labels & Inputs */
.hr-guest-label {
    font-size: 0.9rem;
    color: #333333;
    margin-bottom: 8px;
    font-weight: 500;
}

.hr-guest-input,
.hr-guest-select {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #dce0e4;
    border-radius: 6px;
    background-color: #f4f6f8; /* Light gray background */
    color: #444444;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    height: auto; /* Overrides template conflicts */
}

.hr-guest-input:focus,
.hr-guest-select:focus {
    border-color: #0d6efd;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.hr-guest-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-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='%23666' 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 15px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

/* Submit Button */
.hr-guest-submit {
    text-align: center;
    margin-top: 40px;
}

.hr-guest-btn {
    background-color: #0d6efd; /* Vibrant blue */
    color: #ffffff;
    border: none;
    padding: 14px 50px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.25);
    font-family: 'Inter', sans-serif;
}

.hr-guest-btn:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.35);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hr-guest-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .hr-full-width {
        grid-column: span 1;
    }
    .hr-guest-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .hr-summary-item.hr-border-sides {
        border: none;
        padding: 0;
        margin: 0;
    }
    .hr-guest-card {
        padding: 25px 20px;
    }
    .hr-guest-title {
        font-size: 1.8rem;
    }
    .hr-guest-subtitle {
        font-size: 1.3rem;
    }
}

/* ==================================================
   SUCCESS POPUP DESIGN (Conflict-Free)
   ================================================== */

.hr-success-modal-container {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
}

.hr-success-body {
    padding: 40px 30px;
}

/* Green Checkmark */
.hr-success-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px auto;
}

.hr-success-icon svg {
    width: 100%;
    height: 100%;
}

/* Typography */
.hr-success-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #222222;
    margin-bottom: 15px;
}

.hr-success-message {
    font-size: 1.05rem;
    color: #555555;
    margin-bottom: 25px;
    font-weight: 500;
}

.hr-success-hint {
    font-size: 0.85rem;
    color: #888888;
    margin: 0;
}

/* booking room invoice */

/* ==================================================
   LUXURY ROYAL DIVINE INVOICE DESIGN
   ================================================== */

.hr-inv-wrapper {
    max-width: 980px;
    margin: 40px auto 60px auto;
    padding: 0 20px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Page Header */
.hr-inv-page-header {
    text-align: center;
    margin-bottom: 28px;
}

.hr-inv-page-title {
    color: #8c1c13;
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(140, 28, 19, 0.15);
}

.hr-inv-page-meta {
    color: #8c1c13;
    font-size: 0.95rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fff9e6, #fff0c2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid #ffe082;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.15);
}

/* Back Link */
.hr-inv-back-wrap {
    margin-bottom: 25px;
}

.hr-inv-back-link {
    color: #8c1c13;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0e0d0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hr-inv-back-link:hover {
    color: #ffffff;
    background: #8c1c13;
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(140, 28, 19, 0.3);
}

/* Luxury Invoice Container Card */
.hr-inv-card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(140, 28, 19, 0.12), 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 2px solid #f3e5d8;
    overflow: hidden;
    position: relative;
}

.hr-inv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ffd700 0%, #8c1c13 50%, #ffd700 100%);
}

/* Card Header Banner */
.hr-inv-card-header {
    background: linear-gradient(145deg, #3d0202 0%, #681109 45%, #8c1c13 100%);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hr-inv-card-header::after {
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.18) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hr-inv-card-title {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    letter-spacing: 0.3px;
}

.hr-inv-badge-status {
    background: linear-gradient(135deg, #ffd700 0%, #ffa000 100%);
    color: #3d0202;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 8px 22px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 160, 0, 0.4);
    border: 1px solid #ffffff;
}

.hr-inv-card-body {
    padding: 42px 45px;
    background: #fdfbf7;
}

/* Grid Boxes with Gold Outline & Shadows */
.hr-inv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.hr-inv-box {
    background: #ffffff;
    border: 1px solid #f0e2cf;
    border-radius: 20px;
    padding: 24px 26px;
    box-shadow: 0 8px 25px rgba(140, 28, 19, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hr-inv-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(140, 28, 19, 0.09);
    border-color: #ffd700;
}

.hr-inv-box-header {
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #8c1c13;
    letter-spacing: 1px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px dashed #f5e9d9;
    padding-bottom: 10px;
}

.hr-inv-box-header i {
    font-size: 1.1rem;
    color: #d93829;
    background: #fff4f2;
    padding: 8px;
    border-radius: 10px;
}

.hr-inv-item {
    font-size: 0.92rem;
    margin-bottom: 12px;
    color: #2b2b2b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hr-inv-item:last-child {
    margin-bottom: 0;
}

.hr-inv-lbl {
    color: #7a7a7a;
    font-weight: 500;
}

.hr-inv-val {
    font-weight: 700;
    color: #1a1a1a;
    text-align: right;
    max-width: 60%;
    word-break: break-word;
}

/* Modern Golden Alert Banner */
.hr-inv-note-box {
    background: linear-gradient(135deg, #fffbe6 0%, #fff4cc 100%);
    border-left: 5px solid #ffb300;
    color: #664d03;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 0.92rem;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.12);
}

.hr-inv-note-box i {
    font-size: 1.5rem;
    color: #ff8f00;
}

/* Premium Breakdown Table */
.hr-inv-table-wrap {
    margin-bottom: 35px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #ebdccb;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.hr-inv-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: #ffffff;
}

.hr-inv-table th {
    background: linear-gradient(135deg, #8c1c13 0%, #681109 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 16px 24px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    border: none;
}

.hr-inv-table td {
    padding: 18px 24px;
    border-bottom: 1px solid #f3e9d8;
    color: #212529;
    vertical-align: middle;
}

.hr-inv-table tr:last-child td {
    border-bottom: none;
}

/* Royal Gold Total Card Banner */
.hr-inv-total-banner {
    background: linear-gradient(135deg, #18181f 0%, #2c2c36 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 26px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.hr-inv-total-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #ffd700;
    border-radius: 20px 0 0 20px;
}

.hr-inv-total-lbl {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e0e0e0;
}

.hr-inv-total-lbl small {
    display: block;
    font-size: 0.8rem;
    color: #adb5bd;
    margin-top: 4px;
}

.hr-inv-total-val {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

/* Modern Action Buttons */
.hr-inv-actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hr-inv-btn-cancel {
    background: #ffffff;
    color: #555555;
    border: 2px solid #e0e0e0;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hr-inv-btn-cancel:hover {
    background: #f8f9fa;
    color: #8c1c13;
    border-color: #8c1c13;
    transform: translateY(-2px);
}

.hr-inv-btn-pay {
    background: linear-gradient(135deg, #ff9800 0%, #d93829 50%, #8c1c13 100%);
    color: #ffffff;
    border: none;
    padding: 16px 50px;
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(217, 56, 41, 0.45);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
}

.hr-inv-btn-pay:hover {
    background: linear-gradient(135deg, #ffa726 0%, #e6392a 50%, #a02016 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 40px rgba(217, 56, 41, 0.65);
}

@media (max-width: 768px) {
    .hr-inv-card-body {
        padding: 28px 20px;
    }
    .hr-inv-card-header {
        padding: 22px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .hr-inv-total-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px;
    }
    .hr-inv-actions-row {
        flex-direction: column-reverse;
        width: 100%;
    }
    .hr-inv-btn-pay, .hr-inv-btn-cancel {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.hr-inv-btn:hover {
    background-color: #101214;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .hr-inv-card-body {
        padding: 20px;
    }
    .hr-inv-split-row {
        flex-direction: column;
    }
    .hr-inv-room-status {
        text-align: left;
        margin-top: 15px;
    }
}

/* profile page */
/* ==================================================
   USER PROFILE & BOOKINGS SECTION (Conflict-Free)
   ================================================== */

.hr-prof-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
    font-family: 'Inter', sans-serif;
}

/* Shared Card Style */
.hr-prof-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

/* --- Left Sidebar Styling --- */
.hr-prof-sidebar {
    text-align: center;
}

.hr-prof-avatar {
    width: 100px;
    height: 100px;
    background-color: #6c757d; /* Grey circle */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
}

.hr-prof-avatar i {
    font-size: 3.5rem;
    color: #ffffff;
}

.hr-prof-name {
    color: #8c1c13;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hr-prof-info {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.hr-prof-divider {
    border-top: 1px solid #e0e0e0;
    margin: 25px 0;
}

/* Navigation Buttons */
.hr-prof-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hr-prof-btn {
    width: 100%;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Active Button (Filled Blue) */
.hr-prof-btn-active {
    background-color: #0d6efd;
    color: #ffffff;
    border: 1px solid #0d6efd;
}

.hr-prof-btn-active:hover {
    background-color: #0b5ed7;
}

/* Inactive Button (Outlined Blue) */
.hr-prof-btn-outline {
    background-color: transparent;
    color: #0d6efd;
    border: 1px solid #0d6efd;
}

.hr-prof-btn-outline:hover {
    background-color: #f8f9fa;
}

/* --- Right Content Styling --- */
.hr-prof-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.hr-prof-title {
    color: #8c1c13;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

/* Top Right Badge */
.hr-prof-badge {
    background-color: #28a745;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 15px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Tables */
.hr-prof-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    color: #333333;
}

.hr-prof-table th {
    background-color: #ffffff;
    color: #111111;
    font-weight: 700;
    padding: 15px 10px;
    border-bottom: 2px solid #e0e0e0;
    text-align: left;
    white-space: nowrap;
}

.hr-prof-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: middle;
}

.hr-prof-muted {
    color: #999999;
}

.hr-prof-wrap-text {
    max-width: 250px; /* Prevents long text from stretching the table */
}

/* Receipt Buttons */
.hr-prof-receipt-btn {
    color: #ffffff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s;
}

.hr-btn-green {
    background-color: #198754;
}

.hr-btn-green:hover {
    background-color: #157347;
}

.hr-btn-cyan {
    background-color: #0dcaf0;
}

.hr-btn-cyan:hover {
    background-color: #31d2f2;
}

@media (max-width: 991px) {
    .hr-prof-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .hr-prof-badge {
        align-self: flex-start;
    }
}

/* ==================================================
   NEW MODERN ROOM AVAILABILITY DESIGN (booking_room.html)
   ================================================== */
.hr-v2-hero {
    background: radial-gradient(circle at top, #88141d 0%, #600a10 65%, #46060b 100%);
    border: 1.8px solid #b8860b;
    border-radius: 28px;
    padding: 36px 24px 32px 24px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(70, 6, 11, 0.32);
    margin-top: 15px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hr-v2-hero::before {
    display: none;
}

.hr-om-symbol {
    font-family: 'Cinzel', 'Playfair Display', serif;
    color: #ffd700;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 5px;
    text-align: center;
}

.hr-v2-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.45rem;
    font-weight: 800;
    color: #fffdfa;
    letter-spacing: 0.3px;
    margin: 0 auto 7px auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.hr-v2-hero-subtitle {
    font-size: 0.76rem;
    font-weight: 700;
    color: #ffd54f;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 auto 18px auto;
    max-width: 750px;
    text-align: center;
}

.hr-v2-status-legend {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 213, 79, 0.45);
    border-radius: 30px;
    padding: 8px 24px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    margin: 0 auto;
}

.hr-hero-shree-watermark {
    position: absolute;
    right: 22px;
    bottom: 10px;
    font-size: 1.45rem;
    color: rgba(255, 213, 79, 0.18);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    pointer-events: none;
    letter-spacing: 1px;
}

.hr-v2-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hr-v2-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.hr-v2-legend-dot.avail { background-color: #28a745; box-shadow: 0 0 8px #28a745; }
.hr-v2-legend-dot.filling { background-color: #ffc107; box-shadow: 0 0 8px #ffc107; }
.hr-v2-legend-dot.selected { background-color: #8c1c13; box-shadow: 0 0 8px #8c1c13; }

/* Filter Tabs */
.hr-v2-filter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

.hr-v2-filter-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.hr-v2-filter-tabs::-webkit-scrollbar {
    height: 4px;
}
.hr-v2-filter-tabs::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 4px;
}

.hr-v2-tab-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #495057;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.hr-v2-tab-btn:hover {
    background: #f1f3f5;
    color: #8c1c13;
}

.hr-v2-tab-btn.active {
    background: #8c1c13;
    color: #ffffff;
    border-color: #8c1c13;
    box-shadow: 0 4px 12px rgba(140, 28, 19, 0.25);
}

.hr-v2-search-info {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

/* Month Section */
.hr-v2-month-section {
    margin-bottom: 40px;
}

.hr-v2-month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.hr-v2-month-title {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8c1c13;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.hr-v2-month-badge {
    background: #fdf2f2;
    color: #8c1c13;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #f8d7da;
}

/* Container Wrapper for Calendar List - Uniform Professional 1280px Width */
.hr-room-calendar-wrapper {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 70px;
}

.hr-calendar-list-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
}

/* Date Cards Grid - Fully Mobile Responsive */
.hr-v2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 16px;
}

/* Card Styling v2 - Rich Professional Green Theme */
.hr-v2-card {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    border: 1.5px solid #2e7d32;
    border-radius: 16px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 155px;
    box-shadow: 0 4px 14px rgba(27, 94, 32, 0.2);
    color: #ffffff;
}

.hr-v2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(27, 94, 32, 0.35);
    background: linear-gradient(135deg, #388e3c 0%, #1b5e20 100%);
    border-color: #ffeb3b;
}

.hr-v2-card-day {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e8f5e9;
    font-family: inherit;
}

.hr-v2-card-date {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin: 6px 0;
    font-family: inherit;
}

.hr-v2-card-month {
    font-size: 0.8rem;
    font-weight: 500;
    color: #c8e6c9;
    margin-bottom: 8px;
    font-family: inherit;
}

.hr-v2-card-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Card Status Variants */
.hr-v2-card.avail {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    border: 1.5px solid #2e7d32;
    box-shadow: 0 4px 14px rgba(27, 94, 32, 0.2);
}

.hr-v2-card.filling {
    background: linear-gradient(135deg, #e65100 0%, #bf360c 100%) !important;
    border: 1.5px solid #ff9800 !important;
    box-shadow: 0 4px 14px rgba(230, 81, 0, 0.35) !important;
}

.hr-v2-card.filling:hover {
    background: linear-gradient(135deg, #f57c00 0%, #d84315 100%) !important;
    border-color: #ffd54f !important;
}

.hr-v2-card.filling .hr-v2-card-badge {
    background: #ffb74d !important;
    color: #3e2723 !important;
    font-weight: 800 !important;
    border-color: #ffe082 !important;
}

.hr-v2-card.sold {
    background: linear-gradient(135deg, #424242 0%, #212121 100%) !important;
    border: 1.5px solid #616161 !important;
    opacity: 0.7;
    cursor: not-allowed;
}

/* Selected Card Highlight - Golden Maroon Glow */
.hr-v2-card.selected {
    background: linear-gradient(145deg, #8c1c13 0%, #5e0d07 100%);
    border-color: #ffd700;
    color: #ffffff !important;
    box-shadow: 0 14px 32px rgba(140, 28, 19, 0.45);
    transform: scale(1.05);
}

.hr-v2-card.selected .hr-v2-card-day,
.hr-v2-card.selected .hr-v2-card-date,
.hr-v2-card.selected .hr-v2-card-month {
    color: #ffffff !important;
}

.hr-v2-card.selected .hr-v2-card-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Sticky Bottom Summary Bar */
.hr-v2-summary-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    width: calc(100% - 40px);
    max-width: 750px;
    background: #1e1e24;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    z-index: 1050;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hr-v2-summary-bar.active {
    transform: translateX(-50%) translateY(0);
}

.hr-v2-summary-info {
    display: flex;
    flex-direction: column;
}

.hr-v2-summary-date {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffd700;
}

.hr-v2-summary-sub {
    font-size: 0.8rem;
    color: #adb5bd;
}

.hr-v2-summary-btn {
    background: linear-gradient(135deg, #d93829, #8c1c13);
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(217, 56, 41, 0.4);
}

.hr-v2-summary-btn:hover {
    background: linear-gradient(135deg, #e6392a, #a02016);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 56, 41, 0.6);
}

/* Responsive Rules for Mobile Devices */
@media (max-width: 768px) {
    .hr-v2-hero {
        padding: 30px 18px;
        border-radius: 18px;
        margin-top: 15px;
    }
    .hr-v2-hero-title {
        font-size: 1.8rem;
    }
    .hr-v2-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    .hr-v2-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .hr-v2-card {
        padding: 10px 6px;
        min-height: 140px;
        border-radius: 12px;
    }
    .hr-v2-card-date {
        font-size: 1.75rem;
        margin: 4px 0;
    }
    .hr-v2-card-badge {
        font-size: 0.68rem;
        padding: 4px 4px;
    }
    .hr-v2-summary-bar {
        bottom: 12px;
        padding: 12px 18px;
        border-radius: 24px;
        width: calc(100% - 24px);
    }
    .hr-v2-summary-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .hr-v2-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .hr-v2-card {
        min-height: 130px;
    }
    .hr-v2-card-day {
        font-size: 0.72rem;
    }
    .hr-v2-card-date {
        font-size: 1.5rem;
    }
    .hr-v2-card-month {
        font-size: 0.7rem;
    }
}

/* ==================================================
   NEW MODERN TIME SELECTION DESIGN (booking-time.html)
   ================================================== */
.hr-t2-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 90px;
}

.hr-t2-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #eaeaea;
    margin-bottom: 35px;
}

.hr-t2-control-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hr-t2-control-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hr-t2-date-picker-wrap {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 1.5px solid #fb8c00;
    border-radius: 12px;
    padding: 8px 16px;
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(251, 140, 0, 0.15);
}

.hr-t2-date-picker-wrap:focus-within,
.hr-t2-date-picker-wrap:hover {
    border-color: #e65100;
    background: linear-gradient(135deg, #ffe0b2 0%, #ffcc80 100%);
    box-shadow: 0 4px 14px rgba(230, 81, 0, 0.25);
}

.hr-t2-date-input {
    border: none;
    background: transparent;
    font-weight: 700;
    color: #4e2600;
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

/* Duration Pills */
.hr-t2-pills {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hr-t2-pill-btn {
    background: #f8f9fa;
    border: 1.5px solid #dee2e6;
    color: #495057;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hr-t2-pill-btn:hover {
    background: #e9ecef;
    color: #8c1c13;
}

.hr-t2-pill-btn.active {
    background: #8c1c13;
    color: #ffffff;
    border-color: #8c1c13;
    box-shadow: 0 4px 12px rgba(140, 28, 19, 0.25);
}

/* Section Titles */
.hr-t2-period-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.hr-t2-period-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.hr-t2-period-icon.am {
    background: #fff8e1;
    color: #f57c00;
}

.hr-t2-period-icon.pm {
    background: #e8eaf6;
    color: #3f51b5;
}

.hr-t2-period-title {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Slot Grid */
.hr-t2-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
    gap: 14px;
    margin-bottom: 35px;
}

/* Time Slot Card - Available (Green Theme) */
.hr-t2-slot-card {
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 105px;
    font-family: inherit;
}

/* Available Slot Card - Green */
.hr-t2-slot-card.avail {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    border: 1.5px solid #2e7d32;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.2);
}

.hr-t2-slot-card.avail:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(27, 94, 32, 0.35);
    background: linear-gradient(135deg, #388e3c 0%, #1b5e20 100%);
    border-color: #ffeb3b;
}

.hr-t2-slot-card.avail .hr-t2-slot-time {
    color: #ffffff;
}

.hr-t2-slot-card.avail .hr-t2-slot-count {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Disabled / Past / No Rooms Slot Card - Red */
.hr-t2-slot-card.disabled {
    background: linear-gradient(135deg, #c62828 0%, #8e0000 100%);
    border: 1.5px solid #c62828;
    color: #ffffff;
    opacity: 0.85;
    cursor: not-allowed;
    box-shadow: 0 3px 10px rgba(198, 40, 40, 0.15);
}

.hr-t2-slot-card.disabled .hr-t2-slot-time {
    color: #ffffff;
}

.hr-t2-slot-card.disabled .hr-t2-slot-count {
    background: rgba(0, 0, 0, 0.25);
    color: #ffcdd2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hr-t2-slot-time {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: inherit;
}

.hr-t2-slot-count {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    width: 100%;
    font-family: inherit;
}

/* Selected Card Highlight - Maroon & Gold */
.hr-t2-slot-card.selected {
    background: linear-gradient(145deg, #8c1c13 0%, #5e0d07 100%) !important;
    border-color: #ffd700 !important;
    color: #ffffff !important;
    box-shadow: 0 12px 28px rgba(140, 28, 19, 0.45) !important;
    transform: scale(1.05) !important;
}

.hr-t2-slot-card.disabled .hr-t2-slot-time {
    color: #adb5bd;
}

.hr-t2-slot-card.disabled .hr-t2-slot-count {
    background: #e9ecef;
    color: #6c757d;
}

/* Mobile Responsiveness for Time Page */
@media (max-width: 768px) {
    .hr-t2-toolbar {
        padding: 16px 18px;
        flex-direction: column;
        align-items: stretch;
    }
    .hr-t2-control-group {
        width: 100%;
    }
    .hr-t2-pills {
        justify-content: space-between;
    }
    .hr-t2-pill-btn {
        flex: 1;
        text-align: center;
        padding: 8px 10px;
        font-size: 0.82rem;
    }
    .hr-t2-slot-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .hr-t2-slot-card {
        padding: 10px 6px;
        min-height: 95px;
    }
    .hr-t2-slot-time {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hr-t2-slot-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .hr-t2-slot-time {
        font-size: 0.92rem;
    }
    .hr-t2-slot-count {
        font-size: 0.68rem;
    }
}



