/* ============================
   Hotel Abhijit – Main Styles
   ============================ */

:root {
    --primary: #b8860b;
    --primary-dark: #8b6508;
    --primary-light: #d4a017;
    --secondary: #1a1a2e;
    --accent: #e8c97a;
    --bg-light: #fdf8f0;
    --bg-cream: #f9f3e8;
    --text-dark: #1a1a2e;
    --text-gray: #666;
    --text-light: #999;
    --white: #ffffff;
    --border: #e8dcc8;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
}

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---- Header ---- */
.site-header { position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow); }

.header-top {
    background: var(--secondary);
    color: #ccc;
    padding: 8px 0;
    font-size: 0.82rem;
}
.header-top-inner { display: flex; justify-content: space-between; align-items: center; gap: 15px; flex-wrap: wrap; }
.header-contact { display: flex; gap: 20px; }
.header-contact span i { color: var(--primary-light); margin-right: 5px; }
.header-links a { color: #ccc; text-decoration: none; font-size: 0.82rem; }
.header-links a:hover { color: var(--accent); }

.header-main { background: var(--white); padding: 15px 0; }
.header-main-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.4rem;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--primary-dark); line-height: 1.2; }
.logo-tag { font-size: 0.7rem; color: var(--text-gray); font-style: italic; }

.main-nav ul { display: flex; list-style: none; gap: 5px; align-items: center; }
.main-nav a {
    text-decoration: none; color: var(--text-dark);
    font-size: 0.9rem; font-weight: 500;
    padding: 8px 14px; border-radius: 6px;
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
    background: var(--bg-cream); color: var(--primary);
}

.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--primary); }

/* ---- Navbar Dropdown ---- */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex !important; align-items: center; gap: 5px; }
.nav-dd-arrow { font-size: .6rem; transition: transform .25s; flex-shrink: 0; }
.nav-dropdown:hover .nav-dd-arrow,
.nav-dropdown.open .nav-dd-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10px;
    min-width: 560px;
    z-index: 2000;
}
@keyframes ddFade {
    from { opacity:0; transform: translateY(-8px); }
    to   { opacity:1; transform: translateY(0); }
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open  .nav-dropdown-menu { display: block; }
.nav-dd-inner {
    padding: 22px 26px 14px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,.14);
    border: 1px solid #ece8e1;
    animation: ddFade .2s ease;
}
.nav-dd-heading { font-size: .72rem; text-transform: uppercase; letter-spacing: .7px; color: #aaa; font-weight: 600; margin-bottom: 14px; }
.nav-dd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px 8px;
    margin-bottom: 14px;
}
.nav-dd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 7px;
    text-decoration: none;
    color: #333;
    font-size: .85rem;
    font-weight: 500;
    transition: background .15s, color .15s;
    overflow: hidden;
}
.nav-dd-item:hover { background: #fdf6ec; color: var(--primary); }
.nav-dd-item:hover .nav-dd-bullet { transform: scale(1.15); }
.nav-dd-bullet {
    width: 10px; height: 10px;
    background: var(--primary);
    border-radius: 2px;
    flex-shrink: 0;
    transition: transform .15s;
}
.nav-dd-name { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-dd-footer {
    border-top: 1px solid #f0ebe3;
    padding: 12px 0 2px;
    text-align: center;
}
.nav-dd-footer a {
    color: var(--primary) !important;
    font-size: .83rem;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent !important;
    padding: 0 !important;
}
.nav-dd-footer a:hover { opacity: .75; }

/* ---- Hero ---- */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 88vh;
    display: flex; align-items: center;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../images/hero-bg.jpg') center/cover;
    opacity: 0.25;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.6) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 650px; }
.hero-badge {
    display: inline-block;
    background: var(--primary); color: white;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
    padding: 5px 16px; border-radius: 20px; text-transform: uppercase;
    margin-bottom: 20px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem; font-weight: 700;
    color: white; line-height: 1.2; margin-bottom: 10px;
}
.hero h1 span { color: var(--accent); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 15px; }
.hero-tagline { font-size: 0.95rem; color: var(--accent); letter-spacing: 1px; margin-bottom: 35px; }
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white; padding: 14px 32px; border-radius: 8px;
    text-decoration: none; font-weight: 600; font-size: 0.95rem;
    border: none; cursor: pointer;
    transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 15px rgba(184,134,11,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,134,11,0.5); }

