/* ==========================================
   KHAN SHINWARI - LIGHT CREAM THEME
   Cream Background · Espresso Text · Burgundy & Gold Accents
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

@font-face {
  font-family: 'ksrr';
  src: url('../ksr/assets/fonts/ksrr.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
    /* Core KSR Palette */
    --ksr-espresso: #2b1009;
    --ksr-burgundy: #8f2222;
    --ksr-burgundy-dark: #651515;
    --ksr-gold: #d9a441;
    --ksr-gold-soft: #f5d28b;
    --ksr-cream: #fff8ec;
    --ksr-sand: #f4e3c6;
    --ksr-mist: #faf6ef;
    --ksr-sage: #556b55;
    --ksr-charcoal: #17120f;
    --ksr-muted: #6e6257;

    --radius-lg: 34px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --radius-full: 999px;

    --shadow-soft: 0 24px 70px rgba(43, 16, 9, 0.14);
    --shadow-card: 0 20px 45px rgba(43, 16, 9, 0.10);
    --shadow-sm: 0 4px 14px rgba(43, 16, 9, 0.08);
    --shadow-md: 0 10px 30px rgba(43, 16, 9, 0.12);
    --shadow-lg: 0 20px 45px rgba(43, 16, 9, 0.18);
    --shadow-glow: 0 12px 32px rgba(217, 164, 65, 0.35);

    /* Semantic Tokens - LIGHT THEME */
    --bg-page: var(--ksr-cream);
    --bg-surface: #ffffff;
    --bg-surface-alt: var(--ksr-mist);
    --bg-dark: var(--ksr-espresso);

    --text-primary: var(--ksr-espresso);
    --text-secondary: #4a2a1f;
    --text-muted: var(--ksr-muted);
    --text-on-dark: var(--ksr-cream);

    --border-soft: rgba(43, 16, 9, 0.08);
    --border-medium: rgba(43, 16, 9, 0.14);
    --border-gold: rgba(217, 164, 65, 0.35);

    /* Gradients from screenshots */
    --gradient-primary: linear-gradient(135deg, var(--ksr-burgundy) 0%, var(--ksr-gold) 100%);
    --gradient-gold: linear-gradient(135deg, var(--ksr-gold) 0%, #b8852e 100%);
    --gradient-burgundy: linear-gradient(135deg, var(--ksr-burgundy) 0%, var(--ksr-burgundy-dark) 100%);
    --gradient-dark: linear-gradient(180deg, var(--ksr-espresso) 0%, var(--ksr-charcoal) 100%);
    --gradient-overlay: linear-gradient(135deg,
            rgba(43, 16, 9, 0.388) 0%,
            rgba(43, 16, 9, 0.277) 100%);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

   
    --font-heading: 'ksrr', 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--ksr-burgundy);
    color: var(--ksr-cream);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--ksr-burgundy);
    transition: var(--transition);
}

a:hover {
    color: var(--ksr-burgundy-dark);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--ksr-cream);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
}

.loader-circle {
    width: 80px;
    height: 80px;
    border: 4px solid var(--ksr-sand);
    border-top-color: var(--ksr-burgundy);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-logo {
    font-size: 2.5rem;
    color: var(--ksr-burgundy);
    animation: pulse 1.5s ease-in-out infinite;
    margin-bottom: 15px;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--ksr-espresso);
    font-weight: 700;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--ksr-espresso);
    padding: 10px 0;
    border-bottom: 1px solid rgba(217, 164, 65, 0.15);
    font-size: 0.85rem;
    color: var(--ksr-sand);
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-left a,
.topbar-right a {
    color: var(--ksr-sand);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.topbar-left a:hover,
.topbar-right a:hover {
    color: var(--ksr-gold);
}

.topbar-right {
    justify-content: flex-end;
}

.topbar-right a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(217, 164, 65, 0.12);
}

.topbar-right a:hover {
    background: var(--ksr-gold);
    color: var(--ksr-espresso);
    transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
#mainNav {
    background: var(--ksr-cream);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-soft);
    transition: var(--transition);
    z-index: 1000;
}

#mainNav.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
    background: rgba(255, 248, 236, 0.98);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    font-size: 2rem;
    color: var(--ksr-burgundy);
    animation: flicker 3s ease-in-out infinite;
}

@keyframes flicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ksr-espresso);
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--ksr-muted);
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-top: 4px;
}

