/* ============================================
   SETH MURLIDHAR MANSINGHKA YATRI NIWAS
   Main Stylesheet - assets/css/style.css
   ============================================ */

:root {
    --saffron: #E65C00;
    --saffron-light: #FF8C00;
    --saffron-dark: #C94A00;
    --gold: #D4AF37;
    --gold-light: #F0D060;
    --dark: #1A1209;
    --dark-brown: #2C1A0E;
    --text-dark: #2D1F0E;
    --text-mid: #5C4033;
    --text-light: #8B6B5A;
    --cream: #FDF6EE;
    --cream-dark: #F5ECD8;
    --white: #FFFFFF;
    --border: #E8D5B7;
    --shadow: 0 4px 20px rgba(230,92,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--saffron); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--saffron-dark); }

/* ---- TOP BAR ---- */
.topbar {
    background: var(--dark-brown);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold-light); }
.topbar i { margin-right: 5px; color: var(--gold); }
.whatsapp-link { background: #25D366; color: white !important; padding: 3px 10px; border-radius: 20px; font-weight: 500; }
.whatsapp-link:hover { background: #128C7E; }

/* ---- HEADER ---- */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.12); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo a { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 22px;
    box-shadow: 0 4px 15px rgba(230,92,0,0.35);
}
.logo-name { display: block; font-family: var(--font-display); font-weight: 700; color: var(--text-dark); font-size: 16px; line-height: 1.2; }
.logo-sub { display: block; font-size: 11px; color: var(--text-light); letter-spacing: 0.5px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    color: var(--text-dark); font-size: 14px; font-weight: 500;
    padding: 8px 14px; border-radius: 8px; transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--saffron); background: rgba(230,92,0,0.08); }

.btn-book-header {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
    color: white !important; padding: 10px 22px; border-radius: 10px;
    font-weight: 600; font-size: 14px; white-space: nowrap;
    box-shadow: 0 4px 15px rgba(230,92,0,0.35);
    transition: var(--transition);
}
.btn-book-header:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230,92,0,0.45); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }

/* ---- BUTTONS ---- */
.btn { display: inline-block; padding: 12px 28px; border-radius: 10px; font-weight: 600; font-size: 15px; cursor: pointer; border: none; transition: var(--transition); text-align: center; }
.btn-primary { background: linear-gradient(135deg, var(--saffron), var(--saffron-light)); color: white; box-shadow: 0 4px 15px rgba(230,92,0,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(230,92,0,0.45); color: white; }
.btn-outline { background: transparent; color: var(--saffron); border: 2px solid var(--saffron); }
.btn-outline:hover { background: var(--saffron); color: white; }
.btn-white { background: white; color: var(--saffron); }
.btn-white:hover { background: var(--cream); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--dark); }

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, var(--dark-brown) 0%, #3D2010 50%, #1A0A00 100%);
    min-height: 90vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 80px 0;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.03">🕉</text></svg>') center/300px repeat;
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 650px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.4);
    color: var(--gold-light); padding: 6px 16px; border-radius: 30px;
    font-size: 13px; font-weight: 500; margin-bottom: 24px; letter-spacing: 0.5px;
}
.hero h1 {
    font-family: var(--font-display); font-size: clamp(32px, 5vw, 58px);
    color: white; line-height: 1.15; margin-bottom: 20px;
}
.hero h1 span { color: var(--gold-light); }
.hero p { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 32px; max-width: 500px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-features {
    display: flex; gap: 24px; margin-top: 48px; flex-wrap: wrap;
}
.hero-feat {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.75); font-size: 14px;
}
.hero-feat i { color: var(--gold); font-size: 18px; }

.hero-image-side {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 45%; overflow: hidden; display: none;
}

/* ---- SECTION STYLES ---- */
.section { padding: 80px 0; }
.section-alt { background: var(--cream); }

.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--saffron); font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px;
}
.section-label::before, .section-label::after { content: '—'; opacity: 0.5; }

