/* ===============================
   OSTAY HEADER
================================ */
#toast-container {
    z-index: 999999;
}
.ostay-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
}

.ostay-header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* BRAND */
.ostay-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

.ostay-brand img {
    height: 38px;
}

/* NAV */
.ostay-nav {
    display: flex;
    gap: 28px;
}

.ostay-nav a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    position: relative;
}

.ostay-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #0f766e;
    transition: 0.3s;
}

.ostay-nav a:hover::after {
    width: 100%;
}

/* ACTIONS */
.ostay-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-outline {
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid #0f766e;
    color: #0f766e;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    padding: 9px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f766e, #22c55e);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.25);
}

.menu-toggle {
    display: none;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
}

/* MOBILE MENU */
.ostay-mobile-nav {
    display: none;
    flex-direction: column;
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.ostay-mobile-nav a {
    padding: 12px 0;
    text-decoration: none;
    color: #334155;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ostay-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .ostay-mobile-nav {
        display: flex;
    }
}

/* ===============================
   OSTAY Page
================================ */

/* ================= DESIGN TOKENS ================= */
:root {
    --primary: #4f46e5;
    --primary-soft: #eef2ff;
    --text-main: #020617;
    --text-muted: #475569;
    --border: #e5e7eb;
    --bg-main: #f8fafc;
    --white: #ffffff;
    --radius: 14px;
    --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-strong: 0 20px 40px rgba(15, 23, 42, 0.12);
}

/* ================= BASE ================= */
.home-page {
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.section {
    padding: 90px 0;
}

.soft-bg {
    background: var(--white);
}

/* ================= HERO ================= */
.site-badge {
    display: inline-block;
    background: #eef2ff;
    color: #4f46e5;
    border: 1px solid #c7d2fe;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.site-badge.pulse {
    animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.35);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

.hero {
    padding: 140px 0 120px;
    background: linear-gradient(to bottom, #ffffff 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--border);
}

.hero-grid {
    max-width: 760px;
}

.pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

.hero h1 {
    font-size: 30px;
    font-weight: 700;
    margin: 20px 0 16px;
    color: orange;
    line-height: auto;
}

.hero p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 640px;
}

.actions {
    margin-top: 28px;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    margin-right: 12px;
    transition: all 0.2s ease;
}

.btn.primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.3);
}

.btn.primary:hover {
    transform: translateY(-1px);
}

.btn.secondary {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-main);
}

/* ================= SEARCH ================= */
body {
    font-family: Inter, sans-serif;
    background: #fff7f0;
    color: #333;
}

/* HERO */

.ostay-hero {
    background: linear-gradient(135deg, #ff6a00, #ff3c00);
    overflow: hidden;
    color: white;
    padding: 25px 25px;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
}

/* SEARCH */

.hero-search {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    max-width: 900px;
    margin: auto;
}

.search-item {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
}

.search-item input,
.search-item select {
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 6px;
}

.search-btn {
    background: green;
    color: white;
    border: none;
    padding: 4px 20px;
    border-radius: 8px;
    cursor: pointer;
}

/* SECTIONS */

.section {
    padding: 80px 20px;
}

.section-head {
    text-align: center;
    margin-bottom: 40px;
}

/* GRID */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    border-left: 10px solid green;
    border-right: 10px solid orangered;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    font-weight: 700;
    border-left: 10px solid orangered;
    border-right: 10px solid green;
}

/* CARDS */

.feature-card,
.step {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}
/* ===========================
   DESTINATIONS (DESKTOP)
=========================== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.destination-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    display: block;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
    background: #f5f5f5;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
}

/* ===========================
   TABLET
=========================== */
@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }

    .destination-card {
        height: 180px;
    }
}

/* ===========================
   MOBILE
=========================== */
@media (max-width: 576px) {
    .destinations-grid {
        grid-template-columns: 1fr; /* 1 column */
    }

    .destination-card {
        height: 160px;
    }

    .destination-overlay {
        padding: 10px;
    }

    .destination-overlay h3 {
        font-size: 16px;
    }

    .destination-overlay span {
        font-size: 12px;
    }
}
/* LISTINGS */
/* HOTEL LISTING GRID */