.nav-link {
    color: var(--ksr-espresso) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 22px !important;
    position: relative;
    transition: var(--transition);
    border-radius: var(--radius-full);
}

.nav-link:hover {
    color: var(--ksr-burgundy) !important;
}

/* Active nav pill (matches "Home" button in screenshot) */
.nav-link.active {
    background: var(--ksr-espresso);
    color: var(--ksr-cream) !important;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 14px 32px;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

/* Primary gradient button (Book Now, Book a table) */
.btn-primary-glow,
.btn-primary {
    background: var(--gradient-primary);
    color: var(--ksr-cream);
    box-shadow: 0 8px 22px rgba(143, 34, 34, 0.32);
}

.btn-primary-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 248, 236, 0.28), transparent);
    transition: 0.6s;
}

.btn-primary-glow:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(143, 34, 34, 0.42);
    color: var(--ksr-cream);
}

.btn-primary-glow:hover::before {
    left: 100%;
}

/* Cream/light pill button (Take away order, Call) */
.btn-outline-light,
.btn-cream {
    background: var(--ksr-cream);
    color: var(--ksr-espresso);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-sm);
}

.btn-outline-light:hover,
.btn-cream:hover {
    background: #fff;
    color: var(--ksr-burgundy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    background: transparent;
    color: var(--ksr-burgundy);
    border: 2px solid var(--ksr-burgundy);
}

.btn-outline-primary:hover {
    background: var(--ksr-burgundy);
    color: var(--ksr-cream);
    transform: translateY(-3px);
}

.btn-outline-secondary {
    background: transparent;
    color: var(--ksr-espresso);
    border: 2px solid var(--border-medium);
}

.btn-outline-secondary:hover {
    background: var(--ksr-espresso);
    color: var(--ksr-cream);
    border-color: var(--ksr-espresso);
}

.btn-success {
    background: #25D366;
    color: #fff;
}

.btn-success:hover {
    background: #1EBE57;
    color: #fff;
    transform: translateY(-3px);
}

.navbar-toggler {
    background-color: #2b1009 !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--ksr-cream);
}

.hero-slider {
    width: 100%;
    height: 100vh;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    background: linear-gradient(90deg,
            rgba(19, 11, 9, 0.388) 0%,
            rgba(43, 16, 9, 0) 100%);
    padding: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ksr-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--ksr-gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.02;
    margin-bottom: 24px;
    color: var(--ksr-cream);
    letter-spacing: -1px;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--ksr-sand);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Floating location card (Skardu badge in screenshot) */
.hero-location-card {
    background: var(--ksr-cream);
    color: var(--ksr-espresso);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.hero-location-card .loc-title {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ksr-burgundy);
}

.hero-location-card .loc-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Swiper */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--ksr-cream);
    opacity: 0.55;
}

.swiper-pagination-bullet-active {
    background: var(--ksr-gold);
    opacity: 1;
    width: 32px;
    border-radius: 6px;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--ksr-cream);
    width: 52px;
    height: 52px;
    background: rgba(255, 248, 236, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--ksr-gold);
    color: var(--ksr-espresso);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px;
}

/* ===== FEATURES BAR ===== */
.features-section {
    background: var(--gradient-primary);
    padding: 0;
    margin-top: -1px;
    color: var(--ksr-cream);
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    border-right: 1px solid rgba(255, 248, 236, 0.18);
    transition: var(--transition);
}

.feature-card:last-child {
    border-right: none;
}

.feature-card:hover {
    background: rgba(255, 248, 236, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--ksr-gold-soft);
}

.feature-card h5 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--ksr-cream);
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 248, 236, 0.85);
    margin: 0;
    font-size: 0.9rem;
}

/* ===== SECTION UTILITIES ===== */
.section-padding {
    padding: 100px 0;
    background: var(--bg-page);
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ksr-burgundy);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.section-subtitle::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--ksr-burgundy);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--ksr-espresso);
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.75;
}

.bg-dark {
    background: var(--gradient-dark) !important;
    color: var(--text-on-dark);
}

.bg-dark .section-title,
.bg-dark .hero-title {
    color: var(--ksr-cream);
}

.bg-dark .section-desc,
.bg-dark p {
    color: var(--ksr-sand);
}

/* ===== ABOUT SECTION ===== */
.about-images {
    position: relative;
}

.about-img-main img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gradient-primary);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    color: var(--ksr-cream);
}

.badge-content h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--ksr-cream);
    line-height: 1;
    margin-bottom: 5px;
}

