﻿/* ═══════════════════════════════════════════════
   BUTEL DHARAMSHALA — PUBLIC WEBSITE THEME
   Primary:   #135846 (Green)
   Secondary: var(--hotel-secondary) (Red)
   Base:      Black & White
═══════════════════════════════════════════════ */

/* ── Google Fonts ───────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ──────────────────────────── */
:root {
    --primary: #135846;
    --primary-dark: #0d3d30;
    --primary-light: #1a7358;
    --secondary: var(--hotel-secondary);
    --secondary-dark: #c42a1e;
    --white: #ffffff;
    --black: #111111;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #adb5bd;
    --gray-700: #495057;
    --gray-900: #212529;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* ── Reset & Base ───────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

body.public-page {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

    body.public-page h1,
    body.public-page h2,
    body.public-page h3,
    body.public-page h4,
    body.public-page h5 {
        font-family: var(--font-heading);
        font-weight: 600;
        line-height: 1.2;
        color: var(--black);
    }

    body.public-page a {
        text-decoration: none;
    }

    body.public-page img {
        max-width: 100%;
    }

/* ── Public Navbar ──────────────────────────── */
.pub-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #212529de;
    padding: 20px 0;
    transition: var(--transition);
}

    .pub-navbar.scrolled {
        background: var(--white);
        padding: 12px 0;
        box-shadow: var(--shadow-sm);
    }

    .pub-navbar .navbar-brand {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white) !important;
        letter-spacing: 1px;
        transition: var(--transition);
    }

    .pub-navbar.scrolled .navbar-brand {
        color: var(--black) !important;
    }

    .pub-navbar .nav-link {
        color: var(--white) !important;
        font-weight: 500;
        font-size: 0.95rem;
        padding: 8px 16px !important;
        letter-spacing: 0.3px;
        transition: var(--transition);
    }

    .pub-navbar.scrolled .nav-link {
        color: var(--gray-900) !important;
    }

    .pub-navbar .nav-link:hover {
        color: var(--primary) !important;
    }

    .pub-navbar .btn-book-header {
        background: var(--primary);
        color: var(--white) !important;
        border-radius: var(--radius-sm);
        padding: 10px 24px !important;
        font-weight: 600;
        letter-spacing: 0.5px;
        border: 2px solid var(--primary);
        transition: var(--transition);
    }

        .pub-navbar .btn-book-header:hover {
            background: var(--white);
            color: var(--primary) !important;
        }

    .pub-navbar.scrolled .btn-book-header {
        background: var(--primary);
        color: var(--white) !important;
    }

/* ── Hero Section ───────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d3d30 0%, #135846 50%, #1a5c3a 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    transition: opacity 1s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(13,61,48,0.7) 0%, rgba(19,88,70,0.5) 60%, rgba(0,0,0,0.8) 100% );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

    .hero-title span {
        color: var(--primary-light);
        display: block;
    }

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 500px;
}

/* ── Hero Booking Widget ────────────────────── */
.booking-widget {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.3);
}

    .booking-widget h5 {
        font-family: var(--font-heading);
        font-size: 1.1rem;
        color: var(--black);
        margin-bottom: 20px;
        font-weight: 600;
    }

    .booking-widget .form-label {
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--gray-700);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }

    .booking-widget .form-control,
    .booking-widget .form-select {
        border: 1.5px solid var(--gray-200);
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        font-size: 0.95rem;
        transition: var(--transition);
        height: 44px;
    }

        .booking-widget .form-control:focus,
        .booking-widget .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(19,88,70,0.12);
        }

.btn-check-availability {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    width: 100%;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

    .btn-check-availability:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
    }

/* ── Stats Counter Section ──────────────────── */
.stats-section {
    background: var(--black);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

    .stat-number span {
        color: var(--primary-light);
    }

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ── Section Common ─────────────────────────── */
.pub-section {
    padding: 100px 0;
}

.pub-section-alt {
    padding: 100px 0;
    background: var(--gray-100);
}

.section-tag {
    display: inline-block;
    background: rgba(19,88,70,0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-700);
    font-weight: 300;
    max-width: 560px;
}

/* ── Room Cards ─────────────────────────────── */
.room-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

    .room-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

.room-card-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

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

.room-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

    .room-badge.unavailable {
        background: var(--gray-700);
    }

.wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    color: var(--gray-700);
    font-size: 0.9rem;
}

    .wishlist-btn:hover,
    .wishlist-btn.saved {
        color: var(--secondary);
    }

    .wishlist-btn.saved {
        background: #fff0ef;
    }

