/* ============================================================
   MASTER STYLESHEET — Cleaned & Deduplicated
   ============================================================ */

/* --- 1. Global Reset & Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --header-bg: rgba(0, 0, 0, 0);
    --header-text: #ffffff;
}

body {
    background-color: var(--bg);
    color: var(--c);
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
}

p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}
.mobile-nav .nav-menu {
    display: none;
    flex-direction: column;
    background: #000;
    padding: 20px;
    right: 0; /* fixed position hata ke normal flow mein */
    position: static;
    width: 100%;
    height: auto;
}

.mobile-nav .nav-menu.active {
    display: flex;
}
/* --- 2. Utility / Reusable Classes --- */
.box-archive {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 16px;
    color: #ffffff;
}

.card-body {
    background-color: var(--bg);
    color: var(--c);
}

.card-body h4 a {
    color: var(--h);
}

.card-header {
    background: var(--h);
}

.price-box {
    color: var(--h);
}

.whatsapp-button {
    font-size: 18px;
    width: 100%;
}

.breadcrumb-item a {
    color: var(--h);
    text-decoration: none;
}

.box-price-bg {
    background-color: var(--h);
}

.box-button {
    text-align: center;
}

.box-button a {
    background-color: var(--h);
    color: var(--bg);
}

/* --- 3. Topbar Slider --- */
.header-top {
    background: var(--h);
    color: var(--bg);
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.5s ease;
}

/* --- 4. Site Header (Fixed / Transparent → Scrolled) --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--header-bg);
    padding: 25px 0;
    border-bottom: 1px solid var(--h);
}

.site-header.scrolled {
    background: #000000;
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* --- 5. Header Layout --- */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.single-room .site-header{
        position: relative !important;
}
.post-type-archive-room .site-header {
    position: relative !important;
}
/* --- 6. Logo --- */
.header-logo img {
    max-height: 70px;
    width: auto;
    transition: 0.4s;
}

.site-header.scrolled .header-logo img {
    max-height: 50px;
}
/* Default — Sab pages pe solid */
.site-header {
    background: #000;
    padding: 15px 0;
}

/* Sirf Homepage pe transparent */
.site-header.transparent-header {
    background: transparent;
    padding: 25px 0;
}

.site-header.solid-header {
    background: #000;
    padding: 15px 0;
}

/* Scroll hone pe dono cases mein solid */
.site-header.scrolled {
    background: #000 !important;
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
/* Light / Dark Logo Switching */
.logo-light { display: block !important; }
.logo-dark  { display: none !important; }

[data-theme="dark"] .logo-light { display: none !important; }
[data-theme="dark"] .logo-dark  { display: block !important; }

.logo-text {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--h);
}

.logo-text span {
    font-weight: bold;
}

