/* ============================================================
   Metro Lodge - Main Stylesheet
   Colors: Purple #6254e7 | Orange #ff7426
   ============================================================ */

:root {
    --purple: #6254e7;
    --purple-dark: #4a3ec9;
    --purple-light: #8577ee;
    --orange: #ff7426;
    --orange-dark: #e05e10;
    --dark: #1a1a2e;
    --text: #333;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --white: #fff;
    --shadow: 0 10px 40px rgba(98, 84, 231, 0.15);
    --radius: 16px;
    --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    padding-top: 76px;
}

/* ===== NAVBAR ===== */
#mainNav {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 12px 0;
}

#mainNav.scrolled {
    background: rgba(26, 26, 46, 0.98);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.brand-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px !important;
    border-radius: 6px;
    transition: all 0.3s;
}
.nav-link:hover { color: #fff !important; background: rgba(255,255,255,0.1); }

.btn-book-nav {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: #fff !important;
    border: none;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s;
}
.btn-book-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(98, 84, 231, 0.5);
    color: #fff !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
    margin-top: -76px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 60% 40%, rgba(98,84,231,0.3) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(255,116,38,0.2) 0%, transparent 50%);
    animation: gradientMove 8s ease-in-out infinite alternate;
}

@keyframes gradientMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, -20px); }
}

.hero-overlay { display: none; }

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex; align-items: center;
    background: rgba(255,116,38,0.2);
    border: 1px solid rgba(255,116,38,0.4);
    color: var(--orange);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    margin-top: 8px;
}

.hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 24px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-highlights span {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-highlights span i { color: var(--orange); }

.btn-hero-primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(98,84,231,0.4);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(98,84,231,0.5);
    color: #fff;
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-3px);
}

/* Hero Stats Card */
.hero-stats-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-bottom: none; }

.stat-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

.hero-wave {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; z-index: 2;
    line-height: 0;
}

/* ===== AVAILABILITY BAR ===== */
.availability-bar {
    background: #fff;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.avail-card {
    background: linear-gradient(135deg, #f8f9ff, #fff);
    border: 1px solid rgba(98,84,231,0.15);
    border-radius: var(--radius);
    padding: 28px;
}

.btn-check-avail {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    padding: 10px;
    transition: all 0.3s;
}
.btn-check-avail:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,116,38,0.4);
    color: #fff;
}

/* ===== SECTION STYLES ===== */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(98,84,231,0.1), rgba(255,116,38,0.1));
    border: 1px solid rgba(98,84,231,0.25);
    color: var(--purple);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin: 12px 0;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-text {
    color: var(--text-muted);
    line-height: 1.8;
}

.text-gradient {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-purple { color: var(--purple); }
.text-orange { color: var(--orange); }

/* ===== ABOUT SECTION ===== */
.about-img-grid { position: relative; }

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-img-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; font-weight: 600;
    box-shadow: 0 8px 25px rgba(98,84,231,0.3);
}

.about-img-badge i { font-size: 1.2rem; }

.about-features { margin-top: 20px; }

.about-feature-item {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 14px;
    color: var(--text);
}
.about-feature-item i { color: var(--purple); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* ===== ROOM CARDS ===== */
.room-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(98,84,231,0.2);
}

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

.room-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.08); }

.room-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #e8e6ff, #ffe5d4);
    display: flex; align-items: center; justify-content: center;
}
.room-img-placeholder i { font-size: 3rem; color: rgba(98,84,231,0.3); }

.room-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.room-tag {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--orange);
    color: #fff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.room-card-body { padding: 20px; }
.room-name { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.room-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; margin-bottom: 12px; }

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.room-amenities span {
    background: var(--bg-light);
    color: var(--text);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
}
.room-amenities span i { color: var(--purple); font-size: 0.7rem; margin-right: 3px; }

.room-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--purple);
    line-height: 1;
}
.room-price small { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }

.room-capacity { color: var(--text-muted); font-size: 0.85rem; }

.btn-book-room {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.btn-book-room:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(98,84,231,0.4);
    color: #fff;
}

/* ===== AMENITIES SECTION ===== */
.amenity-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    transition: all 0.3s;
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(98,84,231,0.18);
}

.amenity-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(98,84,231,0.1), rgba(255,116,38,0.1));
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s;
}

.amenity-card:hover .amenity-icon {
    background: linear-gradient(135deg, var(--purple), var(--orange));
}

.amenity-icon i {
    font-size: 1.6rem;
    color: var(--purple);
    transition: color 0.3s;
}
.amenity-card:hover .amenity-icon i { color: #fff; }

.amenity-title { font-weight: 700; color: var(--dark); margin-bottom: 8px; font-size: 1rem; }
.amenity-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

/* ===== LANDMARKS ===== */
.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f0 100%);
}

