@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --primary-blue: #0066cc;
    --dark-blue: #004499;
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --yellow: orange;
    --text-xxs: 0.7rem;
    --text-xs: 0.767rem;
    --text-sm: 0.875rem;
    --text-md: 1rem;
    --text-lg: 1.2rem;
    --text-xl: 1.5rem;
    --text-2xl: 1.8rem;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.06);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    /* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */
    font-family: "Montserrat", sans-serif;
    color: var(--text-dark);
    font-size: var(--text-sm);
    background-color: #ffffff;
}
a, a:hover{ text-decoration: none; color: inherit;}
/* typography css start */
.text-xxs{ font-size: var(--text-xxs); }
.text-xs{ font-size: var(--text-xs); }
.text-sm{ font-size: var(--text-sm); }
.text-md{ font-size: var(--text-md); }
.text-lg{ font-size: var(--text-lg); }
.text-xl{ font-size: var(--text-xl); }
.text-2xl{ font-size: var(--text-2xl); }

/* text color css start */
.text-yellow{ color: var(--yellow);}
.text-primary-color{ color: var(--primary-blue); }
.text-primary-dark{ color: var(--dark-blue); }
.text-secondary-color{ color: var(--text-dark); }
.text-secondary-dark{ color: var(--text-muted); }
.text-light-color{ color: var(--bg-light); }
.main-heading{ border-left: 7px solid var(--dark-blue)}
/* background color css start */
.bg-yellow{ background-color: var(--yellow);}
.bg-primary-color{ background-color: var(--primary-blue); }
.bg-primary-dark{ background-color: var(--dark-blue); }
.bg-secondary-color{ background-color: var(--text-dark); }
.bg-secondary-dark{ background-color: var(--text-muted); }
.bg-light-color{ background-color: var(--bg-light); }
/* border css start*/

/* Navbar Styles */
.navbar-brand {
    font-weight: 700;
    color: var(--primary-blue) !important;
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-link {
    font-weight: 500;
    color: #444 !important;
}
.nav-link.active {
    color: var(--primary-blue) !important;
    border-bottom: 2px solid var(--primary-blue);
}

/* Hero Section */
.hero-section {
    background: #000;
    position: relative;
    min-height: calc(100vh - 94px);
    display: flex;
    align-items: stretch;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
@media (min-width: 992px) {
    .hero-section {
        justify-content: flex-start;
        padding-left: 5%;
    }
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}
.hero-section .container-fluid {
    position: relative;
    z-index: 2;
    max-width: 1340px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 60px;
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--yellow);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.hero-eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--yellow);
}
.hero-title {
    font-size: 3.625rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    overflow-wrap: break-word;
}
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.25rem;
    }
}
.hero-title span {
    color: var(--primary-blue);
}
.hero-scroll-indicator {
    position: absolute;
    left: 12px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    color: #fff;
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
}
@media (min-width: 992px) {
    .hero-scroll-indicator {
        left: 48px;
    }
}

/* Search Widget Box */
.search-container {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}
.search-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 0;
    overflow: hidden;
}
.search-tabs .nav-link {
    border: none;
    border-radius: 0;
    padding: 15px 30px;
    font-weight: 600;
    color: var(--text-muted) !important;
    background: #f1f3f5;
}
.search-tabs .nav-link.active {
    background: #fff !important;
    color: var(--primary-blue) !important;
    border-bottom: 3px solid var(--primary-blue);
}
.search-body {
    padding: 25px;
}
.input-group-custom {
    border-right: 1px solid #dee2e6;
    padding: 5px 15px;
}
.input-group-custom:last-child {
    border-right: none;
}
.input-group-custom label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2px;
    display: block;
    font-weight: 600;
}
.input-group-custom input, .input-group-custom select {
    border: none;
    padding: 0;
    font-weight: 500;
    outline: none;
    width: 100%;
    background: transparent;
}