.badge-content p {
    font-size: 0.85rem;
    color: var(--ksr-gold-soft);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 18px;
    background: var(--bg-surface);
    border-left: 3px solid var(--ksr-burgundy);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.feature-icon-sm {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ksr-cream);
    flex-shrink: 0;
}

.feature-item h6 {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--ksr-espresso);
}

.feature-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== DISH & ROOM CARDS ===== */
.dish-card,
.room-card,
.room-card-detailed {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.dish-card:hover,
.room-card:hover,
.room-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}

.dish-image,
.room-image {
    position: relative;
    overflow: hidden;
}

.dish-image {
    height: 280px;
}

.room-image {
    height: 250px;
}

.dish-image img,
.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.dish-card:hover .dish-image img,
.room-card:hover .room-image img,
.room-card-detailed:hover .room-image {
    transform: scale(1.1);
}

.dish-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--ksr-gold);
    color: var(--ksr-espresso);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dish-badge.best {
    background: var(--ksr-burgundy);
    color: var(--ksr-cream);
}

.dish-content,
.room-content {
    padding: 25px;
}

.dish-rating {
    margin-bottom: 12px;
    color: var(--ksr-gold);
    font-size: 0.85rem;
}

.dish-content h4,
.room-content h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--ksr-espresso);
}

.dish-content>p,
.room-content>p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.65;
}

.dish-footer,
.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-soft);
}

.dish-price,
.price-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ksr-burgundy);
    font-family: var(--font-heading);
}

.room-type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--ksr-gold);
    color: var(--ksr-espresso);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.room-amenities span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-amenities i {
    color: var(--ksr-gold);
    font-size: 0.7rem;
}

.room-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Room detailed */
.room-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.room-image-container .room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.room-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 16, 9, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.room-card-detailed:hover .room-overlay {
    opacity: 1;
}

.room-details {
    padding: 30px;
}

.room-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--ksr-espresso);
}

.room-description {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.room-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--ksr-mist);
    border-radius: var(--radius-sm);
}

.info-item i {
    color: var(--ksr-burgundy);
    font-size: 1.15rem;
}

.info-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.room-amenities-list h6 {
    font-size: 0.9rem;
    color: var(--ksr-espresso);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.amenity-tag {
    font-size: 0.8rem;
    padding: 7px 14px;
    background: var(--ksr-mist);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.amenity-tag i {
    color: var(--ksr-gold);
    font-size: 0.7rem;
}

.room-price-section {
    border-top: 1px solid var(--border-soft);
    padding-top: 20px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 5px;
}

.price-currency,
.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ksr-burgundy);
    font-family: var(--font-heading);
}

/* ===== ROOM FILTERS ===== */
.room-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 11px 26px;
    background: var(--bg-surface);
    border: 1px solid var(--border-medium);
    color: var(--ksr-espresso);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--ksr-espresso);
    color: var(--ksr-cream);
    border-color: var(--ksr-espresso);
}

.room-item {
    transition: var(--transition);
}

.room-item.hidden {
    display: none !important;
}

/* ===== BENEFIT CARDS ===== */
.benefit-card {
    background: var(--bg-surface);
    padding: 40px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--ksr-cream);
}

.benefit-card h5 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
    color: var(--ksr-espresso);
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.92rem;
}

/* ===== BOOKING FORMS (matches Book a Table / Order for pickup screenshots) ===== */
.booking-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 44px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-card);
}

.booking-header {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-soft);
}

.booking-header h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--ksr-espresso);
    font-weight: 800;
}

.booking-header p {
    color: var(--text-muted);
    margin: 0;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--ksr-espresso);
    font-weight: 700;
}

.step-number {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ksr-cream);
    font-weight: 800;
    flex-shrink: 0;
}

/* Form controls - cream themed inputs from screenshot */
.form-label {
    color: var(--ksr-espresso);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.modern-input,
.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
select,
textarea {
    background: var(--ksr-cream) !important;
    border: 1px solid var(--border-soft) !important;
    color: var(--ksr-espresso) !important;
    padding: 14px 20px !important;
    border-radius: var(--radius-full) !important;
    transition: var(--transition);
    font-size: 0.95rem;
    font-family: var(--font-body);
    width: 100%;
}

textarea,
textarea.modern-input,
textarea.form-control {
    border-radius: var(--radius-md) !important;
    min-height: 140px;
    resize: vertical;
}

.modern-input:focus,
.form-control:focus,
input:focus,
select:focus,
textarea:focus {
    border-color: var(--ksr-gold) !important;
    box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.18) !important;
    background: #fff !important;
    outline: none;
}