.landmark-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    transition: all 0.3s;
    border-top: 4px solid transparent;
}

.landmark-purple { border-top-color: var(--purple); }
.landmark-orange { border-top-color: var(--orange); }
.landmark-blue { border-top-color: #0ea5e9; }
.landmark-green { border-top-color: #22c55e; }

.landmark-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }

.landmark-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.4rem; color: #fff;
}

.landmark-purple .landmark-icon { background: var(--purple); }
.landmark-orange .landmark-icon { background: var(--orange); }
.landmark-blue .landmark-icon { background: #0ea5e9; }
.landmark-green .landmark-icon { background: #22c55e; }

.landmark-dist {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 6px;
}

.landmark-name { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }

/* ===== PRICING SECTION ===== */
.price-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(98,84,231,0.2);
}

.price-card-featured {
    background: linear-gradient(135deg, var(--purple), #5046cc);
    color: #fff;
    transform: scale(1.03);
}

.price-card-featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.price-popular-badge {
    position: absolute; top: -1px; right: 20px;
    background: var(--orange);
    color: #fff;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 0 0 10px 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.price-card-header {
    padding: 30px 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.price-card-featured .price-card-header { border-bottom-color: rgba(255,255,255,0.2); }

.price-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.3rem; color: #fff;
}

.price-card-featured .price-icon { background: rgba(255,255,255,0.2); }

.price-card-header h5 { font-weight: 700; margin-bottom: 4px; font-size: 1rem; }
.price-card-header p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.price-card-featured .price-card-header p { color: rgba(255,255,255,0.7); }

.price-card-body { padding: 24px; }

.price-main {
    text-align: center;
    margin-bottom: 20px;
}

.price-main .currency { font-size: 1.2rem; font-weight: 700; color: var(--purple); }
.price-main .amount { font-size: 2.8rem; font-weight: 800; color: var(--purple); line-height: 1; }
.price-main .period { font-size: 0.9rem; color: var(--text-muted); }

.price-card-featured .price-main .currency,
.price-card-featured .price-main .amount { color: #fff; }
.price-card-featured .price-main .period { color: rgba(255,255,255,0.7); }

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}
.price-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.88rem;
}
.price-features li:last-child { border-bottom: none; }
.price-features li i { color: var(--purple); font-size: 0.9rem; }
.price-card-featured .price-features li { border-bottom-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.price-card-featured .price-features li i { color: rgba(255,255,255,0.8); }

.btn-book-price {
    background: var(--purple);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 11px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.btn-book-price:hover { background: var(--purple-dark); color: #fff; transform: translateY(-2px); }

.btn-book-price-featured {
    background: #fff;
    color: var(--purple);
}
.btn-book-price-featured:hover { background: rgba(255,255,255,0.9); color: var(--purple); }

.gst-note {
    background: rgba(98,84,231,0.05);
    border: 1px solid rgba(98,84,231,0.15);
    border-radius: var(--radius-sm);
    padding: 14px 24px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ===== LOCATION SECTION ===== */
.location-item {
    display: flex; align-items: flex-start;
    gap: 16px; margin-bottom: 20px;
}

.loc-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, rgba(98,84,231,0.1), rgba(255,116,38,0.1));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--purple);
    font-size: 1rem;
    flex-shrink: 0;
}

.location-item strong { display: block; font-weight: 600; color: var(--dark); }
.location-item p { color: var(--text-muted); margin: 0; font-size: 0.9rem; }
.location-item a { color: var(--purple); text-decoration: none; }
.location-item a:hover { color: var(--orange); }

.map-container iframe, .map-container > * {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ===== CTA SECTION ===== */
.cta-card {
    background: linear-gradient(135deg, var(--dark), #16213e);
    border-radius: var(--radius);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute; top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(ellipse, rgba(98,84,231,0.3), transparent 70%);
}

.cta-title { color: #fff; font-weight: 800; font-size: 1.8rem; margin-bottom: 8px; }
.cta-desc { color: rgba(255,255,255,0.7); font-size: 1rem; margin: 0; }

.btn-cta-call {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-cta-call:hover { background: rgba(255,255,255,0.25); color: #fff; }

.btn-cta-book {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border: none;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-cta-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(98,84,231,0.4);
    color: #fff;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 11px 28px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(98,84,231,0.4);
    color: #fff;
}

.btn-outline-custom {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
    border-radius: 50px;
    padding: 11px 28px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-outline-custom:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 11px 24px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-whatsapp:hover { background: #1aab52; color: #fff; transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer-section { background: var(--dark); color: rgba(255,255,255,0.8); }

.footer-top { padding: 60px 0 40px; }

.brand-icon-footer {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
}

.footer-brand-name { font-size: 1.3rem; font-weight: 700; color: #fff; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; }

.social-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1rem; text-decoration: none;
    transition: all 0.3s;
    margin-right: 8px;
}
.social-btn.whatsapp { background: #25d366; color: #fff; }
.social-btn.phone { background: var(--purple); color: #fff; }
.social-btn.email { background: var(--orange); color: #fff; }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links li, .footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    padding: 5px 0;
    text-decoration: none;
    transition: color 0.3s;
    display: flex; align-items: flex-start; gap: 8px;
}
.footer-links a:hover { color: var(--orange); }
.footer-links li i { font-size: 0.75rem; margin-top: 4px; flex-shrink: 0; }

.btn-whatsapp-footer {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 9px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex; align-items: center;
}
.btn-whatsapp-footer:hover { background: #1aab52; color: #fff; transform: translateY(-2px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37,211,102,0.5);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover { background: #1aab52; color: #fff; transform: scale(1.1); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 90px; right: 24px;
    width: 42px; height: 42px;
    background: var(--purple);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none; align-items: center; justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(98,84,231,0.4);
    z-index: 998;
    cursor: pointer;
    transition: all 0.3s;
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--purple-dark); transform: translateY(-3px); }

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, #16213e 60%, #0f3460 100%);
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(98,84,231,0.4) 0%, transparent 70%);
}
.page-hero-sm .container { min-height: auto; }

.page-hero-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.1);
}

.page-title {
    font-size: 2.8rem; font-weight: 800;
    color: #fff;
    position: relative;
}

.page-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    position: relative;
}

.breadcrumb { position: relative; }
.breadcrumb-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== ROOMS PAGE ===== */
.sticky-top-filter { position: sticky; top: 76px; z-index: 100; }

.room-detail-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.room-detail-card:hover { box-shadow: 0 15px 45px rgba(98,84,231,0.15); }

.room-detail-img {
    height: 260px;
    overflow: hidden;
    position: relative;
}
.room-detail-img img { width: 100%; height: 100%; object-fit: cover; }

.room-img-placeholder-lg {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #e8e6ff, #ffe5d4);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: rgba(98,84,231,0.4);
}
.room-img-placeholder-lg i { font-size: 3rem; }
.room-img-placeholder-lg span { font-size: 0.85rem; margin-top: 8px; }

.room-type-badge {
    position: absolute; bottom: 12px; left: 12px;
    background: rgba(0,0,0,0.75);
    color: #fff; padding: 4px 12px;
    border-radius: 50px; font-size: 0.75rem;
    text-transform: capitalize; font-weight: 600;
    backdrop-filter: blur(4px);
}

.room-detail-body { padding: 24px; }

.room-detail-name { font-size: 1.3rem; font-weight: 700; color: var(--dark); }

.room-ac-badge {
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}
.badge-ac { background: rgba(98,84,231,0.1); color: var(--purple); }
.badge-nonac { background: rgba(255,116,38,0.1); color: var(--orange); }

.room-detail-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

.room-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.price-option {
    flex: 1; min-width: 100px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-option.price-extra { background: rgba(255,116,38,0.05); border: 1px dashed rgba(255,116,38,0.3); }

.price-label { font-size: 0.78rem; color: var(--text-muted); }
.price-label i { margin-right: 4px; }
.price-value { font-size: 1.3rem; font-weight: 800; color: var(--purple); line-height: 1; }
.price-unit { font-size: 0.75rem; color: var(--text-muted); }

.room-amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.amenity-tag {
    background: rgba(98,84,231,0.08);
    color: var(--purple);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
}
.amenity-tag i { margin-right: 4px; }

.btn-availability {
    background: transparent;
    border: 2px solid var(--purple);
    color: var(--purple);
    border-radius: 50px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: all 0.3s;
}
.btn-availability:hover { background: var(--purple); color: #fff; }

.alert-info-custom {
    background: rgba(98,84,231,0.07);
    border: 1px solid rgba(98,84,231,0.2);
    color: var(--purple);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
}

/* ===== BOOKING PAGE ===== */
.booking-form-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
}

.booking-steps {
    display: flex;
    align-items: center;
    gap: 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.step span {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid #dee2e6;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700;
    transition: all 0.3s;
}

.step.active { color: var(--purple); }
.step.active span { background: var(--purple); border-color: var(--purple); color: #fff; }

.step-line {
    flex: 1;
    height: 2px;
    background: #dee2e6;
    margin: 0 8px;
}

.form-label.required::after {
    content: ' *';
    color: var(--orange);
}

.form-check-custom { display: flex; align-items: center; gap: 10px; }

.form-alert {
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-weight: 500;
}

.btn-pay-now {
    background: linear-gradient(135deg, var(--purple), var(--orange));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(98,84,231,0.3);
}
.btn-pay-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(98,84,231,0.4);
    color: #fff;
}
.btn-pay-now:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.payment-note {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* Booking Summary */
.booking-summary-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.summary-title {
    font-weight: 700; font-size: 1.1rem; color: var(--dark);
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 12px; margin-bottom: 20px;
}

.summary-room-img {
    width: 100%; height: 160px;
    border-radius: 12px; overflow: hidden; margin-bottom: 14px;
}
.summary-room-img img { width: 100%; height: 100%; object-fit: cover; }

.room-img-placeholder-sm {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #e8e6ff, #ffe5d4);
    display: flex; align-items: center; justify-content: center;
    color: rgba(98,84,231,0.3); font-size: 2.5rem;
}

.summary-room-name { font-weight: 700; font-size: 1rem; color: var(--dark); }
.summary-room-type { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

.summary-breakdown { }

.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--bg-light);
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--purple);
}

.summary-hotel-info { font-size: 0.85rem; color: var(--text-muted); }
.summary-hotel-info i { width: 16px; }

.payment-info-box {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 14px;
    font-size: 0.88rem;
}

/* ===== CONFIRMATION PAGE ===== */
.confirmation-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 50px 40px;
    box-shadow: var(--shadow);
}

.confirmation-icon {
    width: 90px; height: 90px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: #fff;
}
.confirmation-icon.failed { background: linear-gradient(135deg, #ef4444, #dc2626); }

.confirmation-title { font-size: 1.8rem; font-weight: 800; color: var(--dark); }
.confirmation-msg { color: var(--text-muted); margin-bottom: 20px; }

.booking-ref-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(98,84,231,0.1), rgba(255,116,38,0.1));
    border: 2px solid rgba(98,84,231,0.2);
    color: var(--purple);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
}

.booking-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
}

.detail-item {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.detail-item i { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.detail-item small { display: block; color: var(--text-muted); font-size: 0.78rem; }
.detail-item strong { display: block; font-weight: 700; color: var(--dark); }

.confirmation-note {
    background: rgba(98,84,231,0.05);
    border-radius: var(--radius-sm);
    padding: 14px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ===== SWIPER CUSTOMIZATION ===== */
.swiper { width: 100%; height: 100%; }
.swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.swiper-button-prev, .swiper-button-next { color: #fff !important; }
.swiper-button-prev::after, .swiper-button-next::after { font-size: 1rem !important; font-weight: 700; }
.swiper-button-prev, .swiper-button-next {
    background: rgba(0,0,0,0.5);
    width: 36px !important; height: 36px !important;
    border-radius: 50%;
}
.swiper-pagination-bullet-active { background: var(--purple) !important; }

/* ===== MOBILE CALL BUTTON (Navbar) ===== */
.btn-mobile-call {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(37,211,102,0.15);
    border: 1.5px solid rgba(37,211,102,0.5);
    color: #25d366;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    margin-right: 6px;
    flex-shrink: 0;
}
.btn-mobile-call:hover { background: #25d366; color: #fff; }

/* Mobile nav contact block */
.nav-mobile-contact {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 12px !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-contact-link {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    transition: all 0.2s;
}
.mobile-contact-link:hover { background: rgba(255,255,255,0.12); color: #fff; }
.mobile-contact-link.whatsapp-link { color: #25d366; }
.mobile-contact-link i { font-size: 1rem; width: 18px; text-align: center; }

/* Navbar collapse mobile styling */
@media (max-width: 991px) {
    #navbarNav {
        background: rgba(20, 20, 42, 0.98);
        border-radius: 12px;
        padding: 12px 16px;
        margin-top: 10px;
        border: 1px solid rgba(255,255,255,0.1);
        backdrop-filter: blur(12px);
    }
    #navbarNav .nav-link {
        padding: 11px 14px !important;
        border-radius: 8px;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
    }
    #navbarNav .btn-book-nav {
        padding: 11px 20px;
        font-size: 0.95rem;
    }
}

/* ===== COMPREHENSIVE RESPONSIVE ===== */

/* ── Large tablets (≤1024px) ── */
@media (max-width: 1024px) {
    .hero-title { font-size: clamp(2.2rem, 5vw, 3.5rem); }
    .price-card-featured { transform: none; }
    .price-card-featured:hover { transform: translateY(-8px); }
}

/* ── Tablets (≤992px) ── */
@media (max-width: 992px) {
    body { padding-top: 68px; }

    /* Hero */
    .hero-section { min-height: auto; }
    .hero-section .min-vh-100 { min-height: calc(100vh - 68px) !important; }
    .hero-stats-card { display: none; }
    .hero-title { font-size: 2.8rem; }
    .hero-actions { flex-direction: row; }

    /* About */
    .about-img-main img { height: 320px; }
    .about-img-badge { bottom: 12px; left: 12px; font-size: 0.82rem; padding: 10px 14px; }

    /* Rooms */
    .room-detail-img { height: 220px; }

    /* Location */
    .map-container iframe { height: 320px; }

    /* CTA */
    .cta-card { padding: 36px 28px; }
    .cta-title { font-size: 1.5rem; }

    /* Booking */
    .booking-summary-card { position: static; margin-top: 0; }

    /* Sticky filter */
    .sticky-top-filter { position: relative; top: auto; }
}

/* ── Mobile landscape / small tablets (≤768px) ── */
@media (max-width: 768px) {
    body { padding-top: 64px; }

    /* === HERO === */
    .hero-section { padding: 0; }
    .hero-section .py-5 { padding-top: 32px !important; padding-bottom: 40px !important; }
    .hero-title { font-size: 2.1rem; line-height: 1.15; }
    .hero-subtitle { font-size: 1rem; }
    .hero-desc { font-size: 0.9rem; margin-bottom: 20px; }
    .hero-badge { font-size: 0.78rem; padding: 5px 14px; }
    .hero-highlights { gap: 8px; }
    .hero-highlights span { font-size: 0.78rem; padding: 6px 12px; }
    .btn-hero-primary, .btn-hero-secondary {
        padding: 12px 24px;
        font-size: 0.92rem;
        flex: 1;
        text-align: center;
        min-height: 48px;
    }
    .hero-actions { gap: 10px; }
    .hero-wave { display: none; }

    /* === AVAILABILITY BAR === */
    .avail-card { padding: 20px 16px; border-radius: 12px; }
    .avail-card .row { --bs-gutter-y: 10px; }
    .btn-check-avail { min-height: 48px; font-size: 1rem; }

    /* === SECTIONS === */
    .section-title { font-size: 1.7rem; }
    .section-badge { font-size: 0.75rem; }
    .about-section, .amenities-section, .pricing-section,
    .location-section, .contact-cta, .landmarks-section { padding: 40px 0 !important; }

    /* === ABOUT === */
    .about-img-main img { height: 240px; border-radius: 14px; }
    .about-img-badge { padding: 10px 14px; font-size: 0.8rem; gap: 8px; }
    .about-feature-item { margin-bottom: 10px; font-size: 0.9rem; }

    /* === ROOM CARDS === */
    .room-card-img { height: 200px; }
    .room-card-body { padding: 16px; }
    .room-name { font-size: 1rem; }
    .room-price { font-size: 1.25rem; }

    /* === ROOM DETAIL CARDS (Rooms page) === */
    .room-detail-card { margin-bottom: 0; }
    .room-detail-img { height: 200px; }
    .room-detail-body { padding: 18px 16px; }
    .room-detail-name { font-size: 1.1rem; }
    .room-pricing-grid { gap: 8px; }
    .price-value { font-size: 1.1rem; }

    /* === AMENITIES === */
    .amenity-card { padding: 22px 16px; }
    .amenity-icon { width: 58px; height: 58px; border-radius: 14px; }
    .amenity-icon i { font-size: 1.3rem; }

    /* === LANDMARKS === */
    .landmark-card { padding: 22px 14px; }
    .landmark-dist { font-size: 1.5rem; }

    /* === PRICING === */
    .price-main .amount { font-size: 2.2rem; }
    .price-card-header { padding: 22px 18px 16px; }
    .price-card-body { padding: 18px; }
    .price-card-featured { transform: none; }

    /* === LOCATION === */
    .location-item { gap: 12px; margin-bottom: 16px; }
    .loc-icon { width: 38px; height: 38px; border-radius: 10px; font-size: 0.9rem; }
    .map-container iframe { height: 280px; }

    /* === CTA === */
    .cta-card { padding: 28px 20px; border-radius: 14px; }
    .cta-title { font-size: 1.3rem; }
    .btn-cta-call, .btn-cta-book { width: 100%; text-align: center; min-height: 48px; font-size: 0.95rem; }

    /* === BOOKING PAGE === */
    .booking-form-card { padding: 22px 16px; border-radius: 12px; }
    .booking-steps { gap: 0; overflow: hidden; }
    .booking-steps .step-line { display: none; }
    .booking-steps .step { font-size: 0.78rem; }
    .booking-steps .step span { width: 26px; height: 26px; font-size: 0.75rem; }
    .btn-pay-now { font-size: 1rem; padding: 14px; min-height: 52px; }
    .booking-summary-card { position: static; padding: 20px 16px; border-radius: 12px; }
    .summary-room-img { height: 130px; }
    .breakdown-total { font-size: 1rem; }

    /* === CONFIRMATION === */
    .confirmation-card { padding: 28px 18px; }
    .confirmation-icon { width: 76px; height: 76px; font-size: 2rem; }
    .confirmation-title { font-size: 1.5rem; }
    .booking-details-grid { grid-template-columns: 1fr; gap: 10px; }
    .detail-item { padding: 12px; }

    /* === FOOTER === */
    .footer-top { padding: 40px 0 30px; }
    .footer-heading { margin-bottom: 14px; }

    /* === PAGE HERO === */
    .page-title { font-size: 2rem; }
    .page-subtitle { font-size: 0.9rem; }
    .page-hero .py-5 { padding-top: 36px !important; padding-bottom: 36px !important; }
}

/* ── Mobile portrait (≤576px) ── */
@media (max-width: 576px) {
    body { padding-top: 60px; }

    /* === HERO === */
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.92rem; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%; justify-content: center;
        padding: 14px 20px; font-size: 1rem;
    }
    .hero-highlights { gap: 6px; }
    .hero-highlights span { font-size: 0.75rem; padding: 5px 10px; }

    /* === AVAILABILITY BAR === */
    .availability-bar { padding: 16px 0; }
    .avail-card { padding: 18px 14px; }
    .avail-card h5 { font-size: 0.95rem; }

    /* === SECTIONS === */
    .section-title { font-size: 1.5rem; }
    .about-section, .amenities-section, .pricing-section,
    .location-section, .contact-cta, .landmarks-section,
    .rooms-section { padding: 32px 0 !important; }

    /* === ABOUT === */
    .about-img-main img { height: 200px; }
    .about-img-badge { bottom: 8px; left: 8px; font-size: 0.75rem; padding: 8px 12px; }
    .btn-primary-custom, .btn-outline-custom {
        padding: 10px 20px; font-size: 0.9rem; min-height: 44px;
    }

    /* === ROOM CARDS === */
    .room-card-img { height: 180px; }
    .room-amenities span { font-size: 0.7rem; padding: 3px 8px; }
    .btn-book-room { min-height: 44px; font-size: 0.9rem; }

    /* === AMENITIES === */
    .amenity-card { padding: 18px 12px; }
    .amenity-title { font-size: 0.9rem; }
    .amenity-desc { font-size: 0.8rem; }

    /* === LANDMARKS === */
    .landmark-dist { font-size: 1.3rem; }
    .landmark-name { font-size: 0.82rem; }

    /* === PRICING === */
    .price-main .amount { font-size: 2rem; }
    .price-features li { font-size: 0.82rem; }
    .btn-book-price { min-height: 44px; }
    .gst-note { font-size: 0.8rem; padding: 12px 14px; }

    /* === LOCATION === */
    .location-info { padding: 0; }
    .location-item strong { font-size: 0.88rem; }
    .location-item p, .location-item a { font-size: 0.82rem; }
    .map-container iframe { height: 240px; border-radius: 10px; }
    .btn-whatsapp, .btn-primary-custom { min-height: 44px; }

    /* === CTA === */
    .cta-card { padding: 24px 16px; }
    .cta-title { font-size: 1.2rem; }
    .cta-desc { font-size: 0.85rem; }

    /* === BOOKING === */
    .booking-form-card { padding: 18px 14px; }
    .booking-summary-card { padding: 18px 14px; }
    .form-label { font-size: 0.82rem; }
    .payment-note { font-size: 0.78rem; }

    /* === PAGE HERO === */
    .page-title { font-size: 1.6rem; }
    .page-subtitle { font-size: 0.85rem; }

    /* === ROOMS PAGE === */
    .room-detail-img { height: 180px; }
    .room-amenities-list { gap: 6px; }
    .amenity-tag { font-size: 0.75rem; padding: 4px 10px; }
    .btn-availability { padding: 10px 12px; font-size: 0.8rem; white-space: normal; }
    .room-pricing-grid { flex-direction: column; gap: 6px; }
    .price-option { min-width: unset; flex-direction: row; align-items: center; gap: 8px; }
    .price-value { font-size: 1.1rem; }

    /* === CONFIRMATION === */
    .confirmation-card { padding: 24px 14px; }
    .booking-ref-badge { font-size: 0.88rem; padding: 9px 18px; }
    .confirmation-title { font-size: 1.3rem; }

    /* === FOOTER === */
    .footer-top { padding: 30px 0 20px; }
    .footer-desc { font-size: 0.82rem; }
    .footer-links li, .footer-links a { font-size: 0.82rem; }
    .footer-bottom { font-size: 0.78rem; }

    /* === WHATSAPP FLOAT === */
    .whatsapp-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 18px; right: 16px; }
    .back-to-top { bottom: 80px; right: 16px; width: 38px; height: 38px; font-size: 0.88rem; }
}

/* ── Very small phones (≤400px) ── */
@media (max-width: 400px) {
    .hero-title { font-size: 1.6rem; }
    .hero-subtitle { font-size: 0.85rem; }
    .section-title { font-size: 1.35rem; }
    .navbar-brand .brand-name { font-size: 1.05rem; }
    .brand-tagline { font-size: 0.58rem; }
    .confirmation-card { padding: 20px 12px; }
    .booking-details-grid .detail-item { flex-direction: column; gap: 4px; }
}

/* ── iOS input zoom prevention ── */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    input[type="time"],
    input[type="password"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* ── Touch targets: minimum 44×44px (mobile only) ── */
@media (max-width: 768px) {
    .btn-book-nav, .btn-book-room, .btn-check-avail,
    .btn-primary-custom, .btn-outline-custom,
    .btn-hero-primary, .btn-hero-secondary,
    .btn-pay-now, .btn-availability,
    .btn-whatsapp, .btn-whatsapp-footer,
    .btn-cta-call, .btn-cta-book {
        min-height: 44px;
    }
    .social-btn { min-height: 44px; min-width: 44px; }
}

/* ── Prevent horizontal overflow (mobile only) ── */
@media (max-width: 768px) {
    html, body { overflow-x: hidden; }
}

/* ── Filter bar rooms page: no sticky on mobile ── */
@media (max-width: 768px) {
    .sticky-top-filter {
        position: static !important;
        top: auto !important;
        box-shadow: none;
    }
    .filter-bar { padding: 16px 0; background: #f8f9fa; }
    .filter-bar .row { --bs-gutter-y: 10px; }
}

/* ── Booking page: summary order on mobile ── */
@media (max-width: 768px) {
    .booking-col-form { order: 2; }
    .booking-col-summary { order: 1; }
}

/* ── Room page filter stacks vertically on mobile ── */
@media (max-width: 576px) {
    .filter-bar .col-md-2 button,
    .filter-bar .col-md-2 a {
        width: 100%;
    }
}

/* ── Swiper better on mobile ── */
@media (max-width: 576px) {
    .swiper-button-prev, .swiper-button-next {
        width: 30px !important; height: 30px !important;
    }
    .swiper-button-prev::after, .swiper-button-next::after { font-size: 0.8rem !important; }
}

/* ── Mobile spacing tweaks (padding/gap fixes) ── */
@media (max-width: 768px) {

    /* Reduce Bootstrap py-5 section padding */
    section.py-5, .py-5 { padding-top: 28px !important; padding-bottom: 28px !important; }
    section.py-4 { padding-top: 20px !important; padding-bottom: 20px !important; }

    /* Availability bar */
    .availability-bar { padding: 16px 0 !important; }
    .avail-card { padding: 16px 14px !important; border-radius: 10px; }
    .avail-card h5 { font-size: 0.9rem; margin-bottom: 12px !important; }
    .avail-card .row { --bs-gutter-y: 8px !important; --bs-gutter-x: 8px !important; }
    .avail-card .form-label { font-size: 0.78rem; margin-bottom: 3px; }
    .avail-card .form-control, .avail-card .form-select { padding: 7px 10px; }

    /* Section headings */
    .section-badge { margin-bottom: 6px !important; }
    .section-title { margin: 6px 0 8px !important; }
    .section-subtitle { font-size: 0.85rem; margin-bottom: 0 !important; }
    .text-center.mb-5 { margin-bottom: 20px !important; }

    /* About section */
    .about-section .col-lg-6 + .col-lg-6 { padding-top: 0 !important; }
    .about-features { margin-top: 14px !important; }
    .about-feature-item { margin-bottom: 8px !important; font-size: 0.85rem; }
    .about-img-badge { display: none; }

    /* Room cards */
    .room-card { border-radius: 12px; }
    .room-card-body { padding: 14px !important; }
    .room-name { margin-bottom: 4px !important; }
    .room-desc { margin-bottom: 8px !important; font-size: 0.82rem; }
    .room-amenities { margin-bottom: 10px !important; gap: 4px !important; }
    .room-amenities span { font-size: 0.72rem; padding: 2px 8px; }
    .room-price-row { margin-bottom: 0; }
    .room-card-img { height: 180px; }

    /* Row gap for room grid */
    .rooms-section .row { --bs-gutter-y: 12px !important; }

    /* Amenities */
    .amenity-card { padding: 18px 14px !important; }
    .amenity-icon { width: 52px; height: 52px; border-radius: 12px; margin-bottom: 12px !important; }
    .amenity-icon i { font-size: 1.2rem; }
    .amenity-title { font-size: 0.88rem; margin-bottom: 4px !important; }
    .amenity-desc { font-size: 0.78rem; }
    .amenities-section .row { --bs-gutter-y: 10px !important; }

    /* Landmarks */
    .landmark-card { padding: 18px 12px !important; }
    .landmark-icon { width: 48px; height: 48px; font-size: 1.2rem; margin-bottom: 10px !important; }
    .landmark-dist { font-size: 1.3rem; margin-bottom: 4px !important; }
    .landmarks-section .row { --bs-gutter-y: 10px !important; }

    /* Pricing cards */
    .price-card-header { padding: 18px 16px 14px !important; }
    .price-card-body { padding: 16px !important; }
    .price-icon { width: 48px; height: 48px; font-size: 1.1rem; margin-bottom: 8px !important; }
    .price-card-header h5 { margin-bottom: 2px !important; }
    .price-main { margin-bottom: 14px !important; }
    .price-main .amount { font-size: 2rem; }
    .price-features { margin-bottom: 16px !important; }
    .price-features li { padding: 5px 0; font-size: 0.82rem; }
    .btn-book-price { padding: 9px; }
    .pricing-section .row { --bs-gutter-y: 10px !important; }
    .gst-note { margin-top: 14px !important; font-size: 0.78rem; padding: 10px 12px; }

    /* Location */
    .location-item { margin-bottom: 12px !important; gap: 10px; }
    .location-info { margin-bottom: 16px; }
    .map-container { margin-top: 4px; }

    /* CTA */
    .contact-cta { padding: 20px 0 !important; }
    .cta-card { padding: 22px 16px !important; border-radius: 12px; }
    .cta-title { font-size: 1.15rem; margin-bottom: 4px !important; }
    .cta-desc { font-size: 0.82rem; margin-bottom: 14px !important; }
    .cta-card .col-lg-4 { margin-top: 0 !important; }
    .btn-cta-call, .btn-cta-book { padding: 10px 16px; font-size: 0.88rem; }

    /* Footer */
    .footer-top { padding: 28px 0 20px !important; }
    .footer-top .row { --bs-gutter-y: 20px !important; }
    .footer-heading { margin-bottom: 10px !important; }
    .footer-links li, .footer-links a { padding: 3px 0; font-size: 0.82rem; }
    .social-links { margin-top: 14px !important; }
    .social-btn { width: 36px; height: 36px; min-height: 36px; min-width: 36px; font-size: 0.9rem; margin-right: 6px; }
    .btn-whatsapp-footer { padding: 8px 16px; font-size: 0.82rem; margin-top: 10px !important; }
    .footer-bottom { padding: 14px 0; }
}

@media (max-width: 576px) {
    /* Further reduce on small phones */
    section.py-5, .py-5 { padding-top: 22px !important; padding-bottom: 22px !important; }

    /* Container side padding */
    .container { padding-left: 14px !important; padding-right: 14px !important; }

    /* Hero tighter */
    .hero-section .row { padding-top: 24px !important; padding-bottom: 32px !important; }
    .hero-highlights { gap: 5px !important; }
    .hero-highlights span { padding: 4px 9px; font-size: 0.72rem; }
    .hero-desc { font-size: 0.84rem; margin-bottom: 16px !important; }
    .hero-actions { gap: 8px !important; }

    /* Availability bar tighter */
    .avail-card { padding: 14px 12px !important; }
    .avail-card .row { --bs-gutter-y: 6px !important; --bs-gutter-x: 6px !important; }

    /* Room cards */
    .room-card-img { height: 160px; }
    .rooms-section .row { --bs-gutter-y: 10px !important; }

    /* Sections row gap */
    .amenities-section .row,
    .landmarks-section .row,
    .pricing-section .row { --bs-gutter-y: 8px !important; }

    /* Pricing */
    .price-main .amount { font-size: 1.8rem; }

    /* CTA stacked */
    .cta-card .d-flex { gap: 8px !important; }
    .btn-cta-call, .btn-cta-book { font-size: 0.82rem; padding: 9px 12px; }
}

/* ── Print styles for confirmation ── */
@media print {
    .navbar, .footer-section, .whatsapp-float, .back-to-top,
    .btn-cta-call, .btn-cta-book, #contact { display: none !important; }
    body { padding-top: 0 !important; }
    .confirmation-card { box-shadow: none; }
}
