/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}
.bg-calender{
    background-color: var(--bgCalender);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}
.bg-theme{
    background-color: var(--primary-color);
}
.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-purple);
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
}

.btn-default {
    background: var(--bgButton);
    color: var(--white);
    border:1px solid var(--bgButton) !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.btn-default:hover {
    background: var(--light-purple);
    transform: translateY(-2px);
}
.btn-default-outline {
    background: var(--white);
    color: var(--bgButton);
    border: 1px solid var(--bgButton);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    
}

.btn-default-outline:hover {
    background: var(--light-purple);
    transform: translateY(-2px);
    color: var(--white);
}
h4.contant__h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
    padding: 10px;
    border-bottom: 2px solid var(--primary-purple);
    text-align: center;
}
.nav-link:hover
 {
    background-color: var(--primary-purple) !important;
    color: #fff !important;
}

.nav-item ,.nav-link:hover
 {
   background-color: white !important;
    color: #fff !important;
}
.login-form-link ,.register-form-link
{
    /* background-color: var(--primary-color) !important; */
     color: #000 !important;

}
.contant.totalamountdiv
 {
    background: var(--background-light);
    padding: 7px;
    border-radius: 8px;
    margin-inline: 5%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    
    top: 8px !important;
    
}
.select2-container--default .select2-selection--single {
    cursor: pointer !important;
    width: 100%!important;
    padding: 0.35rem!important;
    border: 2px solid var(--border-light)!important;
    border-radius: 8px!important;
    font-size: 1rem!important;
    transition: border-color 0.3s ease!important;
    background: var(--white)!important;
    height: 42px!important
}
.dropdown-menu.currency-dropdown.dropdown-menu-right.show {
    z-index: 99999999999999;
}

select {
    cursor: pointer;
    width: auto;
    padding:0 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
    height: 42px;
}
.select2-results__option, .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 0.75rem !important;
}
.object-fit-cover {
    object-fit: cover;
} 
.discountpirce {
    text-decoration: line-through;
    color: #E57373;
    font-size: 11px;
}
.border-bottom-theme{
    border-bottom: 2px solid var(--primary-purple);
}
.form-input-new {
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
}
.form-input-new label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.875rem;
}
.form-input-new input {
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}
.gap{
        gap: 1.5rem;
}
.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}
.confirmation-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--success-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--success-green);
}
.notice-icon {
    color: var(--success-green);
    flex-shrink: 0;
}
/* Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Search Widget */
.search-widget {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-hover);
    max-width: 1000px;
    margin: 0 auto;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-purple);
}

/* Guest Selector */
.guest-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    background: var(--white);
}

.guest-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.counter {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary-purple);
    background: var(--white);
    color: var(--primary-purple);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.counter-btn:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.search-btn {
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    grid-column: span 3;
    margin-top: 1rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    transition: all 0.3s ease;
    grid-column: span 1;
}