/* --- 7. Social Icons --- */
.header-social a {
    color: var(--h);
    margin-right: 15px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.header-social a:hover {
    opacity: 0.6;
    transform: translateY(-2px);
}

/* --- 8. Header Actions --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Dark / Light Toggle Button */
.action-btn {
    background: none;
    border: 1px solid var(--h);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    cursor: pointer;
    color: var(--h);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-btn:hover {
    transform: rotate(15deg) scale(1.1);
}

/* Toggle Icons — Light Mode default */
.action-btn .sun-icon  { display: none !important; }
.action-btn .moon-icon { display: flex !important; }

[data-theme="dark"] .action-btn .moon-icon { display: none !important; }
[data-theme="dark"] .action-btn .sun-icon  { display: flex !important; }

/* Book Now Button */
.book-now-btn {
    background: #F9AB30;
    color: #fff;
    padding: 10px 28px;
    border: 1px solid #ffffff50;
    border-radius: 10px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.book-now-btn small {
    font-size: 10px;
    opacity: 0.8;
}

.book-now-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* --- 9. Navigation Menu --- */
.main-navigation {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0;
    transition: 0.5s ease;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-family: 'Orbitron', sans-serif;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
    opacity: 0.9;
}

/* Dropdown */
.nav-menu li {
    position: relative;
    padding: 10px 0;
}

.nav-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    min-width: 220px;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-top: 2px solid var(--gold);
    z-index: 99;
}

.nav-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.nav-menu li ul li {
    padding: 0;
    width: 100%;
}

.nav-menu li ul li a {
    padding: 10px 25px;
    display: block;
    margin: 0;
    font-size: 12px;
    color: #ccc;
    text-transform: none;
}

.nav-menu li ul li a:hover {
    background: #1a1a1a;
    color: #fff;
}

/* --- 10. Mobile / Hamburger --- */
.menu-toggle,
.hamburger {
    cursor: pointer;
    display: none;
    background: none;
    border: none;
    color: var(--h);
    font-size: 24px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: 0.4s;
}

@media (max-width: 991px) {
    .header-social { display: none; }
    .menu-toggle,
    .hamburger { display: block; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: #000;
        flex-direction: column;
        justify-content: center;
        gap: 0;
        padding-left: 40px;
        transition: 0.5s;
        z-index: 100;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-bottom: 2px solid var(--h);
    }

    .nav-menu.active { right: 0; }

    .nav-menu li {
        width: 100%;
        margin: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu a {
        padding: 18px;
        display: block;
        text-align: center;
    }

    .nav-menu li ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        padding-left: 20px;
        border: none;
        box-shadow: none;
        width: 100%;
    }

    .main-navigation.d-none { display: none !important; }
}

/* --- 11. Booking Box (es-booking) --- */
.es-booking-box {
    background: rgba(0, 0, 0, 0.85);
    padding: 30px;
    max-width: 350px;
    border-left: 5px solid #DE8904;
    color: #fff;
    border-radius: 4px;
}

.es-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.es-field {
    margin-bottom: 20px;
}

.es-field label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.es-input-group input {
    width: 100%;
    background: transparent;
    border: 1px solid #ffffff50;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    outline: none;
}

.es-input-group input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.es-btn-submit {
    background: #DE8904;
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.es-btn-submit:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

/* --- 12. Single Room Styles --- */
.room-slider-main-container {
    height: 480px;
}

.roomGallerySwiper {
    width: 100%;
    height: 100%;
}

.roomGallerySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.roomGallerySwiper .swiper-button-next,
.roomGallerySwiper .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.roomGallerySwiper .swiper-button-next:after,
.roomGallerySwiper .swiper-button-prev:after {
    font-size: 18px;
}

/* Thumbs */
.roomThumbsSwiper {
    height: 85px;
    padding: 5px 0;
}

.roomThumbsSwiper .swiper-slide {
    opacity: 0.4;
    cursor: pointer;
    transition: 0.3s;
}

.roomThumbsSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.roomThumbsSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 6px;
}

.roomThumbsSwiper .swiper-slide-thumb-active img {
    border-color: var(--h);
}

/* Booked Badge */
.booked-tag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: rgba(220, 53, 69, 0.95);
    color: white;
    padding: 12px 35px;
    font-size: 22px;
    font-weight: 900;
    border: 3px solid #fff;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.booked-img {
    filter: grayscale(1) contrast(0.8) blur(1px);
}

.booking-sidebar {
    top: 110px;
}

.room-main-content p {
    margin-bottom: 20px;
}

.single-room-section .breadcrumb li.breadcrumb-item.active {
    color: #fff !important;
}

.room-content-area h3,
.room-content-area p {
    color: #fff;
}

/* --- 13. Day Box & Package Cards --- */
.day-box {
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent !important;
}

.day-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 4px solid var(--h) !important;
}

.day-number {
    font-family: 'Orbitron', sans-serif;
}

.pkg-card img {
    height: 250px;
    object-fit: cover;
}

/* --- 14. Footer --- */
.site-footer {
    background: var(--bg);
    padding: 50px 0 0;
    border-top: 1px solid var(--h);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 40px;
}

.widget-title {
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--h);
}

.f-desc { margin: 20px 0; font-size: 14px; opacity: 0.8; }

.f-contact-info p { font-size: 14px; margin-bottom: 10px; }
.f-contact-info i { color: var(--h); margin-right: 10px; }

.f-product-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.f-item-img img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 5px;
}

.f-item-info a {
    display: block;
    text-decoration: none;
    color: var(--h);
    font-size: 14px;
    font-weight: 600;
}

.f-price { font-size: 13px; color: var(--h); opacity: 0.7; }

.map-container iframe {
    width: 100% !important;
    height: 150px !important;
    border: 0;
    border-radius: 8px;
}