.modern-input::placeholder,
input::placeholder,
textarea::placeholder {
    color: var(--text-muted) !important;
}

/* Payment methods */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.payment-method-option {
    position: relative;
}

.payment-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-method-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 26px 15px;
    background: var(--ksr-mist);
    border: 2px solid var(--border-soft);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.payment-method-option input:checked+label {
    border-color: var(--ksr-burgundy);
    background: rgba(143, 34, 34, 0.05);
}

.payment-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
}

.bank-icon {
    background: linear-gradient(135deg, #1a5490, #2874A6);
}

.jazzcash-icon {
    background: linear-gradient(135deg, #C0392B, #E74C3C);
}

.easypaisa-icon {
    background: linear-gradient(135deg, #138D75, #1ABC9C);
}

.payment-name {
    font-weight: 700;
    color: var(--ksr-espresso);
    font-size: 0.95rem;
}

.payment-details {
    margin-top: 25px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.payment-info-card {
    background: var(--ksr-mist);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 25px;
}

.payment-info-card.jazzcash-card {
    border-left: 4px solid #E74C3C;
}

.payment-info-card.easypaisa-card {
    border-left: 4px solid #1ABC9C;
}

.payment-info-card h6 {
    color: var(--ksr-burgundy);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}

.info-grid {
    display: grid;
    gap: 15px;
}

.info-item.row-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
    background: transparent;
}

.info-item.row-item:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.info-value {
    color: var(--ksr-espresso);
    font-weight: 700;
}

/* Upload */
.upload-section {
    margin-top: 25px;
}

.upload-area {
    border: 2px dashed var(--border-gold);
    border-radius: var(--radius-md);
    padding: 44px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    background: rgba(217, 164, 65, 0.06);
}

.upload-area:hover {
    border-color: var(--ksr-gold);
    background: rgba(217, 164, 65, 0.12);
}

.upload-area i {
    font-size: 3rem;
    color: var(--ksr-burgundy);
    margin-bottom: 15px;
    display: block;
}

.upload-area p {
    color: var(--ksr-espresso);
    margin-bottom: 8px;
    font-weight: 600;
}

.upload-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.preview-container {
    margin-top: 20px;
    position: relative;
    display: inline-block;
}

.preview-container img {
    max-width: 300px;
    max-height: 300px;
    border-radius: var(--radius-md);
    border: 2px solid var(--ksr-gold);
}

.btn-remove-image {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: var(--ksr-burgundy);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.btn-remove-image:hover {
    background: var(--ksr-burgundy-dark);
    transform: scale(1.1);
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

/* Discount card */
.discount-info-card {
    background: rgba(217, 164, 65, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 22px;
}

.discount-info-card h6 {
    color: var(--ksr-burgundy);
    margin-bottom: 15px;
    font-weight: 700;
}

.discount-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.discount-list .discount-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: transparent;
    padding: 0;
    border: none;
    margin: 0;
}

.discount-list .discount-item i {
    color: var(--ksr-gold);
}

/* Booking summary */
.booking-summary-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-card);
}

.booking-summary-card h5 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 25px;
    color: var(--ksr-espresso);
    font-weight: 800;
}

.summary-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.summary-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--ksr-sand);
    display: block;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
}

.summary-item .label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.summary-item .value {
    color: var(--ksr-espresso);
    font-weight: 700;
}

.summary-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ksr-gold), transparent);
    margin: 15px 0;
}

.summary-discount-item {
    background: rgba(85, 107, 85, 0.10);
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(85, 107, 85, 0.22);
    margin: 10px 0;
    color: var(--ksr-sage);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 10px;
    font-size: 1.2rem;
}

.summary-total .label {
    color: var(--ksr-espresso);
    font-weight: 700;
}

.summary-total .value {
    color: var(--ksr-burgundy);
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 1.6rem;
}

.contact-info-card {
    background: var(--ksr-mist);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 22px;
}

.contact-info-card h6 {
    color: var(--ksr-burgundy);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ===== BOOKING SUCCESS ===== */
.booking-success-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--bg-page);
}

.success-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    box-shadow: var(--shadow-card);
}

.success-icon {
    font-size: 5rem;
    color: var(--ksr-sage);
    margin-bottom: 30px;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--ksr-espresso);
    font-weight: 800;
}

