/* ==========================================================================
   The Royal Sam Desert Camp - Jaisalmer CSS
   Theme Colors:
   - Charcoal Black: #111111, #1C1917, #0F0F0F
   - Royal Gold: #C5A059, #D4AF37, #B8860B
   - Desert Orange: #E06D27, #D97706
   - Sand Beige: #FDFBF7, #F5EBE0
   - Warm Brown: #8B5E3C, #3E2723
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --color-black: #111111;
    --color-charcoal: #1c1917;
    --color-gold: #C5A059;
    --color-gold-light: #e2c17c;
    --color-gold-dark: #9e7a33;
    --color-orange: #E06D27;
    --color-sand: #FDFBF7;
    --color-brown: #8B5E3C;
    --color-text-dark: #2D2D2D;
    --color-text-muted: #666666;
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Poppins', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 35px rgba(197, 160, 89, 0.25);
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .heading-font {
    font-family: var(--font-heading);
    color: var(--color-black);
    font-weight: 700;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-gold);
}

.text-gold {
    color: #C5A059 !important;
}

/* Section Header Styling */
.section-subtitle {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-black);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-orange), var(--color-gold));
    border-radius: 2px;
}

.text-start .section-title::after {
    left: 35px;
}

/* Royal Buttons */
.btn-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #111111;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #E06D27 0%, #D4AF37 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 109, 39, 0.5);
}