.room-card-body {
    padding: 20px;
}

.room-type-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.room-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.room-card-desc {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.room-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.room-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--gray-700);
}

    .room-feature i {
        color: var(--primary);
        font-size: 0.75rem;
    }

.room-amenity-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.amenity-tag {
    background: rgba(19,88,70,0.08);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.room-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--gray-200);
}

.price-from {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.price-amount {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.price-night {
    font-size: 0.75rem;
    color: var(--gray-500);
    display: block;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #f5a623;
}

.btn-book-room {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .btn-book-room:hover {
        background: var(--primary-dark);
        color: var(--white);
        transform: translateY(-1px);
    }

.btn-view-room {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 9px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

    .btn-view-room:hover {
        background: var(--primary);
        color: var(--white);
    }

/* ── Why Choose Us ──────────────────────────── */
.trust-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

    .trust-card:hover {
        background: var(--white);
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }

.trust-icon {
    width: 64px;
    height: 64px;
    background: rgba(19,88,70,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    background: var(--primary);
    color: var(--white);
}

.trust-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.trust-text {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* ── Amenities Grid ─────────────────────────── */
.amenity-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

    .amenity-card:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow-md);
    }

.amenity-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(19,88,70,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.amenity-card:hover .amenity-icon-wrap {
    background: var(--primary);
    color: var(--white);
}

.amenity-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

/* ── Testimonials ───────────────────────────── */
.review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: var(--transition);
}

    .review-card:hover {
        box-shadow: var(--shadow-md);
        border-color: var(--primary);
    }

.review-stars {
    color: #f5a623;
    margin-bottom: 14px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-200);
}

.reviewer-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--black);
    margin: 0;
}

.reviewer-meta {
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* ── Offers Banner ──────────────────────────── */
.offer-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

    .offer-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

.offer-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

    .offer-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

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

.offer-discount-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.offer-body {
    padding: 20px;
}

.offer-tag {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.offer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.offer-prices {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.offer-original {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.offer-discounted {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.offer-validity {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.btn-offer {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
    text-align: center;
    display: block;
    text-decoration: none;
}

    .btn-offer:hover {
        background: var(--primary-dark);
        color: var(--white);
    }

/* ── CTA Banner ─────────────────────────────── */
.cta-banner {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: rgba(255,255,255,0.04);
        border-radius: 50%;
    }

    .cta-banner h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
        color: var(--white);
        margin-bottom: 12px;
    }

    .cta-banner p {
        color: rgba(255,255,255,0.8);
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

.btn-cta-white {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 36px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

    .btn-cta-white:hover {
        background: transparent;
        color: var(--white);
    }

/* ── Footer ─────────────────────────────────── */
.pub-footer {
    background: #0a0a0a;
    color: rgba(255,255,255,0.75);
    padding: 70px 0 30px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

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

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: rgba(255,255,255,0.6);
        font-size: 0.9rem;
        transition: var(--transition);
        text-decoration: none;
    }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 4px;
        }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

    .footer-contact-item i {
        color: var(--primary-light);
        margin-top: 3px;
        width: 16px;
        flex-shrink: 0;
    }

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 40px 0 20px;
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* ── Booking Flow Styles ────────────────────── */
.booking-page {
    background: var(--gray-100);
    min-height: 100vh;
    padding: 100px 0 60px;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    align-items: center;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    flex-shrink: 0;
    border: 2px solid var(--gray-300);
}

    .step-circle.active {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(19,88,70,0.15);
    }

    .step-circle.completed {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary);
    }

.step-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-top: 6px;
    text-align: center;
    white-space: nowrap;
}

    .step-label.active {
        color: var(--primary);
        font-weight: 700;
    }

.step-connector {
    width: 60px;
    height: 2px;
    background: var(--gray-300);
    margin: 0 8px;
    margin-bottom: 20px;
    transition: var(--transition);
}

    .step-connector.done {
        background: var(--primary);
    }

.step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.booking-card-header {
    background: var(--primary);
    color: var(--white);
    padding: 20px 28px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.booking-card-body {
    padding: 28px;
}

/* Price summary sidebar */
.price-summary-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: sticky;
    top: 90px;
}

.price-summary-header {
    background: var(--black);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.price-summary-body {
    padding: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

    .price-row.total {
        border-top: 2px solid var(--gray-200);
        padding-top: 12px;
        margin-top: 8px;
        font-weight: 700;
        font-size: 1.05rem;
        color: var(--black);
    }

.price-row-label {
    color: var(--gray-700);
}

.price-row-value {
    font-weight: 500;
}

.price-row.discount .price-row-value {
    color: var(--secondary);
}

.price-row.gst .price-row-value {
    color: var(--gray-700);
}

/* Razorpay dummy button */
.razorpay-btn {
    background: #3395FF;
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

    .razorpay-btn:hover {
        background: #1a7ae8;
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
    }

/* ── PASTE THIS AT THE BOTTOM OF public-theme.css ── */

.payment-method-card {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

    .payment-method-card:hover {
        border-color: var(--primary);
    }

    .payment-method-card.active {
        border-color: var(--primary);
        background: rgba(19,88,70,0.05);
    }

    .payment-method-card input[type="radio"] {
        accent-color: var(--primary);
    }

.payment-method-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.payment-method-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--black);
    margin: 0;
}

.payment-method-desc {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin: 0;
}

/* ── Confirmation Page ──────────────────────── */
.confirmation-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 30px;
    text-align: center;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.success-animation {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255,255,255,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0);
    }
}

.confirmation-booking-id {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    padding: 10px 24px;
    display: inline-block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 2px;
    margin-top: 12px;
}

.qr-wrapper {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    display: inline-block;
    box-shadow: var(--shadow-md);
}

/* ── Room Detail Page ───────────────────────── */
.room-gallery-main {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 460px;
}

    .room-gallery-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.room-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 8px;
}

.gallery-thumb {
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

    .gallery-thumb.active,
    .gallery-thumb:hover {
        border-color: var(--primary);
    }

    .gallery-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ── Rooms Listing Page Filters ─────────────── */
.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    padding: 14px;
    position: sticky;
    top: 90px;
}

.filter-heading {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 8px;
    cursor: pointer;
}

    .filter-check input {
        accent-color: var(--primary);
    }

/* ── Availability Calendar ──────────────────── */
.availability-calendar {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    padding: 20px;
}

.booked-date {
    background: #fff0ef !important;
    color: var(--hotel-secondary) !important;
}

.available-date {
    background: rgba(19,88,70,0.08) !important;
}

/* ── Alert / Toast ──────────────────────────── */
.pub-alert {
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    border: none;
}

.pub-alert-success {
    background: rgba(19,88,70,0.1);
    color: var(--primary);
}

.pub-alert-error {
    background: #fff0ef;
    color: var(--secondary);
}

/* ── Pagination ─────────────────────────────── */
.pub-pagination .page-link {
    border-color: var(--gray-200);
    color: var(--gray-700);
    border-radius: var(--radius-sm) !important;
    margin: 0 3px;
    padding: 8px 14px;
    font-weight: 500;
    transition: var(--transition);
}

    .pub-pagination .page-link:hover,
    .pub-pagination .page-item.active .page-link {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--white);
    }

/* ── Contact Page ───────────────────────────── */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.contact-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(19,88,70,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 991px) {
    .pub-section, .pub-section-alt {
        padding: 60px 0;
    }

    .hero-section {
        min-height: 90vh;
    }

    .booking-widget {
        margin-top: 40px;
    }

    .filter-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 24px;
    }

    .price-summary-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

        .stat-item:last-child {
            border-bottom: none;
        }

    .room-gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .step-connector {
        width: 30px;
    }

    .booking-widget {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .step-label {
        display: none;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ── Utilities ──────────────────────────────── */
.text-primary-custom {
    color: var(--primary) !important;
}

.text-secondary-custom {
    color: var(--secondary) !important;
}

.bg-primary-custom {
    background: var(--primary) !important;
}

.border-primary-custom {
    border-color: var(--primary) !important;
}

.fw-medium {
    font-weight: 500 !important;
}

/* Scroll-to-top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

    .scroll-top:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

    .scroll-top.show {
        display: flex;
    }

/* Loading spinner for AJAX */
.pub-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Room card image carousel dots */
.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

    .carousel-dot.active {
        background: var(--white);
        width: 18px;
        border-radius: 3px;
    }