.section-title {
    font-family: var(--font-display); font-size: clamp(26px, 4vw, 40px);
    color: var(--text-dark); line-height: 1.2; margin-bottom: 16px;
}
.section-title span { color: var(--saffron); }
.section-subtitle { color: var(--text-light); font-size: 16px; max-width: 600px; margin-bottom: 50px; }

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---- QUICK BOOKING BAR ---- */
.booking-bar {
    background: white; box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg); padding: 30px;
    margin: -40px auto 0; position: relative; z-index: 10;
    max-width: 900px;
}
.booking-bar h2 { font-family: var(--font-display); font-size: 22px; margin-bottom: 20px; color: var(--text-dark); }
.booking-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; align-items: end; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.form-group input, .form-group select {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
    border-radius: 10px; font-size: 15px; color: var(--text-dark);
    font-family: var(--font-body); transition: var(--transition); background: white;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(230,92,0,0.1); }

/* ---- ROOMS GRID ---- */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

.room-card {
    background: white; border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.07); overflow: hidden;
    transition: var(--transition); border: 1px solid var(--border);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-image { position: relative; overflow: hidden; height: 220px; }
.room-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-image img { transform: scale(1.05); }
.room-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--saffron); color: white;
    padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600;
}
.room-body { padding: 24px; }
.room-name { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; color: var(--text-dark); }
.room-desc { color: var(--text-light); font-size: 14px; margin-bottom: 16px; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.amenity-tag { background: var(--cream); color: var(--text-mid); padding: 4px 10px; border-radius: 20px; font-size: 12px; }
.room-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 16px; }
.room-price .amount { font-family: var(--font-display); font-size: 24px; color: var(--saffron); font-weight: 700; }
.room-price .per { font-size: 13px; color: var(--text-light); }

/* ---- FEATURES ---- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.feature-card {
    text-align: center; padding: 30px 20px;
    background: white; border-radius: var(--radius);
    border: 1px solid var(--border); transition: var(--transition);
}
.feature-card:hover { border-color: var(--saffron); box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-icon {
    width: 64px; height: 64px; margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(230,92,0,0.1), rgba(255,140,0,0.1));
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--saffron);
}
.feature-card h3 { font-family: var(--font-display); font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-light); }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
    background: white; border-radius: var(--radius);
    padding: 28px; border: 1px solid var(--border);
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.stars { color: var(--gold); margin-bottom: 12px; font-size: 14px; }
.testimonial-text { font-size: 15px; color: var(--text-mid); font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 16px;
}
.author-name { font-weight: 600; font-size: 15px; }
.author-city { font-size: 13px; color: var(--text-light); }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
    background: white; border-radius: var(--radius);
    overflow: hidden; border: 1px solid var(--border);
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-img { height: 190px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-no-img { height: 190px; background: linear-gradient(135deg, var(--cream), var(--cream-dark)); display: flex; align-items: center; justify-content: center; font-size: 50px; }
.blog-body { padding: 22px; }
.blog-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-light); margin-bottom: 10px; }
.blog-title { font-family: var(--font-display); font-size: 18px; margin-bottom: 10px; color: var(--text-dark); line-height: 1.35; }
.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--saffron); }
.blog-excerpt { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.read-more { color: var(--saffron); font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 5px; }

/* ---- GALLERY ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }

/* ---- CTA SECTION ---- */
.cta-section {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: white; text-align: center; padding: 80px 20px;
}
.cta-section h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.cta-section p { font-size: 17px; opacity: 0.9; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border); border-radius: var(--radius);
    margin-bottom: 12px; overflow: hidden;
}
.faq-question {
    padding: 18px 24px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; font-size: 15px; color: var(--text-dark);
    background: white; transition: var(--transition);
}
.faq-question:hover { background: var(--cream); }
.faq-question.active { color: var(--saffron); background: rgba(230,92,0,0.05); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.35s ease; }
.faq-answer.open { max-height: 300px; padding: 0 24px 18px; }
.faq-answer p { color: var(--text-light); font-size: 15px; }
.faq-icon { transition: transform 0.3s; font-size: 12px; }
.faq-question.active .faq-icon { transform: rotate(180deg); }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info-card { background: white; border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-item:last-child { margin-bottom: 0; }
.ci-icon { width: 48px; height: 48px; background: rgba(230,92,0,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--saffron); font-size: 20px; flex-shrink: 0; }
.ci-content h4 { font-weight: 600; margin-bottom: 4px; font-size: 15px; }
.ci-content p, .ci-content a { color: var(--text-light); font-size: 15px; }
.ci-content a:hover { color: var(--saffron); }

.contact-form-wrap { background: white; border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); }
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
    border-radius: 10px; font-size: 15px; color: var(--text-dark);
    font-family: var(--font-body); transition: var(--transition); background: white;
}
.form-group textarea { height: 120px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(230,92,0,0.1);
}