.btn-outline {
    background: transparent;
    color: white; padding: 14px 32px; border-radius: 8px;
    text-decoration: none; font-weight: 600; font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.5); cursor: pointer;
    transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* Hero Stats */
.hero-stats { display: flex; gap: 30px; margin-top: 45px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 2rem; font-weight: 700; color: var(--accent); font-family: 'Playfair Display', serif; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }

/* ---- Section Common ---- */
.section-title { text-align: center; margin-bottom: 50px; }
.section-badge {
    display: inline-block;
    color: var(--primary); text-transform: uppercase; font-size: 0.75rem;
    font-weight: 600; letter-spacing: 2px; margin-bottom: 10px;
}
.section-title h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--text-dark); margin-bottom: 12px; }
.section-title p { color: var(--text-gray); max-width: 600px; margin: 0 auto; }
.section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); margin: 15px auto 0; border-radius: 2px; }

/* ---- Places Grid ---- */
.places-section { padding: 80px 0; background: var(--bg-light); }

.search-filter-bar { margin-bottom: 40px; }
.search-box {
    display: flex; gap: 10px;
    max-width: 500px; margin: 0 auto;
}
.search-box input {
    flex: 1; padding: 12px 18px; border: 2px solid var(--border);
    border-radius: 8px; font-family: 'Poppins', sans-serif;
    font-size: 0.9rem; outline: none; transition: var(--transition);
}
.search-box input:focus { border-color: var(--primary); }
.search-box button {
    background: var(--primary); color: white; border: none;
    padding: 12px 22px; border-radius: 8px; cursor: pointer;
    font-size: 1rem; transition: var(--transition);
}
.search-box button:hover { background: var(--primary-dark); }

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.place-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}
.place-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.place-card-img {
    height: 220px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    overflow: hidden; position: relative;
}
.place-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.place-card:hover .place-card-img img { transform: scale(1.07); }

.place-card-badge {
    position: absolute; top: 14px; right: 14px;
    background: rgba(0,0,0,0.7); color: white;
    font-size: 0.75rem; padding: 4px 10px; border-radius: 20px;
    backdrop-filter: blur(5px);
}
.place-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    padding: 20px 18px 12px;
}
.place-card-overlay h3 { color: white; font-family: 'Playfair Display', serif; font-size: 1.3rem; }

.place-card-body { padding: 18px; }
.place-card-body p { color: var(--text-gray); font-size: 0.87rem; margin-bottom: 14px; line-height: 1.6; }
.place-card-footer { display: flex; justify-content: space-between; align-items: center; }
.hotel-count { font-size: 0.82rem; color: var(--primary); font-weight: 600; }
.hotel-count i { margin-right: 4px; }
.view-btn {
    background: var(--bg-cream); color: var(--primary);
    padding: 7px 16px; border-radius: 20px;
    font-size: 0.82rem; font-weight: 600;
    transition: var(--transition); display: inline-flex; align-items: center; gap: 5px;
}
.place-card:hover .view-btn { background: var(--primary); color: white; }

/* Placeholder image */
.place-img-placeholder, .hotel-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--secondary), #0f3460);
    color: rgba(255,255,255,0.5);
    font-size: 3rem;
}