.footer-bottom {
    background: var(--h);
    color: var(--bg);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 991px) {
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .footer-container { grid-template-columns: 1fr; }
}
/* Mobile Nav Container */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0a0a0a;
    border-top: 2px solid var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

/* Menu Items */
.mobile-nav .nav-menu {
    display: flex !important;
    flex-direction: column;
    position: static !important;
    width: 100% !important;
    height: auto !important;
    right: auto !important;
    background: transparent !important;
    padding: 10px 0 !important;
    gap: 0 !important;
}

.mobile-nav .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 0 !important;
    margin: 0 !important;
}

.mobile-nav .nav-menu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 25px !important;
    font-size: 13px !important;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav .nav-menu > li > a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--gold) !important;
}

/* Dropdown Arrow */
.mobile-nav .nav-menu li.menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    transition: transform 0.3s ease;
    color: var(--gold);
}

.mobile-nav .nav-menu li.menu-item-has-children.open > a::after {
    transform: rotate(180deg);
}

/* Sub Menu */
.mobile-nav .nav-menu li ul {
    display: none;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: rgba(255,255,255,0.04) !important;
    border: none !important;
    box-shadow: none !important;
    padding: 5px 0 !important;
    width: 100% !important;
}

.mobile-nav .nav-menu li.open > ul {
    display: block;
}
.footer-logo .custom-logo-link img {
    width: 120px;
    height: auto;
}
.mobile-nav .nav-menu li ul li {
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mobile-nav .nav-menu li ul li a {
    padding: 11px 25px 11px 40px !important;
    font-size: 12px !important;
    color: #aaa !important;
    text-transform: none !important;
    letter-spacing: 0.5px;
}

.mobile-nav .nav-menu li ul li a:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.05);
}
/* Footer Dark Background */
.site-footer {
    background: #0a0a0a;
    color: #ccc;
}

.widget-title {
    color: #ffffff;
}

.f-desc {
    color: #aaa;
}

.f-contact-info p {
    color: #aaa;
}

.f-item-info a {
    color: #ffffff;
}

.f-item-info a:hover {
    color: var(--gold);
}

.f-price {
    color: var(--gold);
}

.footer-bottom {
    background: #000;
    color: #aaa;
}
.ti-reviews-container .ti-footer-filter-text{
    display: none;
}
.booking-sidebar .card-header{
    background-color: #F9AB30;
}
.price-box .rate{
    color: #F9AB30;
    font-size: 24px;
}
.booking-sidebar .box-archive{
    background-color: #000;
}

/* Container Layout */
.fivestar-form-custom {
    padding: 20px !important;
}

/* Label Styling - Ismein font-family aur color ka maza hai */
.fivestar-form-custom label {
    display: block;
    color: #f9ab30; /* Orange/Gold Color */
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px; /* Spacing between fields */
}

/* Input & Textarea Styling - Line wala design */
.fivestar-form-custom input[type="text"],
.fivestar-form-custom input[type="email"],
.fivestar-form-custom textarea {
    display: block;
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-bottom: 1.5px solid #f9ab30 !important; /* The Underline */
    color: #ffffff !important;
    padding: 10px 0 5px 0 !important;
    font-family: 'Poppins', sans-serif;
    outline: none !important;
    margin-top: 5px; /* Space between label text and line */
}

/* Submit Button - Exact Match with Image */
.fivestar-form-custom .submit-btn-wrap input[type="submit"] {
    width: 100%;
    background-color: #f9ab30 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 14px !important;
    border-radius: 12px !important; /* Rounded corners */
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;
}
.card-body .box-button{
    background-color: #f9ab30 !important;
    border: none;
    color: white;
    border-radius: 10px;

}
.fivestar-form-custom .submit-btn-wrap input[type="submit"]:hover {
    background-color: #e09620 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 171, 48, 0.3);
}

/* CF7 Spinner & Validation Fix */
.wpcf7-spinner { display: none; }
.wpcf7-not-valid-tip {
    color: #ff4d4d;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
}
.footer-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-links li {
    margin-bottom: 12px;
}

.footer-menu-links li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
    display: inline-block;
}

.footer-menu-links li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-widget .widget-title {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.rooms-archive-section .room-card .card-body {
    background-color: #1b1b1b;
}
.rooms-archive-section .room-card .card-body p,
.rooms-archive-section .room-card .card-body h4 a{
    color: #fff;
}