.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* HOTEL CARD */

.listing-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.25s;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* IMAGE */

.listing-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* CARD INFO */

.listing-info {
    padding: 16px;
}

.listing-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
}

/* LOCATION */

.location {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}

/* BUTTON */

.book-btn {
    display: inline-block;
    background: #ff6a00;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.25s;
}

.book-btn:hover {
    background: #e55a00;
}

/* REMOVE LINK STYLES */

.listing-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
/* CTA */
.cta {
    position: relative;
    padding: 50px 20px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #ff6a00, #ff3c00);
    overflow: hidden;
}

/* floating shapes */

.cta::before,
.cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.cta::before {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -80px;
}

.cta::after {
    width: 350px;
    height: 350px;
    bottom: -120px;
    right: -120px;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
}

.cta h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* buttons */

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #fff;
    color: #ff4d00;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    background: #fff;
    color: #ff4d00;
}
/* ================= LISTINGS ================= */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.listing-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.listing-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.listing-info {
    padding: 16px;
}

.listing-info h3 {
    font-size: 18px;
    font-weight: 600;
}

.listing-info span {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 2px;
}

.link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

/* ================= VALUE GRID ================= */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.value-grid h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.value-grid p {
    color: var(--text-muted);
}

/* ================= OPERATIONS ================= */
.ops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.ops-grid div {
    background: var(--bg-main);
    padding: 18px;
    border-radius: var(--radius);
    font-weight: 500;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category {
    background: white;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    font-size: 18px;
    font-weight: 600;
    border-left: 6px solid green;
    border-right: 6px solid orangered;
}
.ops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.ops-grid div {
    background: white;
    padding: 18px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    font-weight: 500;
    transition: 0.25s;
}

.ops-grid div:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/*============================
   FOOTER
================================ */
/* ================= FOOTER ================= */
.ostay-footer {
    background: #ffffff;
    border-top: 1px solid #e5ebe7;
    padding: 70px 20px 0;
    font-family: Inter, system-ui, sans-serif;
    box-shadow: 0px 5px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-col h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #020617;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #020617;
}

.footer-col p {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: #475569;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #4f46e5;
}

.footer-col.brand p {
    max-width: 360px;
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #121111;
    font-weight: 700;
    border-top: 1px solid #e5e7eb;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   GLOBAL RESET & BASE
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    background: #f8fafc;
    color: #0f172a;
}

/* ===============================
   HOME PAGE WRAPPER
================================ */
.home-page {
    width: 100%;
    overflow-x: hidden;
}

/* ===============================
   HERO SECTION
================================ */
.hero {
    min-height: 70vh;
    background: linear-gradient(
        135deg,
        rgba(15, 118, 110, 0.95),
        rgba(34, 197, 94, 0.9)
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    color: #ffffff;
    position: relative;
}

/* soft glow effect */
.hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    filter: blur(120px);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero p {
    margin-top: 18px;
    font-size: 18px;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.95;
}

/* ===============================
   SECTION (FEATURED HOTELS)
================================ */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

/* underline accent */
.section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0f766e, #22c55e);
    margin: 14px auto 0;
    border-radius: 10px;
}

/* ===============================
   HOTEL CARD GRID
================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD */
.card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* top gradient accent */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0f766e, #22c55e);
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.card p {
    font-size: 14px;
    color: #64748b;
}

/* hover effect */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .section {
        padding: 60px 20px;
    }

    .section h2 {
        font-size: 28px;
    }
}
.hero {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
}

.section {
    padding: 40px 20px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 15px;
}

.card-body h3 {
    margin: 0 0 5px;
}

.card-body .city {
    color: #666;
    font-size: 0.9rem;
}

.menu-items {
    padding: 0 12px;
}