/* ---- About Section ---- */
.about-section { padding: 80px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-hover); }
.about-badge-float {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--primary); color: white;
    width: 110px; height: 110px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; box-shadow: 0 4px 15px rgba(184,134,11,0.4);
}
.about-badge-float span:first-child { font-size: 1.8rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.about-badge-float span:last-child { font-size: 0.65rem; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-content .section-divider { margin: 15px 0 0; }
.about-text { color: var(--text-gray); margin: 20px 0; line-height: 1.8; }
.about-features { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0; }
.about-feature {
    display: flex; align-items: center; gap: 8px;
    background: var(--bg-cream); padding: 8px 16px; border-radius: 6px;
    font-size: 0.85rem; font-weight: 500;
}
.about-feature i { color: var(--primary); }
.about-contact-info { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.about-contact-info a { color: var(--primary); text-decoration: none; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.about-contact-info a:hover { color: var(--primary-dark); }
.about-contact-info a i { width: 20px; }

/* ---- Services Section ---- */
.services-section { padding: 80px 0; background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 25px; }
.service-card {
    background: var(--white);
    border-radius: var(--radius); padding: 30px 25px;
    text-align: center; box-shadow: var(--shadow);
    transition: var(--transition); border-top: 3px solid transparent;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-top-color: var(--primary); }
.service-icon {
    width: 65px; height: 65px; border-radius: 50%;
    background: var(--bg-cream); display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; font-size: 1.5rem; color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: white; }
.service-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.service-card p { font-size: 0.85rem; color: var(--text-gray); line-height: 1.6; }

/* ---- CTA ---- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary), #0f3460);
    text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../images/cta-bg.jpg') center/cover;
    opacity: 0.1;
}
.cta-content { position: relative; z-index: 2; }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: white; margin-bottom: 15px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 35px; }

/* ---- Hotels Grid ---- */
.hotels-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.hotel-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: var(--transition);
    text-decoration: none; color: inherit; display: block;
}
.hotel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.hotel-card-img { height: 220px; overflow: hidden; position: relative; }
.hotel-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hotel-card:hover .hotel-card-img img { transform: scale(1.07); }
.hotel-featured-badge {
    position: absolute; top: 14px; left: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white; font-size: 0.72rem; font-weight: 600;
    padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.hotel-card-body { padding: 20px; }
.hotel-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.hotel-card-header h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text-dark); }
.hotel-rating { display: flex; align-items: center; gap: 5px; }
.hotel-rating .stars { color: var(--primary); font-size: 0.75rem; }
.hotel-rating span { font-size: 0.82rem; font-weight: 600; color: var(--text-gray); }
.hotel-location { display: flex; align-items: center; gap: 5px; color: var(--text-gray); font-size: 0.82rem; margin-bottom: 10px; }
.hotel-location i { color: var(--primary); font-size: 0.75rem; }
.hotel-desc { font-size: 0.85rem; color: var(--text-gray); margin-bottom: 14px; line-height: 1.6; }
.hotel-amenities { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.amenity-tag {
    background: var(--bg-cream); color: var(--primary);
    font-size: 0.73rem; padding: 4px 10px; border-radius: 20px; font-weight: 500;
}
.hotel-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--border); }
.hotel-price { font-size: 0.85rem; color: var(--text-gray); }
.hotel-price strong { color: var(--primary); font-size: 1rem; }
.enquire-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white; padding: 9px 20px; border-radius: 6px;
    font-size: 0.82rem; font-weight: 600;
    transition: var(--transition); display: inline-flex; align-items: center; gap: 5px;
}
.hotel-card:hover .enquire-btn { transform: scale(1.03); }

/* ---- Hotel Detail ---- */
.hotel-detail-section { padding: 60px 0; }
.hotel-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.hotel-gallery { margin-bottom: 30px; }
.hotel-main-img { border-radius: var(--radius); overflow: hidden; height: 400px; margin-bottom: 10px; }
.hotel-main-img img { width: 100%; height: 100%; object-fit: cover; }
.hotel-thumb-row { display: flex; gap: 8px; overflow-x: auto; }
.hotel-thumb { width: 90px; height: 65px; border-radius: 6px; overflow: hidden; cursor: pointer; border: 2px solid transparent; flex-shrink: 0; }
.hotel-thumb.active, .hotel-thumb:hover { border-color: var(--primary); }
.hotel-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hotel-info-header { margin-bottom: 25px; }
.hotel-info-header h1 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 8px; }
.hotel-meta { display: flex; gap: 15px; flex-wrap: wrap; align-items: center; margin-bottom: 12px; }
.hotel-meta .badge { background: var(--bg-cream); color: var(--primary); padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.hotel-info-body p { color: var(--text-gray); line-height: 1.8; margin-bottom: 25px; }
.hotel-detail-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 25px; }
.hotel-detail-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; list-style: none; }
.hotel-detail-list i { color: var(--primary); margin-top: 3px; min-width: 16px; }
.amenities-section-detail h3 { font-size: 1rem; font-weight: 600; margin-bottom: 15px; }
.amenities-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.amenity-item { display: flex; align-items: center; gap: 6px; background: var(--bg-cream); padding: 8px 14px; border-radius: 8px; font-size: 0.83rem; }
.amenity-item i { color: var(--primary); }