/* Features Ribbon */
.features-ribbon {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.feature-icon {
    font-size: 1.8rem;
    color: var(--primary-blue);
}
.feature-title {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.95rem;
}
.feature-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Cards Layout */
.hotel-card .card-img-wrapper {
    height: 180px;
}
.hotel-card .card-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}
.heart-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.8);
    padding: 8px;
    border-radius: 50%;
    color: #666;
    cursor: pointer;
}
.card-body-custom { padding: 5px 10px 10px 10px; }
.card-footer-custom{ border-top: 1px dashed #666666; }
.prebooking{ border-left: 1px dashed #666666; }
.item-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}
.item-type {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.rating-badge {
    background-color: #e6f4ea;
    color: #137333;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}
.price-tag {
    font-weight: 700;
    color: #1a1a1a;
}
.price-tag span {
    font-size: 0.8rem;
    font-weight: normal;
    color: var(--text-muted);
}
/* cards css start */
.card-img-wrapper{ width: 100%; height: 12rem; }

/* --- SECTION HEADER --- */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    padding-left: 12px;
    border-left: 4px solid var(--primary);
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
}
.view-all {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.view-all:hover { color: var(--primary-hover); text-transform: translateY(-1px); }
.listing-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.listing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
/* Image Wrapper & Badges */
.card-image-wrapper { height: 14rem; background-color: #e2e8f0; }
.listing-card:hover .card-image-wrapper img { transform: scale(1.06); }
.badge-category {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.wishlist-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #64748b;
    stroke-width: 2;
    transition: var(--transition);
}
.wishlist-btn:hover {
    background: #fff;
    transform: scale(1.05);
}
.wishlist-btn:hover svg {
    stroke: #ef4444;
    fill: #ef4444;
}
/* Card Contents */
.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.rating-star {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #f59e0b;
    font-weight: 600;
}
/* Features Layout Row */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px dashed #e2e8f0;
    margin-bottom: auto; /* Pushes the footer down cleanly */
}
.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}
.feature-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 2;
}
/* Card Footer & Action Area */
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    margin-top: 20px;
    border-top: 1px solid #f1f5f9;
}
.price-container {
    display: flex;
    flex-direction: column;
}
.price-unit {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}
.btn-action {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
}
.btn-action:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}
/* details page css start */
 .hero-image {
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}
.gallery-thumb {
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}
.info-card.sticky-top{  top: 120px !important; }
.info-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,.08);
}
.amenity-item {
    padding: 12px;
    background: #f1f3f5;
    border-radius: 10px;
    text-align: center;
}
.host-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.review-card { border-left: 4px solid #0d6efd; }
/* listing page css start */
.mainSwiper { height: 350px; }
.thumbsSwiper { height: 100px; }
.cursor-pointer{ cursor: pointer; }
.thumbsSwiper .swiper-slide { opacity: 0.5; transition: 0.3s; }
.thumbsSwiper .swiper-slide-thumb-active { opacity: 1;  border: 3px solid #007aff; }
/* listing page css end */

.price-header {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}
.price-header span {
    font-size: 16px;
    font-weight: normal;
    color: #717171;
}
.date-picker-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #b0b0b0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}
.date-field { padding: 10px 12px; background-color: #fff; }
.date-field:first-child { border-right: 1px solid #b0b0b0; }
.date-field label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #222;
}
.date-field input[type="date"] {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    color: #222;
    padding: 0;
    background: transparent;
    cursor: pointer;
}
/* Optional Guest dropdown style matching your UI */
.guests-field {
    border: 1px solid #b0b0b0;
    border-radius: 8px;
    padding: 10px 12px;
}
.guests-field label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.guests-field select {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
}
.guests-field input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
    padding: 0;
}
.guests-field input::placeholder { color: #aaa; }
/* Primary CTA Button */
.book-btn {
    width: 100%;
    background-color: var(--dark-blue);
    color: white;
    transition: background 0.2s ease;
}
.book-btn:hover { background-color: var(--primary-blue); color: white; }
/* Input Bar */
.datepicker-input-bar {
    display: flex;
    border: 1px solid var(--border-color);
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.input-box { flex: 1; padding: 12px 16px; }
.input-box:first-child {  border-right: 1px solid var(--border-color); }
.date-display.selected {
    color: var(--text-color);
    font-weight: 500;
}
.swiper{ z-index: 0 !important;}
/* Calendar Dropdown */
.calendar-dropdown {
    z-index: 999 !important;
    width: 600px;
}
/* Navigation Layer */
.nav-layer {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    pointer-events: none;
}
.nav-btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
    pointer-events: auto;
    transition: background 0.2s;
}
.nav-btn:hover { background: #f5f5f5; }
/* Dual Months Container */
.dual-months-container { display: flex; gap: 30px; }
.month-panel { flex: 1; }
.month-header {
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-bottom: 15px;
    height: 32px;
    line-height: 32px;
}
.weekdays-grid, .days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}
.weekdays-grid {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    margin-bottom: 10px;
}
.day {
    font-size: 13px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    user-select: none;
    margin: 2px 0;
}
.day:hover:not(.empty) {  background-color: #f5f5f5; }
.day.empty {  cursor: default; }
/* Selection States */
.day.start-date {
    background-color: #e056fd !important;
    color: white !important;
    border-radius: 50% 0 0 50% !important;
}
.day.end-date {
    background-color: #e056fd !important;
    color: white !important;
    border-radius: 0 50% 50% 0 !important;
}
.day.in-range { background-color: #fbebee !important;  border-radius: 0 !important; }
.day.start-date.end-date { border-radius: 50% !important; }
/* details page css end */
/* listing page css start */
.filters-sidebar {
    height: fit-content;
    max-height: 30rem;
    top: 100px;
    scrollbar-width: thin;
    scrollbar-color: #b1b1b1 transparent;
}
.filters-sidebar ::-webkit-scrollbar{width:5px; height:5px}
.filters-sidebar ::-webkit-scrollbar-track{border-radius:9999px}
.filters-sidebar ::-webkit-scrollbar-thumb{border-radius:9999px;background-color:#b1b1b1;}

.filter-group:last-child{
    border:none !important;
    margin:0 !important;
    padding: 0 !important;
}
.filter-checkbox{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #4b5563;
    font-size: 14px;
    cursor: pointer;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* mobile sort & filter bar (car listing) */
@media (max-width: 767.98px) {
    .pb-mobile-filter-bar { padding-bottom: 64px; }
}

.mobile-filter-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: flex;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
}
.mobile-filter-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 0;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}
.mobile-filter-bar-divider { width: 1px; background: #e5e7eb; }
.mobile-filter-dot {
    align-self: flex-start;
    margin-top: -4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-blue);
}

.mobile-filter-overlay,
.mobile-sort-overlay { display: none; }

.mobile-filter-overlay.show {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 1060;
    background: #fff;
}
.mobile-filter-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 700;
    font-size: 15px;
}
.mobile-filter-clear-btn {
    background: none;
    border: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 13px;
}
.mobile-filter-panel-body { flex: 1; display: flex; overflow: hidden; }
.mobile-filter-categories {
    width: 38%;
    background: var(--bg-light);
    overflow-y: auto;
    border-right: 1px solid #e5e7eb;
}
.mobile-filter-category {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 12px;
    background: none;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}
.mobile-filter-category.active {
    background: #fff;
    color: var(--primary-blue);
    font-weight: 700;
    border-left: 3px solid var(--primary-blue);
}
.mobile-filter-options { flex: 1; overflow-y: auto; padding: 14px 16px; }
.mobile-filter-pane { display: none; }
.mobile-filter-pane.active { display: block; }
.mobile-filter-panel-footer {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-top: 1px solid #e5e7eb;
}
.mobile-filter-close-btn,
.mobile-filter-apply-btn {
    flex: 1;
    padding: 10px 0;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
}
.mobile-filter-apply-btn {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
}

.mobile-sort-overlay.show {
    display: flex;
    align-items: flex-end;
    position: fixed;
    inset: 0;
    z-index: 1060;
    background: rgba(0, 0, 0, 0.4);
}
.mobile-sort-sheet { width: 100%; background: #fff; border-radius: 16px 16px 0 0; padding: 8px 0 16px; }
.mobile-sort-header {
    padding: 10px 16px;
    margin-bottom: 4px;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 700;
    font-size: 14px;
}
.mobile-sort-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    background: none;
    border: none;
    font-size: 14px;
    color: var(--text-dark);
}
.mobile-sort-option.active { color: var(--primary-blue); font-weight: 700; }

body.mobile-overlay-open { overflow: hidden; }

@media (min-width: 768px) {
    .mobile-filter-bar,
    .mobile-filter-overlay,
    .mobile-sort-overlay {
        display: none !important;
    }
}
/* listing page css end */

/* about page css start */
.about-hero {
    background-image: url(../img/innerpage.jpg);
    background-position: bottom;
    background-size: cover;
    /* background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%); */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    height: 20rem;
}
.pillar-card { transition: transform 0.2s; }
.pillar-card:hover { transform: translateY(-4px);}
.pillar-icon { width: 54px; height: 54px; background: #dbedff; color: var(--primary-blue); }
/* contact us page css start */
.form-control, .form-select{ height: 2.5rem;}
.contact-info {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #ffffff;
}
.info-item span {
    font-size: 1.2rem;
    margin-right: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* listing pagination css start */
.listing-pagination { width: 100%; }
.listing-pagination .pagination { gap: 6px; }
.listing-pagination .page-item .page-link {
    min-width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: var(--text-sm);
    transition: var(--transition);
}
.listing-pagination .page-item .page-link:hover {
    background-color: #eef5ff;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}
.listing-pagination .page-item.active .page-link {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}
.listing-pagination .page-item.disabled .page-link {
    color: #c2c7cf;
    background-color: #fff;
    border-color: #e5e7eb;
    cursor: not-allowed;
}
.listing-pagination .page-item.disabled .page-link:hover { transform: none; }
@media (max-width: 575.98px) {
    .listing-pagination { justify-content: center !important; }
    .listing-pagination p { width: 100%; text-align: center; }
}