.success-message {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.booking-ref-display {
    background: rgba(217, 164, 65, 0.10);
    border: 2px solid var(--ksr-gold);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 35px;
}

.ref-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.ref-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--ksr-burgundy);
    font-weight: 800;
    letter-spacing: 2px;
}

.booking-summary-success {
    background: var(--ksr-mist);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 25px;
}

.booking-summary-success h5 {
    font-family: var(--font-heading);
    color: var(--ksr-burgundy);
    margin-bottom: 20px;
    font-weight: 700;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span {
    color: var(--text-muted);
}

.detail-row strong {
    color: var(--ksr-espresso);
}

.total-row {
    background: rgba(217, 164, 65, 0.10);
    padding: 15px 12px !important;
    border-radius: var(--radius-sm);
    margin-top: 10px;
    border: 1px solid var(--border-gold);
}

.total-row span,
.total-row strong {
    font-size: 1.1rem;
}

.total-row strong {
    color: var(--ksr-burgundy);
}

.success-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920') center/cover no-repeat;
    position: relative;
    color: var(--ksr-cream);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 16, 9, 0.85);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--ksr-cream);
}

.cta-desc {
    font-size: 1.2rem;
    color: var(--ksr-sand);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--ksr-cream);
}

.breadcrumb {
    justify-content: center;
    background: none;
    margin: 0;
}

.breadcrumb-item {
    color: var(--ksr-sand);
}

.breadcrumb-item a {
    color: var(--ksr-gold);
}

.breadcrumb-item.active {
    color: var(--ksr-cream);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--ksr-sand);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--ksr-espresso);
    border-top: 1px solid rgba(217, 164, 65, 0.14);
    color: var(--ksr-sand);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand i {
    font-size: 2rem;
    color: var(--ksr-gold);
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    color: var(--ksr-cream);
}

.footer-brand span {
    color: var(--ksr-gold);
}

.footer-desc {
    color: var(--ksr-sand);
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.85;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(217, 164, 65, 0.10);
    border: 1px solid rgba(217, 164, 65, 0.20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ksr-sand);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--ksr-gold);
    border-color: var(--ksr-gold);
    color: var(--ksr-espresso);
    transform: translateY(-3px);
}

.footer-widget h5 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: var(--ksr-gold);
    font-weight: 700;
}

.footer-links,
.footer-hours,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--ksr-sand);
    transition: var(--transition);
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--ksr-gold);
    padding-left: 5px;
    opacity: 1;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(217, 164, 65, 0.10);
    color: var(--ksr-sand);
    font-size: 0.9rem;
    opacity: 0.85;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--ksr-sand);
    opacity: 0.85;
}

.footer-contact i {
    color: var(--ksr-gold);
    margin-top: 3px;
    width: 20px;
}

.footer-contact a {
    color: var(--ksr-sand);
}

.footer-contact a:hover {
    color: var(--ksr-gold);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(217, 164, 65, 0.14);
}

.footer-bottom p {
    margin: 0;
    color: var(--ksr-sand);
    font-size: 0.9rem;
    opacity: 0.75;
}

/* ===== FLOATING ELEMENTS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #1EBE57;
    transform: scale(1.1);
    color: #fff;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ksr-cream);
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.6rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .section-title,
    .cta-title {
        font-size: 2.5rem;
    }

    .feature-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 248, 236, 0.18);
    }

    .feature-card:last-child {
        border-bottom: none;
    }

    .payment-methods-grid {
        grid-template-columns: 1fr;
    }

    .step-buttons {
        flex-direction: column;
    }

    .booking-card {
        padding: 32px 26px;
    }
}

@media (max-width: 767px) {
    .topbar {
        display: none;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .booking-card {
        padding: 26px 20px;
    }

    .success-card {
        padding: 40px 25px;
    }

    .hero-buttons,
    .cta-buttons,
    .success-actions {
        flex-direction: column;
    }

    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
    }

    .topbar-left,
    .topbar-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .topbar-right {
        margin-top: 10px;
    }

    .about-badge {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
    }

    .ref-number {
        font-size: 1.5rem;
    }

    .room-info-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top {
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .booking-header h3 {
        font-size: 1.7rem;
    }
}

/* ===== PRINT ===== */
@media print {

    .topbar,
    .navbar,
    .footer,
    .whatsapp-float,
    .scroll-top {
        display: none !important;
    }
}