.search-btn:hover {
    background: var(--light-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Filters Section */
.filters-section {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.filters-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 0.5rem;
    border: 2px solid var(--border-light);
    background: var(--white);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    border-color: var(--primary-purple);
    background: var(--primary-purple);
    color: var(--white);
}

.filters-bar {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.filter-group select {
    padding: 0.5rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background: var(--white);
}

.clear-filters {
    background: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.clear-filters:hover {
    background: var(--primary-purple);
    color: var(--white);
}

/* Rooms Section */
.rooms-section {
    padding: 3rem 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

/* Room Cards */
.room-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid var(--border-light);
    border-radius: 12px;
}

.room-card:hover {
    border-color: var(--light-purple);
    box-shadow: var(--shadow-hover);
}
.room-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--eco-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.room-badge.popular {
    background: var(--primary-purple);
}

.room-badge.luxury {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: var(--text-primary);
}

.favorite-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.favorite-btn.active {
    background: var(--error-red);
    color: var(--white);
}

.room-content {
    padding: 1.5rem;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.room-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.room-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #FFD700;
    font-size: 0.875rem;
}

.rating-count {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.room-size,
.room-guests {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.amenity {
    background: var(--eco-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 500;
}

/* Policy Information */
.room-policies {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.policy-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: help;
}

.policy-item:hover .policy-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-5px);
}

.policy-tooltip {
    position: absolute;
    bottom: 100%;
    left: -50%;
    transform: translateX(-50%) translateY(0);
    background: var(--text-primary);
    color: var(--white);
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow);
    min-width: 300px;
}

.policy-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--text-primary);
}

.room-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.original-price {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.per-night {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.savings {
    background: var(--success-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.room-actions {
    display: flex;
    gap: 1rem;
}

.btn-view-details,
.btn-book-room {
    /* flex: 1; */
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-view-details {
    background: var(--white);
    color: var(--bgButton);
    border: 2px solid var(--bgButton);
}

.btn-view-details:hover {
    background: var(--bgButton);
    color: var(--white);
}

.btn-book-room {
    background: var(--bgButton);
    color: var(--white);
    border: 2px solid var(--bgButton);
}

.btn-book-room:hover {
    background: var(--light-purple);
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    background: var(--background-light);
    padding: 3rem 0;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--light-purple);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: var(--primary-purple);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .search-btn {
        grid-column: span 1;
    }

    .filters-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

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

    .room-actions {
        flex-direction: column;
    }

    .trust-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .search-widget {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .room-card {
        margin: 0 1rem;
    }

    .guest-selector {
        padding: 0.75rem;
    }

    .guest-input {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Loading and Animation States */
.room-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.room-card:nth-child(1) { animation-delay: 0.1s; }
.room-card:nth-child(2) { animation-delay: 0.2s; }
.room-card:nth-child(3) { animation-delay: 0.3s; }

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}


/* Modal Styles */
.room-details-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.room-details-modal .modal-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-hover);
    animation: modalSlideIn 0.3s ease-out;
    width: 90%;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.room-details-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem 0.6rem;
    border-bottom: 1px solid var(--border-light);
}

.room-details-modal .modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.room-details-modal .modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.room-details-modal .modal-close:hover {
    background: var(--background-light);
    color: var(--text-primary);
}

.room-details-modal .modal-body {
    padding: 0rem 2rem;
}

.room-details-modal .room-specs {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.room-details-modal .spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.room-details-modal .spec-item svg {
    color: var(--primary-purple);
}

.room-details-modal h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.room-details-modal .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.room-details-modal .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--background-light);
    border-radius: 8px;
}

.room-details-modal .feature-icon {
    color: var(--primary-purple);
    flex-shrink: 0;
}

.room-details-modal .policy-details {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.room-details-modal .policy-detail {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.room-details-modal .policy-detail:last-child {
    margin-bottom: 0;
}

.room-details-modal .modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem 2rem;
    border-top: 1px solid var(--border-light);
}

.room-details-modal .modal-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.room-details-modal .modal-original-price {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.room-details-modal .modal-current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.room-details-modal .modal-per-night {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.room-details-modal .modal-actions {
    display: flex;
    gap: 1rem;
}

.room-details-modal .btn-modal-close,
.room-details-modal .btn-modal-book {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-purple);
}

.room-details-modal .btn-modal-close {
    background: var(--white);
    color: var(--primary-purple);
}

.room-details-modal .btn-modal-close:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.room-details-modal .btn-modal-book {
    background: var(--primary-purple);
    color: var(--white);
}

.room-details-modal .btn-modal-book:hover {
    background: var(--light-purple);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .room-details-modal .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .room-details-modal .modal-header,
    .room-details-modal .modal-body,
    .room-details-modal .modal-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .room-details-modal .features-grid {
        grid-template-columns: 1fr;
    }
    
    .room-details-modal .modal-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .room-details-modal .modal-actions {
        width: 100%;
    }
    
    .room-details-modal .btn-modal-close,
    .room-details-modal .btn-modal-book {
        flex: 1;
    }
}
.container {
    max-width: 1200px;

}
.fw-medium{
    font-weight: 500;
}
.rounded-8{
    border-radius: 8px;
}
.border-bottom-blue
{
    border-bottom: 2px solid  var(--light-purple);
}