/* ---- Enquiry Form (Sidebar) ---- */
.enquiry-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    position: sticky; top: 100px;
}
.enquiry-card-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 22px 25px;
    color: white;
}
.enquiry-card-header h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 4px; }
.enquiry-card-header p { font-size: 0.82rem; opacity: 0.9; }
.enquiry-form { padding: 25px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.87rem; outline: none;
    transition: var(--transition); color: var(--text-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(184,134,11,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group textarea { resize: vertical; min-height: 90px; }
.enquiry-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white; border: none; padding: 13px;
    border-radius: var(--radius-sm); font-family: 'Poppins', sans-serif;
    font-size: 0.95rem; font-weight: 600; cursor: pointer;
    transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px;
}
.enquiry-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(184,134,11,0.4); }
.form-success { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; padding: 12px; border-radius: 8px; font-size: 0.87rem; text-align: center; }
.form-error { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; padding: 12px; border-radius: 8px; font-size: 0.87rem; }

/* ---- Breadcrumb ---- */
.breadcrumb-section {
    background: var(--bg-cream);
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary-dark); }
.breadcrumb span { color: var(--text-gray); }
.breadcrumb i { font-size: 0.7rem; color: var(--text-light); }

/* ---- Place Hero Banner ---- */
.place-hero {
    background: linear-gradient(135deg, var(--secondary), #0f3460);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.place-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.2;
}
.place-hero-content { position: relative; z-index: 2; }
.place-hero h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: white; margin-bottom: 10px; }
.place-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 550px; margin: 0 auto; }

/* ---- Page Header ---- */
.page-header { padding: 25px 0 40px; }
.page-header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.results-count { font-size: 0.9rem; color: var(--text-gray); }
.results-count strong { color: var(--text-dark); }
.filter-sort { display: flex; gap: 10px; align-items: center; }
.filter-sort select {
    padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 8px;
    font-family: 'Poppins', sans-serif; font-size: 0.85rem; outline: none;
    cursor: pointer;
}

/* ---- Admin ---- */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 260px; background: var(--secondary);
    display: flex; flex-direction: column;
    flex-shrink: 0; position: fixed;
    top: 0; left: 0; height: 100vh;
    overflow-y: auto;
    z-index: 100;
}
.admin-sidebar-logo {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.admin-sidebar-logo .logo-icon { width: 38px; height: 38px; font-size: 1rem; border-radius: 8px; }
.admin-sidebar-logo span { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: white; font-weight: 700; }
.admin-nav { padding: 20px 0; flex: 1; }
.admin-nav-group { margin-bottom: 5px; padding: 0 12px; }
.admin-nav-label { font-size: 0.68rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 2px; padding: 8px 8px 4px; font-weight: 600; }
.admin-nav a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 8px;
    color: rgba(255,255,255,0.7); text-decoration: none;
    font-size: 0.88rem; transition: var(--transition);
    margin-bottom: 2px;
}
.admin-nav a:hover, .admin-nav a.active {
    background: rgba(255,255,255,0.1); color: white;
}
.admin-nav a.active { background: var(--primary); color: white; }
.admin-nav a i { width: 18px; font-size: 0.9rem; }
.admin-sidebar-footer { padding: 15px 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.admin-sidebar-footer a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.82rem; display: flex; align-items: center; gap: 8px; }
.admin-sidebar-footer a:hover { color: white; }