.menu-item:last-child {
    border-bottom: none;
}

/* Veg / Non-veg dots */
.veg-dot,
.nonveg-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.veg-dot {
    background: #2ecc71;
}

.nonveg-dot {
    background: #e74c3c;
}

/* For Category Hover of menu  */

/* Base category card */
.category-card {
    position: relative;
    padding: 8px;
    border-radius: 16px;
    background: transparent;
}

/* Image container animation */
.category-card .bg-white {
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

/* Hover / touch feedback */
.category-card:hover {
    background: rgb(231, 231, 231);
    transform: translateY(-3px);
    color: white;
}

/* Hover image lift */
.category-card:hover .bg-white {
    transform: scale(1.03);
    box-shadow: 0 8px 18px rgb(228, 228, 228);
}

/* ACTIVE category */
.category-card.active {
    background: white;
    box-shadow: 0 6px 18px rgb(22, 22, 23);
}

/* Active image highlight */
.category-card.active .bg-white {
    box-shadow:
        0 0 0 2px #fafbfd,
        0 10px 22px rgba(10, 9, 9, 0.35);
    transform: scale(1.05);
}

/* Category name */
.category-card small {
    margin-top: 4px;
    display: block;
    color: #333;
    transition:
        color 0.25s ease,
        font-weight 0.25s ease;
}

/* Category name active */
.category-card.active small {
    color: #fd5d0d;
    font-weight: 700;
}

/* Bottom active indicator bar */
.category-card::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 4px;
    background: #0d6efd;
    border-radius: 4px;
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

/* Show indicator when active */
.category-card.active::after {
    width: 40%;
}

/* Touch feedback (mobile) */
.category-card:active {
    transform: scale(0.97);
}
/* ===============================
   RESPONSIVE/ Hotel Page/Mini website start
================================ */
/* ================= HOTEL BANNER ================= */
.hero-slider {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    width: 100%;
}

.hero-slider img {
    width: 100%;
    height: 400px; /* 🔥 KEY FIX */
    display: block;
}
@media (max-width: 576px) {
    .hero-slider img {
        width: 100%;
        height: auto; /* 🔥 IMPORTANT */
        object-fit: contain;
        display: block;
    }
}
/* ===========================
   SLIDE CAPTION
=========================== */

.hero-slide-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    padding: 18px 22px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

.hero-slide-caption h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
}

.hero-slide-caption p {
    font-size: 15px;
    opacity: 0.9;
}

/* ===========================
   HERO OVERLAY
=========================== */

.hero-overlay {
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    width: 100%;
    max-width: 1150px;
    background: #fff;
    border-radius: 14px;
    padding: 10px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* ===========================
   HOTEL INFO
=========================== */

.hero-info h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 6px;
}

.hotel-meta {
    font-size: 14px;
    color: #555;
}

/* ===========================
   BOOKING BAR
=========================== */