/* Gallery & Restaurant Section Styling */
.gallery-card-img, .restaurant-card-img {
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.gallery-card-img:hover, .restaurant-card-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

.btn-outline-gold {
    background-color: #FFFFFF !important;
    border: 1px solid var(--color-gold) !important;
    color: var(--color-gold) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 24px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    display: inline-block;
    text-transform: uppercase;
}

.btn-outline-gold:hover {
    background-color: var(--color-gold) !important;
    color: #FFFFFF !important;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 4px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: #FFFFFF;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-header {
    background-color: #0b0a09;
    color: #e0e0e0;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.top-header a {
    color: #d1d1d1;
}

.top-header a:hover {
    color: var(--color-gold);
}

.main-navbar {
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
    transition: var(--transition-smooth);
}

.main-navbar.sticky-top {
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.navbar-brand img {
    max-height: 80px;
    transition: var(--transition-smooth);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: #E5E5E5 !important;
    padding: 8px 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-menu {
    background-color: #1c1917;
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 6px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    padding: 15px 0;
}

.mega-dropdown-menu {
    width: 820px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-top: 10px !important;
    padding: 22px 25px !important;
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .mega-dropdown-menu {
        display: block;
        animation: fadeInDown 0.25s ease forwards;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%, -10px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.mega-dropdown-header {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.mega-dropdown-item {
    color: #D5D5D5;
    font-size: 0.86rem;
    padding: 5px 0;
    display: block;
    transition: var(--transition-smooth);
}

.mega-dropdown-item:hover {
    color: var(--color-gold);
    padding-left: 6px;
}

.dropdown-item {
    color: #D1D1D1;
    font-size: 0.88rem;
    padding: 8px 20px;
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background-color: rgba(197, 160, 89, 0.15);
    color: var(--color-gold);
}

/* Off-canvas mobile menu */
.offcanvas {
    background-color: #111111;
    color: #FFFFFF;
}

.offcanvas .btn-close {
    filter: invert(1);
}

/* ==========================================================================
   Hero Slider & Right Availability Card
   ========================================================================== */
.hero-slider-section {
    position: relative;
    background-color: #0b0a09;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0 90px 0;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(11,10,9,0.85) 0%, rgba(11,10,9,0.45) 50%, rgba(11,10,9,0.75) 100%);
    z-index: 1;
}

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

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-highlight {
    color: var(--color-gold);
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #E2C17C;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-booking-card {
    position: relative;
    z-index: 3;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 28px 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-top: 4px solid var(--color-gold);
}

.hero-booking-card h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    color: var(--color-black);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-booking-card label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #555555;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.hero-booking-card .form-control,
.hero-booking-card .form-select {
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 0.9rem;
}

.hero-booking-card .form-control:focus,
.hero-booking-card .form-select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 0.2rem rgba(197, 160, 89, 0.25);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-section {
    background-color: var(--color-sand);
    padding: 60px 0;
    border-bottom: 1px solid #EAE2D6;
}

.why-card {
    background: #FFFFFF;
    padding: 25px 18px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #F0E8DC;
    transition: var(--transition-smooth);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-gold);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.12);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    background: var(--color-gold);
    color: #FFFFFF;
}

.why-card h5 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   Package Cards
   ========================================================================== */
.packages-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.package-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid #EAEAEA;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-gold);
}

.package-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.package-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-img-wrap img {
    transform: scale(1.08);
}

.badge-duration {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(17, 17, 17, 0.85);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--color-gold);
}

.badge-bestseller {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-orange);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.package-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.package-price {
    margin-bottom: 15px;
}

.price-original {
    text-decoration: line-through;
    color: #999999;
    font-size: 0.9rem;
    margin-right: 8px;
}

.price-offer {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-orange);
}

.price-unit {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.package-inclusions-preview {
    font-size: 0.85rem;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.package-inclusions-preview li {
    margin-bottom: 4px;
    list-style: none;
    position: relative;
    padding-left: 18px;
}

.package-inclusions-preview li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

/* ==========================================================================
   Experiences Section
   ========================================================================== */
.experiences-section {
    background-color: var(--color-sand);
    padding: 80px 0;
}

.experience-card {
    background: #FFFFFF;
    padding: 25px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
    border: 1px solid #EAE2D6;
}

.experience-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-hover);
}

.experience-icon {
    font-size: 2.2rem;
    color: var(--color-gold-dark);
    margin-bottom: 15px;
}

.experience-card h5 {
    font-size: 1rem;
    margin-bottom: 6px;
}

/* ==========================================================================
   Tents Section
   ========================================================================== */
.tents-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.tent-card {
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #E8E8E8;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.tent-features-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px 0;
}

.tent-features-list li {
    font-size: 0.9rem;
    color: #444444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tent-features-list li i {
    color: var(--color-gold);
    width: 20px;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
/* ================= GUESTS LOVE US REVIEW SECTION (WHITE THEME) ================= */
.reviews-section {
    background-color: #FAF9F6;
    padding: 60px 0;
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
}

.google-badge-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.google-badge-card .rating-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111111;
    line-height: 1;
    margin: 10px 0;
}

.review-card {
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.review-stars i {
    color: #FFB400;
    font-size: 0.85rem;
}

.review-avatar-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.review-avatar-initial {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: #FFFFFF;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Swiper Navigation Custom Arrows */
.swiper-review-prev, .swiper-review-next {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

.swiper-review-prev:hover, .swiper-review-next:hover {
    background-color: var(--color-gold);
    color: #FFFFFF;
}

/* ==========================================================================
   Attractions, Blogs, FAQ, Quick Inquiry
   ========================================================================== */
.bottom-widgets-section {
    background-color: var(--color-sand);
    padding: 80px 0;
}

.attraction-mini-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    background: #FFFFFF;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #EFE8DD;
}

.attraction-mini-item img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 4px;
}

.blog-mini-item {
    margin-bottom: 15px;
    background: #FFFFFF;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #EFE8DD;
    padding: 10px;
    display: flex;
    gap: 12px;
}

.blog-mini-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.accordion-button:not(.collapsed) {
    color: var(--color-gold-dark);
    background-color: rgba(197, 160, 89, 0.1);
}

.quick-inquiry-box {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border-top: 4px solid var(--color-gold);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-section {
    background-color: #0f0e0d;
    color: #B0B0B0;
    padding: 60px 0 0 0;
    font-size: 0.875rem;
    border-top: 2px solid var(--color-gold);
}

/* Footer heading — gold, uppercase, underline */
.footer-heading {
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 35px; height: 2px;
    background: var(--color-gold);
}

/* Legacy h5 heading in footer (fallback) */
.footer-section h5 {
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}
.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 35px; height: 2px;
    background: var(--color-gold);
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 9px;
}
.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    font-size: 0.875rem;
}
.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

/* Social Icons — brand colors */
.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    color: #fff;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    flex-shrink: 0;
}
.footer-social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.9;
    color: #fff;
}
/* Instagram gradient */
.footer-social-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: #aaa;
    font-size: 0.875rem;
    line-height: 1.5;
}
.footer-contact-icon {
    color: var(--color-gold);
    min-width: 18px;
    margin-top: 2px;
    font-size: 0.9rem;
}
.footer-contact-list a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact-list a:hover {
    color: var(--color-gold);
}