/* ---- BOOKING PAGE ---- */
.booking-page-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.booking-summary-card { background: var(--cream); border-radius: var(--radius-lg); padding: 30px; border: 1px solid var(--border); position: sticky; top: 100px; }
.booking-summary-card h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 20px; }
.summary-room { display: flex; gap: 14px; margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.summary-room img { width: 80px; height: 60px; border-radius: 8px; object-fit: cover; }
.summary-details h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.summary-details .price { color: var(--saffron); font-weight: 700; font-size: 17px; }
.price-breakdown { font-size: 14px; }
.price-row { display: flex; justify-content: space-between; padding: 6px 0; color: var(--text-light); }
.price-row.total { font-weight: 700; font-size: 17px; color: var(--text-dark); border-top: 2px solid var(--border); margin-top: 8px; padding-top: 12px; }

/* ---- ALERTS ---- */
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ---- BLOG SINGLE ---- */
.blog-single { max-width: 800px; margin: 0 auto; }
.blog-single h1 { font-family: var(--font-display); font-size: clamp(24px, 4vw, 38px); margin-bottom: 20px; }
.blog-content { font-size: 16px; line-height: 1.9; color: var(--text-mid); }
.blog-content h2 { font-family: var(--font-display); font-size: 24px; color: var(--text-dark); margin: 32px 0 16px; }
.blog-content h3 { font-size: 19px; margin: 24px 0 12px; color: var(--text-dark); }
.blog-content p { margin-bottom: 18px; }
.blog-content ul, .blog-content ol { margin: 16px 0 16px 24px; }
.blog-content li { margin-bottom: 8px; }

/* ---- PAGE HERO ---- */
.page-hero {
    background: linear-gradient(135deg, var(--dark-brown), #2C1A0E);
    color: white; padding: 70px 0 50px; text-align: center;
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 16px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold-light); }

/* ---- FOOTER ---- */
.site-footer { background: var(--dark-brown); color: rgba(255,255,255,0.8); }
.footer-top { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo i { font-size: 24px; color: var(--gold); }
.footer-logo span { font-family: var(--font-display); font-size: 18px; color: white; }
.footer-about p { font-size: 14px; line-height: 1.8; opacity: 0.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,0.1); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; transition: var(--transition);
}
.footer-social a:hover { background: var(--saffron); color: white; }

.footer-col h4 { font-family: var(--font-display); font-size: 17px; color: white; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid rgba(212,175,55,0.4); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.7); font-size: 14px; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact .contact-item { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact .contact-item i { color: var(--gold); font-size: 15px; margin-top: 2px; min-width: 16px; }
.footer-contact .contact-item span, .footer-contact .contact-item a { font-size: 14px; color: rgba(255,255,255,0.75); }
.footer-contact .contact-item a:hover { color: var(--gold-light); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; text-align: center; }
.footer-bottom p { font-size: 13px; opacity: 0.6; }
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---- FLOATING BUTTONS ---- */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    background: #25D366; color: white;
    display: flex; align-items: center; gap: 8px;
    padding: 12px 18px; border-radius: 50px;
    font-weight: 600; font-size: 14px;
    box-shadow: 0 6px 25px rgba(37,211,102,0.45);
    transition: var(--transition); text-decoration: none;
}
.whatsapp-float:hover { background: #128C7E; transform: translateY(-3px); color: white; }
.whatsapp-float i { font-size: 20px; }

.scroll-top {
    position: fixed; bottom: 24px; left: 24px; z-index: 999;
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--saffron); color: white; border: none;
    cursor: pointer; font-size: 15px; display: none;
    box-shadow: 0 4px 15px rgba(230,92,0,0.4); transition: var(--transition);
}
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top.visible { display: flex; align-items: center; justify-content: center; }

/* ---- ADMIN ---- */
.admin-body { background: #F4F6F9; font-family: var(--font-body); margin: 0; padding: 0; }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    background: var(--dark-brown); color: white;
    padding: 0; position: fixed; left: 0; top: 0;
    width: 240px; height: 100vh;
    overflow-y: auto; z-index: 100; flex-shrink: 0;
}
.admin-brand { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-brand h2 { font-family: var(--font-display); font-size: 16px; line-height: 1.4; }
.admin-brand p { font-size: 12px; opacity: 0.6; margin-top: 4px; }
.admin-nav { padding: 20px 0; }
.admin-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 20px; color: rgba(255,255,255,0.75);
    font-size: 14px; transition: var(--transition); text-decoration: none;
}
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,0.1); color: white; }
.admin-nav a i { width: 18px; font-size: 15px; }
.admin-nav .nav-divider { padding: 10px 20px 5px; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.4; }