.admin-main { flex: 1; margin-left: 260px; background: #f4f6fb; min-height: 100vh; }
.admin-topbar {
    background: white; padding: 15px 30px;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 50;
}
.admin-topbar h2 { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); }
.admin-user { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; }
.admin-user span { color: var(--text-gray); }
.admin-user .logout-btn {
    background: #fee2e2; color: #dc2626; padding: 6px 14px; border-radius: 6px;
    text-decoration: none; font-size: 0.8rem; font-weight: 600;
    transition: var(--transition);
}
.admin-user .logout-btn:hover { background: #dc2626; color: white; }
.admin-content { padding: 30px; }

.admin-stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-bottom: 30px; }
.stat-card {
    background: white; border-radius: var(--radius); padding: 22px;
    display: flex; align-items: center; gap: 16px;
    box-shadow: var(--shadow); transition: var(--transition);
}
.stat-card:hover { transform: translateY(-2px); }
.stat-icon {
    width: 52px; height: 52px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
}
.stat-icon.gold { background: #fef3c7; color: #d97706; }
.stat-icon.blue { background: #dbeafe; color: #2563eb; }
.stat-icon.green { background: #d1fae5; color: #059669; }
.stat-icon.red { background: #fee2e2; color: #dc2626; }
.stat-info .stat-num { font-size: 1.7rem; font-weight: 700; color: var(--text-dark); display: block; }
.stat-info .stat-label { font-size: 0.78rem; color: var(--text-gray); font-family: 'Poppins', sans-serif; }

.admin-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 25px; }
.admin-card-header { padding: 18px 22px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.admin-card-header h3 { font-size: 1rem; font-weight: 600; color: var(--text-dark); }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.87rem; }
.admin-table th { background: #f8fafc; padding: 12px 16px; text-align: left; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-gray); font-weight: 600; border-bottom: 1px solid var(--border); }
.admin-table td { padding: 13px 16px; border-bottom: 1px solid #f1f5f9; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #f8fafc; }
.admin-table .img-thumb { width: 50px; height: 40px; border-radius: 6px; object-fit: cover; }
.badge-new { background: #dbeafe; color: #1d4ed8; padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; }
.badge-read { background: #d1fae5; color: #065f46; padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; }
.badge-replied { background: #fef3c7; color: #92400e; padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; }
.action-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.btn-icon { padding: 5px 12px; border-radius: 6px; font-size: 0.78rem; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 4px; }
.btn-edit { background: #dbeafe; color: #1d4ed8; }
.btn-delete { background: #fee2e2; color: #dc2626; }
.btn-view { background: #d1fae5; color: #065f46; }
.btn-icon:hover { opacity: 0.8; transform: translateY(-1px); }

.admin-form .form-group label { font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; display: block; }
.admin-form .form-group input,
.admin-form .form-group select,
.admin-form .form-group textarea {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif; font-size: 0.88rem;
    outline: none; transition: var(--transition);
}
.admin-form .form-group input:focus,
.admin-form .form-group select:focus,
.admin-form .form-group textarea:focus { border-color: var(--primary); }
.admin-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-form .btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white; border: none; padding: 13px 30px;
    border-radius: 8px; font-family: 'Poppins', sans-serif;
    font-size: 0.95rem; font-weight: 600; cursor: pointer;
    transition: var(--transition);
}
.admin-form .btn-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(184,134,11,0.4); }
.img-preview { max-width: 150px; max-height: 100px; border-radius: 8px; object-fit: cover; margin-top: 8px; }

/* Admin Login */
.admin-login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary), #0f3460);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.login-card {
    background: white; border-radius: 16px;
    padding: 45px 40px; max-width: 420px; width: 100%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.login-logo { text-align: center; margin-bottom: 30px; }
.login-logo .logo-icon { width: 65px; height: 65px; font-size: 1.8rem; margin: 0 auto 10px; }
.login-logo h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--text-dark); }
.login-logo p { color: var(--text-gray); font-size: 0.85rem; }
.login-form .form-group { margin-bottom: 18px; }
.login-form label { font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; display: block; color: var(--text-dark); }
.login-form input {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
    border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 0.9rem;
    outline: none; transition: var(--transition);
}
.login-form input:focus { border-color: var(--primary); }
.login-btn {
    width: 100%; background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white; border: none; padding: 13px;
    border-radius: 8px; font-family: 'Poppins', sans-serif;
    font-size: 1rem; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.login-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(184,134,11,0.4); }
.login-error { background: #fee2e2; border: 1px solid #fca5a5; color: #dc2626; padding: 12px; border-radius: 8px; font-size: 0.87rem; text-align: center; margin-bottom: 16px; }
.back-to-site { text-align: center; margin-top: 20px; }
.back-to-site a { color: var(--primary); text-decoration: none; font-size: 0.85rem; }

/* ---- Toast / Alert ---- */
.toast {
    position: fixed; bottom: 30px; right: 30px;
    padding: 14px 22px; border-radius: 10px;
    font-size: 0.88rem; font-weight: 500;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 9999; transform: translateY(20px); opacity: 0;
    transition: all 0.4s ease; max-width: 340px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.toast.error { background: #fee2e2; color: #dc2626; border-left: 4px solid #ef4444; }

/* ---- Footer ---- */
.site-footer { background: var(--secondary); }
.footer-top { padding: 60px 0 40px; }
.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: 15px; }
.footer-logo i { font-size: 1.5rem; color: var(--accent); }
.footer-logo span { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: white; font-weight: 700; }
.footer-about p { color: rgba(255,255,255,0.6); font-size: 0.87rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 0.9rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: white; }
.footer-col h4 { font-size: 0.95rem; font-weight: 600; color: white; margin-bottom: 18px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.87rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 3px; }
.footer-col ul li a i { font-size: 0.7rem; }
.footer-contact ul li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.6); font-size: 0.87rem; margin-bottom: 12px; }
.footer-contact ul li i { color: var(--accent); margin-top: 3px; min-width: 14px; }
.footer-contact ul li a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-contact ul li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom p { text-align: center; color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-badge-float { bottom: -15px; right: 15px; }
    .hotel-detail-grid { grid-template-columns: 1fr; }
    .enquiry-card { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .admin-sidebar { width: 220px; }
    .admin-main { margin-left: 220px; }
}

@media (max-width: 768px) {
    .header-top { display: none; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 15px; box-shadow: var(--shadow); }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; }
    .nav-toggle { display: block; }
    .nav-dropdown-menu { position: static; transform: none; min-width: 100%; padding-top: 0; }
    .nav-dd-inner { animation: none; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,.08); margin: 4px 0 8px; }
    .nav-dd-grid { grid-template-columns: 1fr 1fr; }
    .nav-dropdown.open .nav-dropdown-menu { display: block; }
    .hero { padding: 50px 0 40px; min-height: 70vh; }
    .hero h1 { font-size: 1.9rem; }
    .hero-stats { gap: 20px; }
    .places-grid, .hotels-grid, .services-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
    .admin-wrapper { flex-direction: column; }
    .admin-sidebar { width: 100%; position: relative; height: auto; }
    .admin-nav ul { display: flex; flex-wrap: wrap; }
    .admin-main { margin-left: 0; }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .admin-form .form-row { grid-template-columns: 1fr; }
    .hotel-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .places-grid, .hotels-grid, .services-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.6rem; }
    .section-title h2 { font-size: 1.7rem; }
    .admin-stats { grid-template-columns: 1fr 1fr; }
    .login-card { padding: 30px 22px; }
}

/* =============================================
   Book Now Modal
   ============================================= */
.book-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.book-modal-overlay.open { display: flex; }

.book-modal {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
    width: 100%;
    max-width: 680px;
    max-height: 92vh;
    overflow-y: auto;
    animation: bookModalIn .28s cubic-bezier(.34,1.2,.64,1);
}
@keyframes bookModalIn {
    from { transform: scale(.88) translateY(30px); opacity: 0; }
    to   { transform: scale(1)   translateY(0);    opacity: 1; }
}

.book-modal-header {
    background: linear-gradient(135deg, var(--secondary), #0f1f3d);
    color: #fff;
    padding: 24px 28px;
    border-radius: 18px 18px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.book-modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 3px;
}
.book-modal-close {
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}
.book-modal-close:hover { background: rgba(255,255,255,.3); }

.book-modal-body { padding: 26px 28px; }

.book-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 16px;
}
.book-form-full { grid-column: 1 / -1; }

.book-form-group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.book-form-group label i { color: var(--primary); margin-right: 5px; }

.book-form-group input,
.book-form-group select,
.book-form-group textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .88rem;
    font-family: inherit;
    color: var(--text-dark);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    resize: vertical;
}
.book-form-group input:focus,
.book-form-group select:focus,
.book-form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184,115,51,.12);
}

.book-form-error {
    display: none;
    background: #fef2f2;
    color: #dc2626;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 14px;
    font-size: .85rem;
    border-left: 3px solid #dc2626;
}

.book-submit-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: .3px;
    transition: opacity .2s, transform .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.book-submit-btn:hover:not(:disabled) { opacity: .88; transform: translateY(-1px); }
.book-submit-btn:disabled { opacity: .6; cursor: not-allowed; }

/* Book Now button on hotel card */
.book-now-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.book-now-card-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

@media (max-width: 580px) {
    .book-form-grid { grid-template-columns: 1fr; }
    .book-modal-body { padding: 20px 18px; }
    .book-modal-header { padding: 20px 18px; }
}