.hero-booking {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero-booking input,
.hero-booking select {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    min-width: 140px;
}

.hero-booking input:focus,
.hero-booking select:focus {
    border-color: #ff6a00;
    outline: none;
}

/* ===========================
   SEARCH BUTTON
=========================== */

.hero-search-btn {
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 11px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.hero-search-btn:hover {
    background: #e65800;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 768px) {
    .hero-slider {
        height: 380px;
    }

    .hero-slider img {
        height: 380px;
    }

    .hero-overlay {
        position: absolute;
        bottom: 40px;
        width: 100%;
        display: flex;
        justify-content: center; /* center horizontally */
    }

    .hero-info {
        text-align: center; /* center text */
        color: #fff;
    }

    .hero-booking {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-booking input,
    .hero-booking select {
        width: 100%;
    }

    .hero-search-btn {
        width: 100%;
    }
}

/* ================= GRID LAYOUT ================= */
.hotel-layout {
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    gap: 20px;
}

.center-content {
    min-width: 0;
}

.gallery-slider .swiper-slide {
    width: 140px;
}

.gallery-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
}
/* ================= SIDEBAR BOX ================= */
/* sidebar left and right */
/* sidebar */

.left-sidebar {
    position: sticky;
    top: 100px;
}

/* card */

.sidebar-box {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.sidebar-box:hover {
    transform: translateY(-3px);
}

/* title */

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
}
/* Sidebar sticky only for desktop */
@media (max-width: 768px) {
    .sidebar-box,
    .hotel-sidebar,
    .sidebar-sticky,
    .left-sidebar {
        position: relative !important;
        top: auto !important;
    }
}
/* booking widget */

.booking-widget {
    background: linear-gradient(135deg, #0066ff, #0052cc);
    color: white;
}

.booking-widget label {
    font-size: 13px;
    margin-bottom: 4px;
    display: block;
}

.booking-widget .form-control {
    border-radius: 8px;
    border: none;
    padding: 10px;
    margin-bottom: 10px;
}

.booking-field {
    margin-bottom: 10px;
}

/* button */

.btn-check {
    width: 100%;
    border: none;
    padding: 12px;
    border-radius: 10px;
    background: white;
    color: #0052cc;
    font-weight: 700;
    font-size: 15px;
    transition: 0.25s;
}

.btn-check:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.booking-note {
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.9;
    text-align: center;
}

/* filters */

.filter-item {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* amenities */

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.amenity-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9fafc;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    transition: 0.2s;
}

.amenity-card:hover {
    background: #eef3ff;
    transform: translateY(-2px);
}

.amenity-icon {
    width: 18px;
    height: 18px;
}

.no-amenity {
    font-size: 14px;
    color: #777;
}

.right-sidebar {
    position: sticky;
    top: 100px;
}

/* card */

.sidebar-box {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.sidebar-box:hover {
    transform: translateY(-3px);
}

/* booking card */

.premium-booking {
    background: linear-gradient(135deg, #ff6a00, #ff3c00);
    color: white;
}

.booking-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-tag {
    background: white;
    color: #ff3c00;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.booking-text {
    margin: 12px 0;
    font-size: 14px;
    opacity: 0.9;
}

.btn-reserve {
    width: 100%;
    border: none;
    padding: 13px;
    border-radius: 10px;
    background: white;
    color: #ff3c00;
    font-weight: 700;
    font-size: 15px;
    transition: 0.25s;
}

.btn-reserve:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.booking-secure {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.9;
    text-align: center;
}

/* offers */

.offer-heading {
    font-weight: 700;
    margin-bottom: 14px;
}

.premium-offer-card {
    display: flex;
    gap: 12px;
    background: #fff8f4;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid #ffe3d8;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.premium-offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* discount badge */

.offer-discount {
    background: linear-gradient(135deg, #ff5722, #ff2d00);
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    min-width: 60px;
}

.offer-discount span {
    display: block;
    font-size: 11px;
    font-weight: 500;
}

/* offer body */

.offer-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.offer-desc {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
}

.offer-valid {
    font-size: 12px;
    color: #888;
}

/* contact */

.contact-card {
    background: #f9fafc;
}

.contact-row {
    margin-bottom: 10px;
}

.contact-row span {
    font-size: 13px;
    color: #777;
    display: block;
}

.contact-row strong {
    font-size: 15px;
}

/* no offer */

.no-offer {
    font-size: 14px;
    color: #777;
}

/* ================= Reservation Modal ================= */
/* Reservation Modal */

.reservation-modal {
    border-radius: 12px;
    overflow: hidden;
}

.reservation-modal .modal-header {
    background: linear-gradient(135deg, #ff6a00, #ff3c00);
    color: white;
}

.reservation-modal label {
    font-weight: 600;
    font-size: 14px;
}

.reservation-modal .form-control {
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
}

.reservation-modal .btn-success {
    background: #ff6a00;
    border: none;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    transition: 0.2s;
}

.reservation-modal .btn-success:hover {
    background: #e85800;
}

/* Mobile */

@media (max-width: 768px) {
    .reservation-modal .modal-body {
        padding: 15px;
    }

    .reservation-modal label {
        font-size: 13px;
    }
}
/* ================= ROOM SLIDER ================= */
.room-image-slider {
    position: relative;
}

.room-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #058c3d;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 5px;
    font-weight: 500;
    z-index: 9999;
}

.room-badge.danger {
    background: #e74c3c;
}
.deal-tag {
    font-size: 11px;
    background: #eafaf1;
    color: #27ae60;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 5px;
}
.room-info {
    padding: 8px 12px;
    flex: 1;
}

/* header */

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.room-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* rating */

.room-rating {
    background: #003580;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
}

.room-rating span {
    font-size: 11px;
    opacity: 0.9;
    margin-left: 3px;
}

/* meta */

.room-meta {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
}

/* features */
.room-features {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 1px;
    border-radius: 4px;
    line-height: 1;
}

/* colors */

.feature-tag.green {
    background: #eafaf1;
    color: #27ae60;
}

.feature-tag.blue {
    background: #eef4ff;
    color: #2962ff;
    width: 100%;
}

.feature-tag.yellow {
    background: #fff7e6;
    color: #f39c12;
}

.feature-icon {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #444;
    background: #f5f7fa;
    padding: 3px 7px;
    border-radius: 5px;
}

.feature-icon small {
    font-size: 5px;
    color: #666;
}

.badge-green {
    background: #eafaf1;
    color: #27ae60;
    padding: 2px 6px;
    border-radius: 4px;
}

.badge-blue {
    background: #eef5ff;
    color: #2979ff;
    padding: 2px 6px;
    border-radius: 4px;
}

.badge-yellow {
    background: #fff7e6;
    color: #f39c12;
    padding: 2px 6px;
    border-radius: 4px;
}

/* urgency */

.room-alert {
    font-size: 12px;
    color: #e74c3c;
    margin-top: 4px;
    font-weight: 600;
}
.room-image-slider {
    width: 295px;
    height: auto;
    position: relative;
    overflow: hidden;
    object-fit: cover;
}

.room-image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-prev,
.room-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    z-index: 5;
    cursor: pointer;
}

.room-prev {
    left: 6px;
}
.room-next {
    right: 6px;
}

.room-image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    width: 200px;
}

.room-image-gallery img {
    width: 100%;
    height: 85px;
    object-fit: cover;
    border-radius: 6px;
}
.room-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.room-row {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: 0.2s;
}

.room-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.room-image {
    width: 200px;
    height: 140px;
    object-fit: cover;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-info {
    flex: 1;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.room-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
}

.room-features span {
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    margin-right: 6px;
}

.room-book {
    width: 180px;
    border-left: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.rooms-left {
    font-size: 12px;
    color: #e63946;
    font-weight: 600;
    margin-bottom: 6px;
}
.price {
    font-size: 22px;
    font-weight: 700;
    color: green;
    margin-bottom: 8px;
}

.price span {
    font-size: 12px;
    color: #777;
}

.btn-book {
    background: #ff6a00;
    border: none;
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-book:hover {
    background: #e45700;
}
@media (max-width: 768px) {
    .room-row {
        flex-direction: column;
    }

    .room-image {
        width: 100%;
        height: 180px;
    }

    .room-book {
        width: 100%;
        border-left: none;
        border-top: 1px solid #eee;
        padding: 10px;
    }
}

/* ================= GALLERY ================= */
.hotel-gallery {
    margin-top: 20px;
}

/* BIG IMAGE */

.gallery-main-slider img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

/* THUMBNAILS */
/* THUMBNAIL ACTIVE STATE */

.gallery-slider .swiper-slide {
    opacity: 0.6;
    cursor: pointer;
    transition: 0.25s;
}

.gallery-slider .swiper-slide-thumb-active {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-slider img {
    border-radius: 8px;
    border: 2px solid transparent;
}

.gallery-slider .swiper-slide-thumb-active img {
    border: 2px solid #ff6a00;
}

.gallery-slider img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-slider img:hover {
    transform: scale(1.05);
}

.gallery-slider .swiper-slide {
    width: 140px;
}

/* BIG NAV BUTTON */

/* VIEW ALL BUTTON */

.view-all-photos {
    margin-top: 12px;
    text-align: right;
}

.view-all-photos button {
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* MODAL */

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    overflow: auto;
    padding: 40px;
}

.gallery-modal-content {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}

.gallery-close {
    float: right;
    font-size: 28px;
    cursor: pointer;
}

/* GRID */

.gallery-grid-modal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.gallery-grid-modal img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-grid-modal img:hover {
    transform: scale(1.05);
}

.big-prev,
.big-next {
    background: rgba(0, 0, 0, 0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
}

.big-prev::after,
.big-next::after {
    font-size: 16px;
}
/* ================= Amenities ================= */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.amenity-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #f8f9fb;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.amenity-card:hover {
    background: #f96138;
    transform: translateY(-2px);
}

.amenity-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
/* ================= Hotel Offers ================= */

.offer-card {
    position: relative;
    background: #fff7f0;
    border: 1px dashed #ff6a00;
    padding: 15px;
    border-radius: 12px;
    margin-top: 12px;
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: #ff6a00;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.offer-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.offer-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.offer-valid {
    font-size: 12px;
    color: #999;
}

/* ================= VIDEO SECTION ================= */

.hotel-video-section {
    margin-top: 30px;
}

/* TITLE */

.section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #222;
}

/* FLEX VIDEO GRID */

.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

/* CARD */

.video-card {
    flex: 1 1 calc(50% - 22px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

/* HOVER EFFECT */

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

/* VIDEO WRAPPER */

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    overflow: hidden;
}

/* IFRAME */

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* VIDEO TITLE */

.video-title {
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background: #fafafa;
}

/* EMPTY STATE */

.empty-video {
    padding: 25px;
    border: 1px dashed #ddd;
    border-radius: 10px;
    text-align: center;
    color: #777;
    background: #fafafa;
}
.video-wrapper::after {
    content: "▶";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 42px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
/* ================= RESPONSIVE ================= */

/* Tablet */

@media (max-width: 900px) {
    .video-card {
        flex: 1 1 100%;
    }
}

/* Mobile */

@media (max-width: 500px) {
    .video-grid {
        gap: 15px;
    }

    .video-title {
        font-size: 13px;
    }
}

/* ================= MAP ================= */
.map iframe {
    width: 100%;
    height: 340px;
    border-radius: 14px;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* ================= REVIEWS ================= */

.rating-box {
    background: #16a34a;
    color: white;
    font-size: 22px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.stars {
    font-size: 14px;
}

.star {
    color: #d1d5db;
}

.star.filled {
    color: #facc15;
}

.review-text {
    font-size: 14px;
    margin-top: 10px;
    color: #374151;
}

.verified {
    font-size: 12px;
    color: #16a34a;
    margin-top: 10px;
}

/* ================= NEARBY ================= */
.nearby-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
}

.nearby-img {
    width: 180px;
    height: 160px;
    object-fit: cover;
}

.nearby-info {
    padding: 18px;
}

.nearby-name {
    font-size: 20px;
    font-weight: 600;
}

.distance-badge {
    background: #ff6a00;
    color: #fff;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin: 6px 0;
}

.nearby-desc {
    font-size: 14px;
    color: #666;
}

/* ================= BUTTONS ================= */
.btn-primary {
    background: linear-gradient(
        135deg,
        var(--ostay-primary),
        var(--ostay-secondary)
    );
    border: none;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-success {
    background: #1cc88a;
    border: none;
    border-radius: 8px;
    font-weight: 600;
}
/* ================= MOBILE ================= */
@media (max-width: 992px) {
    .hotel-layout {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}