.admin-main { margin-left: 240px; padding: 24px; flex: 1; min-width: 0; box-sizing: border-box; }
.admin-topbar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 30px; background: white;
    padding: 16px 24px; border-radius: var(--radius); box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.admin-topbar h1 { font-size: 20px; font-family: var(--font-display); }
.admin-logout { color: var(--saffron); font-size: 13px; font-weight: 600; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card {
    background: white; border-radius: var(--radius); padding: 24px;
    border-left: 4px solid var(--saffron); box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.stat-card h3 { font-size: 30px; font-weight: 700; color: var(--saffron); }
.stat-card p { font-size: 13px; color: var(--text-light); margin-top: 4px; }

.admin-card {
    background: white; border-radius: var(--radius); padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06); margin-bottom: 24px;
}
.admin-card h2 { font-family: var(--font-display); font-size: 18px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }

.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th { background: var(--cream); font-weight: 600; text-align: left; padding: 12px 14px; border-bottom: 2px solid var(--border); font-size: 13px; color: var(--text-mid); }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:hover td { background: var(--cream); }

.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-success { background: #d4edda; color: #155724; }
.badge-warning { background: #fff3cd; color: #856404; }
.badge-danger { background: #f8d7da; color: #721c24; }
.badge-info { background: #d1ecf1; color: #0c5460; }

.btn-sm { padding: 6px 14px; font-size: 13px; border-radius: 7px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .contact-grid, .booking-page-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { position: relative; width: 100%; height: auto; }
    .admin-main { margin-left: 0; padding: 16px; }
}

@media (max-width: 768px) {
    .topbar .container { flex-direction: column; text-align: center; }
    .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 16px; box-shadow: var(--shadow-lg); }
    .main-nav.open { display: flex; }
    .nav-toggle { display: flex; }
    .btn-book-header { display: none; }
    .hero { min-height: 70vh; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .booking-form { grid-template-columns: 1fr; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 14px; }
}

@media (max-width: 480px) {
    .rooms-grid { grid-template-columns: 1fr; }
    .section { padding: 50px 0; }
}