/* Google Review Box */
.footer-google-review-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 16px;
}
.footer-google-rating {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.footer-google-stars {
    color: #FBBC05;
    font-size: 0.95rem;
    display: flex;
    gap: 2px;
}
.footer-google-link {
    color: #aaa;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}
.footer-google-link:hover { color: #ddd; }
.footer-google-logo {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0;
}

/* Copyright Bottom Bar */
.footer-bottom {
    background-color: #070706;
    padding: 16px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 0.82rem;
}
.footer-policy-link {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
.footer-policy-link:hover { color: var(--color-gold); }

/* Sticky Floating CTAs on Right Edge (All Pages) */
.sticky-float-wrap {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.float-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    padding: 10px 4px;
    border-radius: 12px 0 0 12px;
    color: #FFFFFF !important;
    font-weight: 500;
    font-size: 0.7rem;
    box-shadow: -3px 4px 15px rgba(0,0,0,0.3);
    text-decoration: none !important;
    transition: var(--transition-smooth);
    text-align: center;
    line-height: 1.2;
}

.float-btn i {
    font-size: 1.35rem;
    margin-bottom: 3px;
}

.float-btn-whatsapp {
    background-color: #25D366;
}

.float-btn-call {
    background-color: #161616;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-left: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.float-btn:hover {
    transform: translateX(-4px);
}

.float-book-now-tab {
    position: fixed;
    left: 0;
    top: 40%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    background-color: var(--color-gold);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 16px 8px;
    border-radius: 8px 0 0 8px;
    z-index: 9999;
    text-decoration: none !important;
    letter-spacing: 1.5px;
    box-shadow: 2px 4px 15px rgba(0,0,0,0.25);
    transition: var(--transition-smooth);
}

.float-book-now-tab:hover {
    background-color: var(--color-orange);
    color: #FFFFFF !important;
}

/* Lightbox Modal */
.lightbox-modal img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

/* ==========================================================================
   Bottom 4-Column Information Grid Section
   ========================================================================== */
.bottom-widgets-section {
    background-color: #FAF8F5;
    padding: 50px 0;
    border-top: 1px solid #EFEAE3;
}

.widget-column-card {
    background-color: #FFFFFF;
    border: 1px solid #EAE5DE;
    border-radius: 8px;
    padding: 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.widget-column-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.widget-column-card-inquiry {
    background-color: #FAF6F0;
    border: 1px solid #EAE5DE;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center;
    margin-bottom: 20px;
}

.widget-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #F5F1EB;
}

.widget-item-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget-thumb {
    width: 65px;
    height: 42px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.widget-thumb-blog {
    width: 70px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.widget-item-title {
    font-size: 0.84rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 2px;
    line-height: 1.3;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.widget-item-title:hover {
    color: var(--color-gold);
}

.widget-item-meta {
    font-size: 0.75rem;
    color: #888888;
}

/* Accordion in Col 3 */
.faq-accordion-custom .accordion-item {
    border: 1px solid #EAE5DE;
    border-radius: 6px !important;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-accordion-custom .accordion-button {
    font-size: 0.82rem;
    font-weight: 500;
    color: #333333;
    background-color: #FFFFFF;
    padding: 10px 14px;
    box-shadow: none !important;
}

.faq-accordion-custom .accordion-button:not(.collapsed) {
    color: #111111;
    background-color: #FAF8F5;
    font-weight: 600;
}

.faq-accordion-custom .accordion-button::after {
    content: '+';
    background-image: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: #666666;
    width: auto;
    height: auto;
    transform: none !important;
    transition: transform 0.2s ease;
}

.faq-accordion-custom .accordion-button:not(.collapsed)::after {
    content: '−';
    color: var(--color-gold);
}

.faq-accordion-custom .accordion-body {
    font-size: 0.78rem;
    color: #666666;
    background-color: #FFFFFF;
    padding: 10px 14px;
    line-height: 1.5;
}

/* Outline Gold Button for Columns 1, 2, 3 */
.btn-outline-gold {
    border: 1.5px solid #C5A059;
    color: #C5A059;
    background-color: transparent;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    padding: 6px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    background-color: #C5A059;
    color: #FFFFFF;
    border-color: #C5A059;
}

/* Quick Inquiry Form Controls */
.quick-inquiry-input {
    border: 1px solid #E5E0D8;
    border-radius: 4px;
    font-size: 0.8rem;
    padding: 8px 12px;
    color: #333333;
    background-color: #FFFFFF !important;
}

.quick-inquiry-input:focus {
    border-color: #C5A059;
    box-shadow: 0 0 0 0.2rem rgba(197, 160, 89, 0.15);
}

.quick-inquiry-submit-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    padding: 10px 16px;
    width: 100%;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.quick-inquiry-submit-btn:hover {
    background: linear-gradient(135deg, #C5A059 0%, #B8860B 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

/* Royal Gold Tab Navigation & Input Autofill Styling (Replaces default Bootstrap blue) */
.nav-pills .nav-link {
    color: #666666 !important;
    font-weight: 600 !important;
    background-color: #f4f4f0 !important;
    border: 1px solid rgba(197, 160, 89, 0.2) !important;
    transition: all 0.3s ease !important;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%) !important;
    color: #111111 !important;
    border-color: #C5A059 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: #C5A059 !important;
    box-shadow: 0 0 0 0.25rem rgba(197, 160, 89, 0.25) !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #111111 !important;
    -webkit-box-shadow: 0 0 0px 1000px #fdfbf7 inset !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

/* OTP Separate Input Boxes Styling */
.otp-single-digit {
    width: 46px !important;
    height: 54px !important;
    border-radius: 8px !important;
    border: 2px solid rgba(197, 160, 89, 0.4) !important;
    font-size: 1.5rem !important;
    color: #111111 !important;
    background-color: #fdfbf7 !important;
    transition: all 0.2s ease-in-out !important;
    padding: 0 !important;
}

.otp-single-digit:focus {
    border-color: #C5A059 !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 0.25rem rgba(197, 160, 89, 0.25) !important;
}

/* Responsive fixes for small mobile viewports (<576px) */
@media (max-width: 575.98px) {
    .otp-single-digit {
        width: 40px !important;
        height: 48px !important;
        font-size: 1.3rem !important;
    }
    .sticky-float-wrap {
        gap: 4px;
    }
    .float-btn {
        width: 54px;
        font-size: 0.65rem;
        padding: 8px 3px;
    }
}

/* Custom Camel Icon Support for FontAwesome */
.fa-camel, .fa-horse {
    display: inline-block;
    width: 1.1em;
    height: 1.1em;
    vertical-align: -0.15em;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M480 384c0 17.7-14.3 32-32 32H400v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V384h-32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H176v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H96c-17.7 0-32-14.3-32-32V288c0-35.3 28.7-64 64-64h17.9c12.7-32.9 44.6-56 82.1-56c12.2 0 23.9 2.5 34.6 7.1c8.4-18.4 23.3-33.1 42.4-40.9C304.7 114.7 304 94.7 304 80c0-44.2 35.8-80 80-80c17.7 0 32 14.3 32 32s-14.3 32-32 32c-8.8 0-16 7.2-16 16c0 23.5 10.1 44.7 26.3 59.5c19.7 18 31.7 43.8 31.7 72.5v16h16c26.5 0 48 21.5 48 48v108z'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M480 384c0 17.7-14.3 32-32 32H400v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V384h-32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H176v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H96c-17.7 0-32-14.3-32-32V288c0-35.3 28.7-64 64-64h17.9c12.7-32.9 44.6-56 82.1-56c12.2 0 23.9 2.5 34.6 7.1c8.4-18.4 23.3-33.1 42.4-40.9C304.7 114.7 304 94.7 304 80c0-44.2 35.8-80 80-80c17.7 0 32 14.3 32 32s-14.3 32-32 32c-8.8 0-16 7.2-16 16c0 23.5 10.1 44.7 26.3 59.5c19.7 18 31.7 43.8 31.7 72.5v16h16c26.5 0 48 21.5 48 48v108z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.fa-camel::before, .fa-horse::before {
    content: "" !important;
}

