/* ========================================
   Global Page Loader - REMOVED
   ======================================== */
/* Loader has been removed as per user request */
.page-loader {
    display: none !important;
}

/* ========================================
   Global Image Skeleton Loader
   ======================================== */
img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.image-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.image-loaded {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ========================================
   Global Responsive Text Styles
   ======================================== */
@media (max-width: 576px) {
    body {
        font-size: 0.875rem;
        /* 14px on mobile */
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    h5 {
        font-size: 1rem;
    }
}

@media (min-width: 577px) and (max-width: 991px) {
    body {
        font-size: 0.9375rem;
        /* 15px on tablet */
    }
}

@media (min-width: 992px) {
    body {
        font-size: 1rem;
        /* 16px on desktop */
    }
}

/* ========================================
   Desktop Navigation Hover Effects
   ======================================== */
@media (min-width: 1200px) {
    .navbar-nav .nav-item .nav-link:hover {
        color: #ff6b35 !important;
    }

    .navbar-nav .nav-item .nav-link:hover .nav-dot,
    .navbar-nav .nav-item .nav-link.active .nav-dot {
        opacity: 1 !important;
    }

    .navbar-nav .nav-item .nav-link.active {
        color: #ff6b35 !important;
    }

    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s ease;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-item:hover {
        background-color: #fff5f2;
        color: #ff6b35 !important;
    }
}

/* ========================================
   Body Padding for Fixed Navbar
   ======================================== */
body {
    /* padding-top: 70px; */
    overflow-x: hidden;
    overflow-y: auto;
}

/* ========================================
   Hide Bootstrap Default Dropdown Arrow
   ======================================== */
.dropdown-toggle::after {
    display: none !important;
}

/* ========================================
   Dropdown Styling - Rounded Modal Style
   ======================================== */
.dropdown-menu {
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.dropdown-item {
    transition: all 0.2s ease;
}

/* ========================================
   Book Button with Gradient Slide Effect
   ======================================== */
.book-btn {
    position: relative;
    /* background: rgb(255, 161, 0) ; Default state - Orange */
    overflow: hidden;
}

.book-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        89deg,
        rgb(255, 161, 0) 11.51%,
        rgb(247, 71, 15) 52.88%,
        rgb(238, 17, 98) 92.44%
    );
    transition: left 0.4s ease;
    z-index: 0;
}

.book-btn:hover::before,
.book-btn:active::before,
.book-btn:focus::before {
    left: 0;
}

.book-btn span {
    position: relative;
    z-index: 1;
}

.book-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 161, 0, 0.4) !important;
}

.book-btn:active {
    transform: translateY(0);
}

/* ========================================
   Mobile Responsive Adjustments
   ======================================== */
@media (min-width: 577px) and (max-width: 991px) {
    /* Tablet */
    body {
        padding-top: 60px;
    }

    .navbar {
        padding: 0.5rem 0 !important;
    }

    .navbar .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .navbar-brand span {
        font-size: 0.9rem !important;
    }

    .book-btn {
        min-width: 110px !important;
        height: 38px !important;
        font-size: 0.75rem !important;
        padding: 0.45rem 1rem !important;
    }

    /* Offcanvas menu for tablet */
    .offcanvas.offcanvas-start {
        width: 360px !important;
    }
}

@media (max-width: 576px) {
    /* Phone */
    body {
        padding-top: 58px;
    }

    .navbar {
        padding: 0.5rem 0 !important;
    }

    .navbar .container-fluid {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .navbar-brand span {
        font-size: 0.85rem !important;
    }

    .book-btn {
        min-width: 100px !important;
        height: 36px !important;
        font-size: 0.7rem !important;
        padding: 0.4rem 0.85rem !important;
    }
}

@media (max-width: 991px) {
    /* Mobile Active Link Styles */
    .mobile-active {
        color: #ff6b35 !important;
    }
}

/* ========================================
   Hero Section with Slider
   ======================================== */
.hero-slider-section {
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    position: relative;
}

.hero-slider-section video {
    z-index: 1 !important;
}

.hero-video-background {
    display: none;
    width: 100%;
    height: 100%;
}

.hero-video-background.active {
    display: block !important;
}

.hero-video {
    opacity: 0.5;
    /* Lower video opacity for text visibility */
}

.hero-video-overlay {
    z-index: 2 !important;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

#heroCarousel {
    height: 100%;
}

#heroVideoText,
#heroVideoText .carousel-inner,
#heroVideoText .carousel-item,
#heroVideoText .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    bottom: auto;
    /* IMPORTANT */
    z-index: 5;
}

/* optional visibility safety */

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.hero-slide-img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/* Hide images on mobile/tablet/iPad (below XL breakpoint - 1200px) */
@media (max-width: 1199px) {
    .hero-slide-img {
        display: none !important;
    }
}

/* Show images only on desktop (XL breakpoint and above - 1200px+) */
@media (min-width: 1200px) {
    .hero-slide-img {
        display: block !important;
    }
}

.carousel-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.622) 0%,
        rgba(0, 0, 0, 0.637) 100%
    );
    z-index: 2;
}

.carousel-caption {
    z-index: 3 !important;
    max-width: 100% !important;
    text-align: center !important;
    padding: 2rem !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    bottom: auto !important;
    top: 50% !important;
}

.carousel-caption .hero-subtitle,
.carousel-caption .hero-title,
.carousel-caption .hero-tagline {
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.carousel-caption .hero-title {
    text-align: center !important;
}

.hero-subtitle {
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
}

.hero-title {
    font-size: 1.2rem !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
}

.hero-tagline {
    font-size: 2rem !important;
    color: #ffffff !important;
    font-weight: 700 !important;
}

.hero-buttons {
    margin-top: 2rem;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1rem;
}

.btn-hero-primary {
    background: rgb(255, 161, 0);
    color: #ffffff;
    border: none;
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hero-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        89deg,
        rgb(255, 161, 0) 11.51%,
        rgb(247, 71, 15) 52.88%,
        rgb(238, 17, 98) 92.44%
    );
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-hero-primary span,
.btn-hero-primary {
    position: relative;
    z-index: 2;
}

.btn-hero-primary:hover::before {
    left: 0;
}

.btn-hero-primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 161, 0, 0.4);
}

.btn-hero-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgb(255, 161, 0);
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hero-outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        89deg,
        rgb(255, 161, 0) 11.51%,
        rgb(247, 71, 15) 52.88%,
        rgb(238, 17, 98) 92.44%
    );
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-hero-outline span,
.btn-hero-outline {
    position: relative;
    z-index: 2;
}

.btn-hero-outline:hover::before {
    left: 0;
}

.btn-hero-outline:hover {
    background: rgb(255, 161, 0);
    color: #ffffff;
    border-color: rgb(255, 161, 0);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.carousel-indicators button {
    width: 10px !important;
    height: 4px !important;
    border-radius: 2px !important;
    background: #ffffff !important;
    border: none !important;
    margin: 0 3px !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
}

.carousel-indicators button.active {
    background: rgb(255, 161, 0) !important;
    width: 25px !important;
    height: 4px !important;
    border-radius: 2px !important;
}

.hero-slide-video {
    opacity: 1;
    height: 100%;
    object-fit: cover;
}

/* Show video on mobile/tablet/iPad (below XL breakpoint - 1200px) */
@media (max-width: 1199px) {
    .hero-slide-video {
        display: block !important;
    }
}

/* Hide video on desktop (XL breakpoint and above - 1200px+) */
@media (min-width: 1200px) {
    .hero-slide-video {
        display: none !important;
    }
}

.hero-buttons {
    flex-wrap: nowrap;
    justify-content: center;
}

/* Hero Responsive */
@media (max-width: 1199px) {
    /* Tablet and below - reduced height */
    .hero-slider-section {
        min-height: 70vh !important;
        height: 70vh !important;
        max-height: 70vh !important;
    }

    .hero-title {
        font-size: 1rem !important;
    }

    .hero-tagline {
        font-size: 1.6rem !important;
    }
}

/* iPad and Tablet Portrait (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    /* iPad Portrait / Tablet - optimized sizes */
    .hero-slider-section {
        min-height: 65vh !important;
        height: 65vh !important;
        max-height: 65vh !important;
    }

    .hero-title {
        font-size: 1.2rem !important;
    }

    .hero-tagline {
        font-size: 2.08rem !important;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        letter-spacing: 1.5px !important;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 0.75rem 1.8rem !important;
        font-size: 0.95rem !important;
    }

    .hero-buttons {
        flex-wrap: nowrap !important;
        gap: 0.8rem !important;
        width: 100% !important;
        max-width: 350px !important;
        justify-content: center !important;
    }

    .carousel-caption {
        padding: 1.5rem !important;
    }

    .carousel-indicators {
        bottom: 28px !important;
    }

    .carousel-indicators button {
        width: 9px !important;
        height: 3px !important;
        margin: 0 2.5px !important;
    }

    .carousel-indicators button.active {
        width: 23px !important;
        height: 3px !important;
    }
}

@media (max-width: 767px) {
    /* Phone - reduced height */
    .hero-slider-section {
        min-height: 60vh !important;
        height: 60vh !important;
        max-height: 60vh !important;
    }

    .hero-title {
        font-size: 1rem !important;
    }

    .hero-tagline {
        font-size: 0.95rem !important;
    }

    .hero-subtitle {
        font-size: 0.8rem !important;
        letter-spacing: 1px !important;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 0.65rem 1.4rem !important;
        font-size: 0.85rem !important;
    }

    .hero-buttons {
        flex-wrap: nowrap !important;
        gap: 0.7rem !important;
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
    }

    .carousel-caption {
        padding: 1rem !important;
    }

    .carousel-indicators {
        bottom: 25px !important;
    }

    .carousel-indicators button {
        width: 8px !important;
        height: 3px !important;
        margin: 0 2px !important;
    }

    .carousel-indicators button.active {
        width: 20px !important;
        height: 3px !important;
    }
}

@media (max-width: 991px) {
    /* Tablet - reduced sizes */
    .hero-title {
        font-size: 1rem !important;
    }

    .hero-tagline {
        font-size: 1.6rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 0.7rem 1.6rem !important;
        font-size: 0.92rem !important;
    }

    .carousel-indicators {
        bottom: 30px !important;
    }

    .carousel-indicators button {
        width: 9px !important;
        height: 3px !important;
        margin: 0 2.5px !important;
    }

    .carousel-indicators button.active {
        width: 22px !important;
        height: 3px !important;
    }
}

@media (max-width: 576px) {
    /* Small Phone - smallest sizes */
    .hero-slider-section {
        min-height: 55vh !important;
        height: 55vh !important;
        max-height: 55vh !important;
    }

    .hero-title {
        font-size: 0.5rem !important;
    }

    .hero-tagline {
        font-size: 0.85rem !important;
    }

    .hero-subtitle {
        font-size: 0.75rem !important;
        letter-spacing: 0.5px !important;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.8rem !important;
    }

    .hero-buttons {
        gap: 0.6rem !important;
        max-width: 260px;
    }

    .carousel-caption {
        padding: 0.8rem;
    }

    .carousel-indicators {
        bottom: 20px !important;
    }

    .carousel-indicators button {
        width: 7px !important;
        height: 2.5px !important;
        margin: 0 2px !important;
    }

    .carousel-indicators button.active {
        width: 18px !important;
        height: 2.5px !important;
    }
}

/* ========================================
   Offers Section (Blog Carousel)
   ======================================== */
.offers-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 161, 0, 0.08) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(247, 71, 15, 0.08) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(238, 17, 98, 0.05) 0%,
            transparent 50%
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(255, 161, 0, 0.04) 40px,
            rgba(255, 161, 0, 0.04) 80px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(247, 71, 15, 0.03) 40px,
            rgba(247, 71, 15, 0.03) 80px
        );
    pointer-events: none;
    z-index: 0;
}

.offers-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 161, 0, 0.02) 50%,
            transparent 100%
        ),
        linear-gradient(
            0deg,
            transparent 0%,
            rgba(247, 71, 15, 0.02) 50%,
            transparent 100%
        );
    pointer-events: none;
    z-index: 0;
}

.offers-section .container,
.offers-section .container-fluid {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

.offers-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    word-break: keep-all;
}

.offers-nav-arrows {
    position: relative;
}

.btn-offer-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgb(255, 161, 0);
    background: transparent;
    color: rgb(255, 161, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.btn-offer-nav:hover {
    background: rgb(255, 161, 0);
    color: #ffffff;
    transform: scale(1.1);
}

#offersCarousel {
    position: relative;
}

#offersCarousel .carousel-inner {
    overflow: visible;
}

#offersCarousel .carousel-item {
    padding: 0;
}

#offersCarousel .row {
    margin: 0 -8px;
}

#offersCarousel .row > [class*="col-"] {
    padding: 0 8px;
}

.offer-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 16px;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.offer-badge {
    top: 12px;
    right: 12px;
    background: rgb(255, 161, 0);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.offer-badge[style*="background: #fff"] {
    background: #ffffff !important;
    color: #333 !important;
    border: 1px solid #ddd;
}

.offer-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-image {
    transform: scale(1.05);
}

.offer-content {
    padding: 1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.offer-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    flex: 1;
}

.offer-buttons {
    margin-top: auto;
    align-items: center;
    justify-content: center;
}

.btn-offer-link {
    color: rgb(255, 161, 0);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-offer-link:hover {
    color: rgb(247, 71, 15);
    text-decoration: underline;
}

.offers-indicators {
    position: static !important;
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
    bottom: auto !important;
    justify-content: center;
    background: transparent;
    padding: 0;
}

.offers-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    margin: 0 5px;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
}

.offers-indicators button:hover {
    background: rgb(255, 161, 0);
    opacity: 0.7;
    transform: scale(1.2);
}

.offers-indicators button.active {
    background: rgb(255, 161, 0);
    width: 30px;
    border-radius: 5px;
    opacity: 1;
    transform: scale(1);
}

.offers-indicators button.active:hover {
    opacity: 1;
    transform: scale(1.05);
}

.offer-view-more {
    color: rgb(255, 161, 0);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.offer-view-more:hover {
    color: rgb(247, 71, 15);
    text-decoration: underline;
}

/* Responsive Offers Section */
@media (min-width: 768px) and (max-width: 1199px) {
    /* Tablet/iPad - 3 cards only */
    .offers-title {
        font-size: 2.2rem;
        white-space: nowrap;
    }

    .offer-image-container {
        height: 160px;
    }

    .offer-content {
        padding: 0.9rem 1rem;
    }

    /* Hide 4th card on tablet/iPad to show only 3 cards per row */
    #offersCarousel .carousel-item .row > [class*="col-"]:nth-child(4) {
        display: none;
    }
}

@media (max-width: 767px) {
    .offers-title {
        font-size: 2rem;
        white-space: nowrap;
    }

    .offers-nav-arrows {
        position: static;
        margin-top: 1rem;
    }

    .offer-image-container {
        height: 180px;
    }

    .offer-card {
        margin: 0 4px;
    }

    .offer-title {
        font-size: 1.1rem !important;
    }

    .offer-description {
        font-size: 0.85rem !important;
    }

    .offer-content {
        padding: 1rem !important;
    }

    .btn-offer-link {
        font-size: 0.85rem !important;
    }

    /* Phone: Show only 1 card per slide */
    #offersCarousel .carousel-item .row > [class*="col-"]:not(:first-child) {
        display: none;
    }

    #offersCarousel .carousel-item .row > [class*="col-"]:first-child {
        width: 100%;
        max-width: 100%;
    }
}

/* ========================================
   Welcome Section - Hotel Kiran Palace
   ======================================== */
.welcome-section {
    background: #ffffff;
    position: relative;
}

.welcome-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.welcome-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.welcome-image:hover {
    transform: scale(1.02);
}

.welcome-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(255, 161, 0);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.welcome-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.welcome-features {
    margin-top: 1.5rem;
}

.welcome-feature-box {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.welcome-feature-box:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 161, 0);
    border-radius: 8px;
}

.feature-icon {
    font-size: 1.5rem;
    color: #ffffff;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.feature-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Welcome Section */
@media (max-width: 991px) {
    .welcome-heading {
        font-size: 2rem;
    }

    .welcome-description {
        font-size: 0.95rem;
    }

    .welcome-feature-box {
        padding: 1rem;
    }

    .feature-icon-wrapper {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .feature-icon {
        font-size: 1.3rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .welcome-heading {
        font-size: 1.75rem;
    }

    .welcome-description {
        font-size: 0.9rem;
    }

    .welcome-features {
        margin-top: 1rem;
    }

    .welcome-feature-box {
        padding: 0.9rem;
        margin-bottom: 0.75rem !important;
    }

    .feature-icon-wrapper {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .feature-icon {
        font-size: 1.2rem;
    }

    .feature-title {
        font-size: 0.95rem;
    }

    .feature-description {
        font-size: 0.8rem;
    }
}

/* ========================================
   Our Royal Rooms Section
   ======================================== */
.royal-rooms-section {
    background: #fafafa;
    position: relative;
    padding-bottom: 3rem !important;
}

.royal-rooms-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: rgb(255, 161, 0);
    margin-bottom: 0.5rem;
}

.royal-rooms-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.royal-room-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
}

.royal-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ===== ROOM DETAIL PAGE SLIDER ===== */
.room-slider {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.room-slider .swiper-wrapper {
    height: 500px;
}

.room-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.room-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-slider:hover img {
    transform: scale(1.02);
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ff6600;
}

.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.7 !important;
    width: 12px !important;
    height: 12px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #ff6a00 !important;
    opacity: 1 !important;
    width: 32px !important;
    border-radius: 6px !important;
}

/* ===== ROOM INFO SECTION ===== */
.room-info {
    margin-top: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.room-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.room-desc {
    color: #666;
    margin-top: 15px;
    line-height: 1.8;
    font-size: 15px;
}

.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 25px;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.room-meta span {
    font-size: 14px;
    color: #555;
}

.room-meta strong {
    color: #ff6a00;
    font-weight: 600;
}

/* ===== ROOM AMENITIES ===== */
.room-amenities {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.room-amenity-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.room-amenity-item:hover {
    color: #ff6a00;
    padding-left: 5px;
}

.room-amenity-item i {
    width: 20px;
    color: #ff6a00;
    font-weight: bold;
}

/* ===== ROOM BOOKING SECTION ===== */
.room-booking-section {
    background: linear-gradient(135deg, #fff8f0 0%, #fff5eb 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ff6a00;
}

.room-booking-section .btn {
    background: linear-gradient(135deg, #ff6a00 0%, #ff8c1a 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.room-booking-section .btn:hover {
    background: linear-gradient(135deg, #ff8c1a 0%, #ff6a00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
    color: #fff;
}

/* ===== SIDEBAR ===== */
.room-sidebar {
    position: sticky;
    top: 100px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
}

.new-price {
    font-size: 26px;
    font-weight: 700;
    color: #c19a6b;
}

.discount-text {
    color: green;
    font-weight: 600;
}

.special-offer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fff8f2, #fdf1e4);
    border: 1px solid #e6c8a0;
    border-radius: 16px;
    padding: 22px 26px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(193, 154, 107, 0.25);
}

.special-offer-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(193, 154, 107, 0.15),
        transparent 60%
    );
}

.offer-left {
    position: relative;
    z-index: 2;
}

.offer-badge {
    background: #ee9b35;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.offer-title {
    font-size: 22px;
    font-weight: 700;
    margin: 12px 0 4px;
    color: #3a2b1c;
}

.offer-subtitle {
    font-size: 14px;
    color: #7b6a58;
    margin-bottom: 14px;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.offer-price .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
}

.offer-price .new-price {
    font-size: 30px;
    font-weight: 800;
    color: #f4aa50;
}

.discount-pill {
    background: #2e7d32;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.offer-right {
    font-size: 64px;
    color: rgba(193, 154, 107, 0.25);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 3px solid #ff6a00;
    padding-bottom: 12px;
    margin-bottom: 20px;
    position: relative;
}

/* ===== SERVICES LIST ===== */
.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 12px 0;
    padding-left: 25px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    position: relative;
    transition: all 0.3s ease;
    font-size: 14px;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6a00;
    font-weight: bold;
    font-size: 16px;
}

.service-list li:hover {
    color: #ff6a00;
    padding-left: 30px;
}

/* ===== RECENT BLOG ===== */
.recent-blog {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.recent-blog:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

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

.recent-blog h6 {
    font-size: 14px;
    margin: 0;
    color: #1a1a1a;
    font-weight: 600;
}

.recent-blog span {
    font-size: 12px;
    color: #ff6a00;
    display: block;
    margin-top: 5px;
}

/* ===== TAGS ===== */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud span {
    display: inline-block;
    border: 2px solid #ff6a00;
    padding: 8px 15px;
    font-size: 12px;
    color: #ff6a00;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.room-image-wrapper {
    height: 220px;
    overflow: hidden;
}

.room-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.royal-room-card:hover .room-main-image {
    transform: scale(1.05);
}

.room-gallery-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.room-gallery-icon:hover {
    background: #f5a623;
    transform: scale(1.1);
}

.room-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.room-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222 !important;
    line-height: 1.3;
}

.room-filling-badge {
    background: linear-gradient(135deg, #ff9800, #f44336);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.room-availability-text {
    font-size: 0.8rem;
    color: #dc3545 !important;
    font-weight: 500;
    margin: 0;
}

.room-amenities {
    margin: 0.75rem 0;
}

.room-amenity-item {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
}

.room-member-rates {
    font-size: 0.8rem;
    color: #999;
    margin: 0;
}

.room-price-full {
    display: flex;
    align-items: baseline;
    gap: 0;
}

.room-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.room-price-suffix {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

.room-card-actions {
    margin-top: auto;
    padding-top: 0.75rem;
    padding-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-shrink: 0;
    gap: 0.75rem;
}

.room-details-link {
    color: #dc3545 !important;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    padding: 0.5rem 0.75rem;
}

.room-details-link:hover {
    color: #dc3545 !important;
    text-decoration: underline;
}

.btn-room-book {
    background: rgb(255, 161, 0);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
    z-index: 1;
}

.btn-room-book::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        89deg,
        rgb(255, 161, 0) 11.51%,
        rgb(247, 71, 15) 52.88%,
        rgb(238, 17, 98) 92.44%
    );
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-room-book span {
    position: relative;
    z-index: 2;
    color: #ffffff !important;
    display: block;
    z-index: 2;
}

.btn-room-book {
    position: relative;
    z-index: 1;
}

.btn-room-book:hover::before {
    left: 0;
}

.btn-room-book:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 161, 0, 0.3);
}

.btn-room-book:hover span {
    color: #ffffff !important;
}

/* Room Gallery Modal */
#roomGalleryModal .modal-content {
    background: #ffffff;
}

.gallery-main-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f8f9fa;
}

.gallery-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbnails {
    flex-wrap: wrap;
}

.thumbnail-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
}

.thumbnail-row::-webkit-scrollbar {
    display: none;
}

.gallery-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.gallery-thumbnail:hover {
    opacity: 1;
    border-color: rgb(255, 161, 0);
    transform: scale(1.05);
}

.gallery-thumbnail.active {
    opacity: 1;
    border-color: rgb(255, 161, 0);
}

/* View More Link */
.room-view-more-link {
    color: rgb(255, 161, 0);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.room-view-more-link:hover {
    color: rgb(247, 71, 15);
    text-decoration: underline;
}

/* Room Detail Page */
.room-booking-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    position: sticky;
    top: 100px;
}

.btn-room-detail-book {
    background: rgb(255, 161, 0);
    color: #ffffff;
    border: none;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-room-detail-book::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        89deg,
        rgb(255, 161, 0) 11.51%,
        rgb(247, 71, 15) 52.88%,
        rgb(238, 17, 98) 92.44%
    );
    transition: left 0.4s ease;
    z-index: 0;
}

.btn-room-detail-book span,
.btn-room-detail-book {
    position: relative;
    z-index: 1;
}

.btn-room-detail-book:hover::before {
    left: 0;
}

.btn-room-detail-book:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 161, 0, 0.3);
}

/* Responsive Royal Rooms */
@media (min-width: 1200px) {
    .royal-rooms-heading {
        font-size: 3rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    /* Tablet: 2 cards per row */
    .royal-rooms-heading {
        font-size: 2.5rem;
    }

    .room-image-wrapper {
        height: 200px;
    }

    .room-card-content {
        padding: 1.25rem;
    }

    .room-card-title {
        font-size: 1.2rem;
    }

    .room-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    /* Phone: 1 card per row - smaller text */
    .royal-rooms-heading {
        font-size: 1.75rem;
    }

    .royal-rooms-subtitle {
        font-size: 0.85rem;
    }

    .room-image-wrapper {
        height: 160px;
    }

    .room-card-content {
        padding: 0.9rem;
    }

    .room-card-title {
        font-size: 0.95rem !important;
    }

    .room-filling-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .room-availability-text {
        font-size: 0.75rem !important;
    }

    .room-amenity-item {
        font-size: 0.8rem !important;
    }

    .room-amenity-item i {
        font-size: 0.8rem !important;
    }

    .room-member-rates {
        font-size: 0.75rem !important;
    }

    .room-price {
        font-size: 1.2rem !important;
    }

    .room-price-suffix {
        font-size: 0.8rem !important;
    }

    .room-details-link {
        font-size: 0.8rem !important;
    }

    .btn-room-book {
        padding: 0.55rem 2rem !important;
        font-size: 0.8rem !important;
    }

    .room-gallery-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        bottom: 8px;
        left: 8px;
    }

    .room-view-more-link {
        font-size: 0.85rem !important;
    }

    .royal-room-card {
        min-height: auto;
        height: auto;
    }

    .room-card-content {
        padding: 0.9rem 1rem 1rem 1rem;
    }

    .room-card-actions {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .btn-room-book {
        flex: 1;
        padding: 0.45rem 0.85rem;
        font-size: 0.75rem !important;
    }

    .room-details-link {
        flex: 1;
        padding: 0.45rem 0.5rem;
        font-size: 0.75rem !important;
        text-align: center;
    }

    .gallery-main-image-container {
        height: 300px;
    }

    .gallery-thumbnail {
        width: 70px;
        height: 50px;
    }
}

/* ========================================
   Amenities Preview Section
   ======================================== */
.amenities-preview-section {
    background: #ffffff;
}

.service-pill {
    background: #f6f6f6;
    height: 170px;
    border-radius: 140px 140px 140px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.35s ease;
    cursor: pointer;
}

/* ICON */
.service-pill i {
    font-size: 32px;
    color: #f9a75b;
    /* image jaisa gold */
    transition: all 0.35s ease;
}

@media (max-width: 576px) {
    .service-pill {
        height: 150px;
        border-radius: 120px 120px 120px 0;
    }
}

/* TEXT */
.service-pill span {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: all 0.35s ease;
}

/* HOVER – IMAGE JESA */
.service-pill:hover {
    background: #ff7a00;
}

.service-pill:hover i,
.service-pill:hover span {
    color: #fff;
}

.amenities-background-circle {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.15) 0%,
        rgba(212, 175, 55, 0.05) 50%,
        transparent 70%
    );
    z-index: 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.amenities-preview-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(255, 161, 0);
    position: relative;
    z-index: 1;
}

.amenities-preview-subtitle {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 400;
    margin-top: 0.5rem;
}

.amenity-card {
    background: rgba(13, 21, 38, 0.8);
    backdrop-filter: blur(10px);
    /* border-radius: 12px;
    padding: 2rem 1.5rem; */
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 1;
}

.amenity-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 161, 0, 0.4);
    box-shadow: 0 8px 24px rgba(255, 161, 0, 0.2);
}

/* Icon Wrapper */
.amenity-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.amenity-icon-wrapper i {
    font-size: 28px;
    color: #ff7a00;
    transition: all 0.35s ease;
}

.amenity-icon-wrapper:hover {
    transform: scale(1.1);
    background: rgba(255, 161, 0, 0.2);
}

.amenity-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
    transition: color 0.35s ease;
}

.amenity-card-description {
    font-size: 14px;
    color: #666;
    transition: color 0.35s ease;
}

.amenity-icon-text {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.3;
}

.amenities-transport-banner {
    background: rgba(245, 245, 240, 0.1);
    backdrop-filter: blur(10px);
    margin: 2rem auto;
    max-width: 600px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.transport-item {
    padding: 0.5rem 0;
}

.transport-icon {
    font-size: 1.25rem;
    color: #d4af37;
}

.transport-text {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
}

.amenities-view-more-link {
    color: rgb(255, 161, 0);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.amenities-view-more-link:hover {
    color: #f5d76e;
    text-decoration: underline;
}

/* ========================================
   Testimonials Preview Section
   ======================================== */
.testimonials-preview-section {
    background: #0d1526;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.testimonials-background-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.4;
    z-index: 0;
}

.testimonials-background-overlay {
    background: rgba(13, 21, 38, 0.5);
    z-index: 1;
}

.testimonials-preview-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(255, 161, 0);
    position: relative;
    z-index: 2;
    line-height: 1.3;
    margin: 0 auto;
    text-align: center;
}

.testimonials-preview-subtitle {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 400;
    position: relative;
    z-index: 2;
    line-height: 1.5;
    margin: 0 auto;
    text-align: center;
}

.testimonials-divider-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgb(255, 161, 0) 50%,
        transparent 100%
    );
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.testimonials-nav-arrows {
    position: relative;
    z-index: 2;
}

.btn-testimonial-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgb(255, 161, 0);
    background: transparent;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.btn-testimonial-nav:hover {
    background: rgb(255, 161, 0);
    color: #0d1526;
    transform: scale(1.1);
}

#testimonialsCarousel {
    position: relative;
    z-index: 2;
}

#testimonialsCarousel .carousel-inner {
    overflow: visible;
}

#testimonialsCarousel .carousel-item {
    padding: 0;
}

/* Mobile Navigation Arrows (Left & Right of Cards) */
.testimonials-mobile-nav-arrows {
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    padding: 0 5px;
    height: 0;
    left: 0;
    right: 0;
}

.btn-testimonial-nav-mobile {
    pointer-events: all;
    position: relative;
    z-index: 11;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    background: rgba(13, 21, 38, 0.95);
    color: #d4af37;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-size: 1rem;
}

.btn-testimonial-nav-mobile:hover {
    background: rgb(255, 161, 0);
    color: #0d1526;
    transform: scale(1.1);
}

.btn-testimonial-nav-mobile-left {
    margin-left: 5px;
}

.btn-testimonial-nav-mobile-right {
    margin-right: 5px;
    margin-left: auto;
}

/* Hide 4th card on tablet */
@media (min-width: 768px) and (max-width: 991px) {
    #testimonialsCarousel .carousel-item .col-lg-3:nth-child(4) {
        display: none;
    }
}

/* Show only 1st card on phone */
@media (max-width: 767px) {
    #testimonialsCarousel {
        padding: 0 50px;
    }

    #testimonialsCarousel .carousel-item .col-lg-3:not(:first-child) {
        display: none;
    }

    #testimonialsCarousel .carousel-item .col-lg-3:first-child {
        width: 100%;
        max-width: 100%;
    }

    .testimonials-preview-heading {
        font-size: 1.4rem;
        line-height: 1.3;
        text-align: center;
        padding: 0 10px;
    }

    .testimonials-preview-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: center;
        padding: 0 10px;
    }

    .testimonials-divider-line {
        margin: 0 auto;
    }

    .testimonials-mobile-nav-arrows {
        display: flex !important;
    }

    .btn-testimonial-nav-mobile {
        display: flex !important;
    }
}

.testimonial-card {
    background: rgba(13, 21, 38, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.testimonial-profile {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d4af37;
}

.testimonial-name {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.testimonial-rating {
    color: rgb(255, 161, 0);
    font-size: 1rem;
}

.testimonial-rating i {
    margin: 0 2px;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* Responsive Amenities Preview */
@media (max-width: 991px) {
    .amenities-preview-heading {
        font-size: 2rem;
    }

    .amenities-preview-subtitle {
        font-size: 0.95rem;
    }

    .amenity-card {
        padding: 1.5rem 1.25rem;
    }

    .amenity-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .amenity-card-title {
        font-size: 1rem;
    }

    .amenity-card-description {
        font-size: 0.85rem;
    }

    .testimonials-preview-heading {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .testimonials-preview-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .testimonials-divider-line {
        width: 60px;
        height: 2px;
    }

    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonial-quote {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .amenities-preview-heading {
        font-size: 1.75rem;
    }

    .amenities-preview-subtitle {
        font-size: 0.85rem;
    }

    .amenity-card {
        padding: 1.25rem 0.75rem;
    }

    .amenity-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .amenity-card-title {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .amenity-card-description {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .amenities-transport-banner {
        padding: 0.75rem 0.5rem !important;
    }

    .transport-icon {
        font-size: 1.1rem;
    }

    .transport-text {
        font-size: 0.9rem;
    }

    .amenities-view-more-link {
        font-size: 0.9rem;
    }

    /* Ensure 2 cards per row on phone */
    .amenities-preview-section .col-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .testimonials-preview-heading {
        font-size: 1.4rem;
        line-height: 1.3;
        text-align: center;
        padding: 0 10px;
    }

    .testimonials-preview-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: center;
        padding: 0 10px;
    }

    .testimonials-divider-line {
        width: 50px;
        height: 2px;
        margin: 0 auto;
    }

    .testimonials-nav-arrows {
        margin-left: 0.5rem !important;
    }

    .btn-testimonial-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 1.25rem 1rem;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-name {
        font-size: 0.95rem;
    }

    .testimonial-rating {
        font-size: 0.9rem;
    }

    .testimonial-quote {
        font-size: 0.85rem;
        line-height: 1.5;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .testimonials-mobile-nav-arrows {
        display: flex !important;
    }

    .btn-testimonial-nav-mobile {
        display: flex !important;
    }
}

/* ========================================
   Gallery Preview Section
   ======================================== */
.gallery-preview-section {
    background: #ffffff;
    position: relative;
    padding: 4rem 0;
}

.product-gallery {
    width: 100%;
}

.gallery-preview-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: rgb(255, 161, 0);
    margin-bottom: 0.5rem;
}

.gallery-preview-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.gallery-view-more-link {
    position: relative;
    color: rgb(255, 161, 0);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid rgb(255, 161, 0);
    border-radius: 25px;
    overflow: hidden;
}

.gallery-view-more-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        89deg,
        rgb(255, 161, 0) 11.51%,
        rgb(247, 71, 15) 52.88%,
        rgb(238, 17, 98) 92.44%
    );
    transition: left 0.4s ease;
    z-index: 0;
}

.gallery-view-more-link:hover::before,
.gallery-view-more-link:active::before,
.gallery-view-more-link:focus::before {
    left: 0;
}

.gallery-view-more-link span {
    position: relative;
    z-index: 1;
}

.gallery-view-more-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 161, 0, 0.3);
    border-color: transparent;
}

.gallery-view-more-link:active {
    transform: translateY(0);
}

/* Desktop: Circular Images */
.gallery-circle-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-circle-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.gallery-circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-circle-card:hover .gallery-circle-image {
    transform: scale(1.1);
}

.gallery-circle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.gallery-circle-card:hover .gallery-circle-overlay {
    opacity: 1;
}

.gallery-circle-content {
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-circle-card:hover .gallery-circle-content {
    opacity: 1;
    transform: translateY(0);
}

.gallery-circle-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgb(255, 161, 0);
    margin-bottom: 0.75rem;
}

.gallery-circle-description {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

.gallery-circle-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgb(255, 161, 0);
    margin: 0;
}

/* Rectangle Card (Desktop) */
.gallery-rectangle-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-rectangle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-rectangle-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-rectangle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-rectangle-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-rectangle-card:hover .gallery-rectangle-image {
    transform: scale(1.05);
}

.gallery-rectangle-content {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        transparent 100%
    );
}

.gallery-bullet {
    font-size: 1.5rem;
    line-height: 1;
}

.gallery-rectangle-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgb(255, 161, 0);
    margin: 0;
}

.gallery-rectangle-description {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* Tablet Carousel */
#galleryTabletCarousel .gallery-circle-wrapper {
    max-width: 250px;
    margin: 0 auto;
}

.gallery-indicators {
    position: static;
    margin-top: 2rem;
    margin-bottom: 0;
    justify-content: center;
}

.gallery-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    margin: 0 5px;
    opacity: 1;
    transition: all 0.3s ease;
}

.gallery-indicators button.active {
    background: rgb(255, 161, 0);
    width: 30px;
    border-radius: 6px;
}

/* Gallery Phone Indicators */
.gallery-phone-indicators {
    position: static;
    margin-top: 1.5rem;
    margin-bottom: 0;
    justify-content: center;
}

.gallery-phone-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 4px;
    opacity: 1;
    transition: all 0.3s ease;
}

.gallery-phone-indicators button.active {
    background: rgb(255, 161, 0);
    width: 24px;
    border-radius: 6px;
}

/* Phone Modal */
.gallery-modal-rectangle {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-modal-image {
    width: 100%;
    height: 60%;
    object-fit: cover;
}

.gallery-modal-content {
    height: 40%;
    background: #0d1526;
    overflow-y: auto;
}

.gallery-modal-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(255, 161, 0);
    margin: 0;
}

.gallery-modal-description {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.gallery-modal-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.gallery-modal-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 4px;
}

.gallery-modal-indicators button.active {
    background: rgb(255, 161, 0);
}

/* Responsive Gallery */
@media (max-width: 991px) {
    .gallery-preview-heading {
        font-size: 2.2rem;
    }

    .gallery-preview-subtitle {
        font-size: 1rem;
    }

    #galleryTabletCarousel .gallery-circle-wrapper {
        max-width: 200px;
    }

    .gallery-circle-heading {
        font-size: 1.1rem;
    }

    .gallery-circle-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .gallery-preview-section {
        padding: 3rem 0;
    }

    .gallery-preview-heading {
        font-size: 1.8rem;
    }

    .gallery-preview-subtitle {
        font-size: 0.9rem;
    }

    .gallery-view-more-link {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }

    .gallery-circle-wrapper {
        max-width: 100%;
    }

    .gallery-circle-label {
        font-size: 0.85rem;
    }

    .gallery-modal-heading {
        font-size: 1.3rem;
    }

    .gallery-modal-description {
        font-size: 0.9rem;
    }
}

/* Video styling */
.gallery-circle-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-modal-image[src*=".mp4"],
.gallery-modal-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   Instagram Section
   ======================================== */
.instagram-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(13, 21, 38, 0.95) 0%,
        rgba(13, 21, 38, 0.98) 100%
    );
}

.instagram-background-pattern {
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 161, 0, 0.03) 10px,
            rgba(255, 161, 0, 0.03) 20px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(247, 71, 15, 0.02) 10px,
            rgba(247, 71, 15, 0.02) 20px
        );
    z-index: 0;
    opacity: 0.5;
}

.instagram-heading {
    font-size: 3rem;
    font-weight: 700;
    color: rgb(255, 161, 0);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.instagram-subheading {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
}

.btn-instagram-follow {
    position: relative;
    background: rgb(255, 161, 0);
    color: #ffffff;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-instagram-follow::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        89deg,
        rgb(255, 161, 0) 11.51%,
        rgb(247, 71, 15) 52.88%,
        rgb(238, 17, 98) 92.44%
    );
    transition: left 0.4s ease;
    z-index: 0;
}

.btn-instagram-follow:hover::before,
.btn-instagram-follow:active::before,
.btn-instagram-follow:focus::before {
    left: 0;
}

.btn-instagram-follow span,
.btn-instagram-follow i {
    position: relative;
    z-index: 1;
}

.btn-instagram-follow:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 161, 0, 0.4);
}

.btn-instagram-follow:active {
    transform: translateY(0);
}

.instagram-circle-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-circle-card:hover {
    transform: translateY(-5px);
}

.instagram-circle-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 3px solid rgba(255, 161, 0, 0.3);
    transition: all 0.3s ease;
}

.instagram-circle-card:hover .instagram-circle-wrapper {
    border-color: rgb(255, 161, 0);
    box-shadow: 0 8px 24px rgba(255, 161, 0, 0.3);
}

.instagram-circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-circle-card:hover .instagram-circle-image {
    transform: scale(1.1);
}

.instagram-indicators {
    position: static;
    margin-top: 2rem;
    margin-bottom: 0;
    justify-content: center;
}

.instagram-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    opacity: 1;
    transition: all 0.3s ease;
}

.instagram-indicators button.active {
    background: rgb(255, 161, 0);
    width: 30px;
    border-radius: 6px;
}

.instagram-play-icon,
.instagram-modal-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 14px 16px;
    border-radius: 50%;
    pointer-events: none;
}

.instagram-modal-play-icon {
    font-size: 40px;
}

/* Responsive Instagram */
@media (max-width: 991px) {
    .instagram-heading {
        font-size: 2rem;
    }

    .instagram-circle-wrapper {
        max-width: 250px;
    }
}

@media (max-width: 767px) {
    .instagram-section {
        padding: 3rem 0;
    }

    .instagram-heading {
        font-size: 1.8rem;
        line-height: 1.3;
        color: rgb(255, 161, 0);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }

    .instagram-subheading {
        font-size: 1rem;
        margin-top: 0.4rem;
    }

    .instagram-circle-wrapper {
        max-width: 100%;
    }

    .btn-instagram-follow {
        font-size: 0.85rem;
        padding: 0.5rem 1.25rem;
        margin-top: 1rem;
    }

    /* Phone: 2 circles per slide */
    .instagram-phone-grid .col-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .instagram-modal-heading {
        font-size: 1.3rem;
    }

    .instagram-modal-description {
        font-size: 0.9rem;
    }
}

/* Instagram Phone Indicators */
.instagram-phone-indicators {
    position: static;
    margin-top: 1.5rem;
    margin-bottom: 0;
    justify-content: center;
}

.instagram-phone-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 4px;
    opacity: 1;
    transition: all 0.3s ease;
}

.instagram-phone-indicators button.active {
    background: rgb(255, 161, 0);
    width: 24px;
    border-radius: 6px;
}

/* Video styling for Instagram */
.instagram-circle-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Instagram Modal Styles (Phone) */
.instagram-modal-rectangle {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.instagram-modal-image {
    width: 100%;
    height: 60%;
    object-fit: cover;
}

.instagram-modal-content {
    height: 40%;
    background: #0d1526;
    overflow-y: auto;
}

.instagram-modal-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(255, 161, 0);
    margin: 0;
}

.instagram-modal-description {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.instagram-modal-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.instagram-modal-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 4px;
}

.instagram-modal-indicators button.active {
    background: rgb(255, 161, 0);
}

.instagram-modal-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   Footer Styles - Dark Navy Blue Theme
   ======================================== */
.footer-main {
    background: #0d1526;
    /* Dark Navy Blue - solid color */
    color: #ffffff;
    position: relative;
}

.footer-brand h4 {
    color: rgb(255, 161, 0);
    /* Golden Orange */
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-brand .fa-crown {
    color: rgb(255, 161, 0);
    font-size: 1.2rem;
}

.footer-tagline {
    color: rgb(255, 161, 0);
    /* Golden Orange */
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-description {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-heading {
    color: rgb(255, 161, 0);
    /* Golden Orange */
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: left;
}

.footer-brand-name {
    color: rgb(247, 71, 15);
    /* Orange - same as arrow/progress ring */
    font-weight: 600;
}

.footer-brand-name-link {
    color: rgb(247, 71, 15) !important;
    /* Orange - same as arrow/progress ring */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-brand-name-link:hover {
    color: rgb(255, 161, 0) !important;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
    padding-left: 0;
}

.footer-links a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: rgb(255, 161, 0);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: rgb(255, 161, 0);
    padding-left: 15px;
}

.footer-links a:hover::before {
    width: 10px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact .fas {
    color: rgb(255, 161, 0);
    width: 20px;
    min-width: 20px;
    flex-shrink: 0;
}

.footer-contact-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
    max-width: 100%;
}

.footer-contact-link:hover {
    color: rgb(255, 161, 0);
    text-decoration: underline;
}

.footer-follow {
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgb(255, 161, 0);
    background: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        89deg,
        rgb(255, 161, 0) 11.51%,
        rgb(247, 71, 15) 52.88%,
        rgb(238, 17, 98) 92.44%
    );
    transition: left 0.3s ease;
    z-index: 0;
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.social-icon:hover::before {
    left: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-bottom p,
.footer-bottom-link {
    color: #ffffff;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: rgb(255, 161, 0);
}

.footer-bottom .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Footer Subscribe Section (Inside Column 1) */
.footer-subscribe {
    margin-top: 1.5rem;
}

.subscribe-heading {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.subscribe-form {
    gap: 0.5rem !important;
    flex-wrap: nowrap;
    align-items: stretch;
}

.subscribe-form .subscribe-input {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 120px);
}

.subscribe-form .subscribe-btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

.subscribe-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 161, 0, 0.3);
    color: #ffffff;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    min-width: 0;
    max-width: 100%;
    word-break: break-word;
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgb(255, 161, 0);
    color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 161, 0, 0.25);
}

.subscribe-btn {
    position: relative;
    background: rgb(255, 161, 0);
    /* Same as header Book button */
    color: #ffffff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: auto;
    overflow: hidden;
}

.subscribe-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        89deg,
        rgb(255, 161, 0) 11.51%,
        rgb(247, 71, 15) 52.88%,
        rgb(238, 17, 98) 92.44%
    );
    transition: left 0.4s ease;
    z-index: 0;
}

.subscribe-btn:hover::before,
.subscribe-btn:active::before,
.subscribe-btn:focus::before {
    left: 0;
}

.subscribe-btn-text,
.subscribe-btn-loader {
    position: relative;
    z-index: 1;
}

.subscribe-btn:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.subscribe-btn:active {
    transform: translateY(0);
}

.subscribe-btn.loading {
    pointer-events: none;
    cursor: wait;
}

.subscribe-btn.loading .subscribe-btn-text {
    display: none;
}

.subscribe-btn.loading .subscribe-btn-loader {
    display: inline-block !important;
}

/* Contact Section */
.contact-section .border-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.contact-heading {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.contact-info {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
}

/* Quick Links Section */
.quick-links-section .border-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.links-heading {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

/* Get in Touch Section */
.get-in-touch-section .border-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.connect-section .border-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Border Bottom Styling */
.footer-main .border-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-main {
        text-align: start;
    }

    .footer-brand,
    .footer-description,
    .footer-subscribe {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-contact {
        text-align: left;
    }

    .footer-follow {
        text-align: left;
    }

    /* Tablet: 2 columns layout */
    .footer-main .row > div {
        margin-bottom: 2rem;
    }

    .footer-main .row > div:last-child {
        margin-bottom: 0;
    }
}

@media (min-width: 577px) and (max-width: 991px) {
    /* Tablet screens - 2-2 layout with gap */
    .footer-main {
        padding: 2.5rem 0 !important;
    }

    .footer-main .row {
        gap: 1.5rem 0;
        margin-left: 0;
        margin-right: 0;
    }

    .footer-main .row > div.col-md-6 {
        margin-bottom: 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* First row: Hotel Info & Quick Links */
    .footer-main .row > div.col-md-6:nth-child(1),
    .footer-main .row > div.col-md-6:nth-child(2) {
        margin-bottom: 1.5rem;
    }

    /* Second row: Support Center & Get in Touch */
    .footer-main .row > div.col-md-12 {
        margin-bottom: 0;
    }

    /* Text sizes smaller on tablet */
    .footer-heading {
        font-size: 0.95rem !important;
        margin-bottom: 0.75rem;
    }

    .footer-brand h4 {
        font-size: 1.3rem !important;
    }

    .footer-tagline {
        font-size: 0.85rem !important;
    }

    .footer-description {
        font-size: 0.85rem !important;
    }

    .footer-links a,
    .footer-contact-link {
        font-size: 0.85rem !important;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-contact li {
        margin-bottom: 0.75rem !important;
    }

    /* Subscribe section - email input larger */
    .subscribe-heading {
        font-size: 0.9rem !important;
    }

    .subscribe-form {
        gap: 0.5rem !important;
    }

    .subscribe-input {
        font-size: 0.85rem !important;
        padding: 0.5rem 0.75rem !important;
        min-width: 200px;
    }

    .subscribe-btn {
        font-size: 0.85rem !important;
        padding: 0.5rem 1.25rem !important;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .subscribe-form .subscribe-input {
        max-width: none;
        flex: 1 1 auto;
        min-width: 180px;
    }

    /* Gap between sections */
    .footer-main .row > div {
        margin-bottom: 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    /* iPad Pro size (1024px) - same as tablet adjustments */
    .footer-main {
        padding: 2.5rem 0 !important;
    }

    .footer-heading {
        font-size: 0.95rem !important;
    }

    .footer-brand h4 {
        font-size: 1.3rem !important;
    }

    .footer-description,
    .footer-links a,
    .footer-contact-link {
        font-size: 0.85rem !important;
    }

    .subscribe-input {
        font-size: 0.85rem !important;
        min-width: 200px;
    }

    .subscribe-btn {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 768px) {
    .footer-main {
        text-align: center;
        padding: 2rem 0 !important;
    }

    .footer-brand,
    .footer-description,
    .footer-subscribe {
        text-align: left;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-links {
        text-align: left;
    }

    .footer-contact {
        text-align: left;
    }

    .footer-follow {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .subscribe-form .subscribe-input {
        max-width: calc(100% - 90px);
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 1.5rem 0 !important;
    }

    .footer-heading {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-links a,
    .footer-contact-link {
        font-size: 0.8rem;
    }

    .footer-description {
        font-size: 0.8rem;
    }

    .footer-contact .fas {
        width: 16px;
        min-width: 16px;
        font-size: 0.85rem;
    }

    .subscribe-heading {
        font-size: 0.85rem;
    }

    .subscribe-input,
    .subscribe-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .footer-social {
        gap: 0.6rem;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .footer-bottom {
        text-align: center !important;
    }

    .footer-bottom .row > div {
        text-align: center !important;
        margin-bottom: 0.5rem;
    }

    .footer-bottom-link {
        font-size: 0.75rem;
    }

    .subscribe-section .row {
        text-align: center;
    }

    .subscribe-section form {
        flex-direction: column;
    }

    .contact-section {
        text-align: center;
    }
}

/* ========================================
   Scroll to Top Button (Left Side)
   ======================================== */
.scroll-to-top {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    box-shadow: none;
    transition: all 0.3s ease;
    overflow: visible;
    padding: 0;
}

.scroll-to-top::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgb(255, 161, 0) 0%,
        rgb(247, 71, 15) 50%,
        rgb(238, 17, 98) 100%
    );
    z-index: 2;
}

.scroll-to-top i {
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
}

.scroll-to-top:hover::before {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top svg.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    z-index: 1;
    pointer-events: none;
}

.scroll-to-top .progress-ring-circle {
    stroke-dasharray: 169.646;
    stroke-dashoffset: 169.646;
    transition: stroke-dashoffset 0.15s ease;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 30px 30px;
}

.scroll-to-top.show .progress-ring-circle {
    stroke-dashoffset: var(--scroll-progress, 169.646);
}

@media (min-width: 577px) and (max-width: 991px) {
    /* Tablet */
    .scroll-to-top {
        width: 56px;
        height: 56px;
        left: 18px;
        bottom: 18px;
        font-size: 1.1rem;
    }

    .scroll-to-top::before {
        width: 46px;
        height: 46px;
        top: 5px;
        left: 5px;
    }

    .scroll-to-top svg.progress-ring {
        width: 56px;
        height: 56px;
    }

    .scroll-to-top .progress-ring-circle {
        transform-origin: 28px 28px;
        cx: 28;
        cy: 28;
        r: 25;
    }
}

@media (max-width: 576px) {
    /* Phone */
    .scroll-to-top {
        width: 52px;
        height: 52px;
        left: 15px;
        bottom: 15px;
        font-size: 1rem;
    }

    .scroll-to-top::before {
        width: 42px;
        height: 42px;
        top: 5px;
        left: 5px;
    }

    .scroll-to-top svg.progress-ring {
        width: 52px;
        height: 52px;
    }

    .scroll-to-top .progress-ring-circle {
        transform-origin: 26px 26px;
        cx: 26;
        cy: 26;
        r: 23;
    }
}

/* ========================================
   WhatsApp Floating Button (Right Side)
   ======================================== */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        right: 12px;
        bottom: 12px;
        font-size: 1.3rem;
    }
}

/* ========================================
   Visit Hotel Kiran Palace Section
   ======================================== */
.visit-section {
    background: #ffffff;
    padding: 4rem 0;
    position: relative;
}

.visit-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d1526;
    margin-bottom: 2rem;
}

.visit-map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.visit-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.visit-contact-item {
    margin-bottom: 1.5rem;
}

.visit-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 8px;
    background: rgb(255, 161, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visit-icon {
    color: #ffffff;
    font-size: 1.2rem;
}

.visit-contact-content {
    flex: 1;
}

.visit-contact-label {
    font-size: 1rem;
    font-weight: 700;
    color: #0d1526;
    margin-bottom: 0.5rem;
}

.visit-contact-text {
    font-size: 1rem;
    color: #0d1526;
    line-height: 1.6;
    margin: 0;
}

.visit-contact-link {
    color: #0d1526;
    text-decoration: none;
    transition: color 0.3s ease;
}

.visit-contact-link:hover {
    color: rgb(255, 161, 0);
}

.visit-buttons {
    margin-top: 2rem;
}

.visit-btn-directions {
    background: rgb(255, 161, 0);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.visit-btn-directions::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        89deg,
        rgb(255, 161, 0) 11.51%,
        rgb(247, 71, 15) 52.88%,
        rgb(238, 17, 98) 92.44%
    );
    transition: left 0.4s ease;
    z-index: 0;
}

.visit-btn-directions:hover::before,
.visit-btn-directions:active::before,
.visit-btn-directions:focus::before {
    left: 0;
}

.visit-btn-directions span,
.visit-btn-directions i {
    position: relative;
    z-index: 1;
}

.visit-btn-directions:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 161, 0, 0.4);
}

.visit-btn-contact {
    background: #0d1526;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.visit-btn-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        89deg,
        rgb(255, 161, 0) 11.51%,
        rgb(247, 71, 15) 52.88%,
        rgb(238, 17, 98) 92.44%
    );
    transition: left 0.4s ease;
    z-index: 0;
}

.visit-btn-contact:hover::before,
.visit-btn-contact:active::before,
.visit-btn-contact:focus::before {
    left: 0;
}

.visit-btn-contact span,
.visit-btn-contact i {
    position: relative;
    z-index: 1;
}

.visit-btn-contact:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 161, 0, 0.4);
}

.address-link {
    color: #212529;
    /* normal text color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.address-link:hover {
    color: #f59e0b;
    /* hover color (orange / brand color) */
    text-decoration: underline;
}

/* Responsive Visit Section */
@media (max-width: 991px) {
    .visit-heading {
        font-size: 2rem;
    }

    .visit-map-container {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .visit-section {
        padding: 3rem 0;
    }

    .visit-heading {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .visit-map-container {
        height: 350px;
        margin-bottom: 2rem;
    }

    .visit-icon-wrapper {
        width: 45px;
        height: 45px;
        min-width: 45px;
        border-radius: 10px;
    }

    .visit-icon {
        font-size: 1rem;
    }

    .visit-contact-label {
        font-size: 0.95rem;
    }

    .visit-contact-text {
        font-size: 0.9rem;
    }

    .visit-buttons {
        flex-direction: row;
        width: 100%;
        gap: 0.75rem !important;
    }

    .visit-btn-directions,
    .visit-btn-contact {
        flex: 1;
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        justify-content: center;
    }

    .visit-btn-directions i,
    .visit-btn-contact i {
        font-size: 0.8rem;
        margin-right: 0.4rem !important;
    }
}

@media (max-width: 576px) {
    .visit-heading {
        font-size: 1.5rem;
    }

    .visit-map-container {
        height: 300px;
    }

    .visit-icon-wrapper {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 8px;
    }

    .visit-icon {
        font-size: 0.9rem;
    }
}

/* ========================================
   Admin Dashboard Styles
   ======================================== */

/* Admin Body */
.admin-body {
    overflow: hidden;
    height: 100vh;
    width: 100%;
}

/* Admin Sidebar */
.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: #fff5e6;
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: hidden;
    border-right: 1px solid rgba(255, 161, 0, 0.2);
    display: flex;
    flex-direction: column;
}

/* Sidebar Bubble/Circle Animation */
.admin-sidebar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 161, 0, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(255, 161, 0, 0.12) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 80%,
            rgba(255, 161, 0, 0.18) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 60% 20%,
            rgba(255, 161, 0, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 10% 60%,
            rgba(255, 161, 0, 0.1) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 90% 40%,
            rgba(255, 161, 0, 0.1) 0%,
            transparent 40%
        );
    background-size: 200% 200%;
    animation: bubbleMove 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes bubbleMove {
    0%,
    100% {
        background-position:
            0% 0%,
            100% 100%,
            50% 50%,
            25% 75%,
            10% 60%,
            90% 40%;
    }

    25% {
        background-position:
            100% 50%,
            0% 0%,
            75% 25%,
            50% 100%,
            60% 10%,
            40% 90%;
    }

    50% {
        background-position:
            50% 100%,
            50% 50%,
            0% 0%,
            100% 25%,
            90% 60%,
            10% 40%;
    }

    75% {
        background-position:
            25% 25%,
            75% 100%,
            100% 75%,
            0% 50%,
            40% 90%,
            60% 10%;
    }
}

.admin-sidebar > * {
    position: relative;
    z-index: 1;
}

.admin-sidebar.collapsed {
    width: 70px;
}

.admin-sidebar.collapsed .admin-sidebar-logo-text,
.admin-sidebar.collapsed .admin-sidebar-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

/* .admin-sidebar::-webkit-scrollbar {
    width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: #fff5e6;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 161, 0, 0.4);
    border-radius: 3px;
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 161, 0, 0.6);
} */

.admin-sidebar-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 161, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: rgba(255, 161, 0, 0.05);
    flex-shrink: 0;
    z-index: 1;
}

.admin-sidebar-close {
    background: transparent;
    border: none;
    color: #0d1526;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
    opacity: 0.7;
}

.admin-sidebar-close:hover {
    color: #0d1526;
    opacity: 1;
}

.admin-sidebar.collapsed .admin-sidebar-close {
    display: none;
}

.admin-sidebar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0d1526;
    transition: opacity 0.3s ease;
}

.admin-sidebar-logo:hover {
    opacity: 0.8;
    color: #0d1526;
}

.admin-sidebar-logo-img {
    height: 40px;
    width: auto;
    margin-right: 0.75rem;
}

.admin-sidebar-logo-text {
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    transition:
        opacity 0.3s ease,
        width 0.3s ease;
}

.admin-sidebar-nav {
    padding: 0.5rem 0;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

.admin-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-sidebar-item {
    margin: 0;
}

.admin-sidebar-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #0d1526;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    margin: 0.25rem 0.5rem;
    border-radius: 6px;
    opacity: 0.8;
    overflow: hidden;
}

.admin-sidebar-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgb(255, 161, 0) 0%,
        rgb(247, 71, 15) 50%,
        rgb(238, 17, 98) 100%
    );
    transition: left 0.4s ease;
    z-index: 0;
}

.admin-sidebar-link:hover::before {
    left: 0;
}

.admin-sidebar-link:hover {
    background: transparent;
    color: #0d1526;
    opacity: 1;
}

.admin-sidebar-link:hover .admin-sidebar-icon,
.admin-sidebar-link:hover .admin-sidebar-text {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.admin-sidebar-link.active {
    background: rgb(255, 161, 0);
    color: #ffffff;
    font-weight: 600;
    opacity: 1;
}

.admin-sidebar-link.active::before {
    left: -100%;
}

.admin-sidebar-link.active:hover::before {
    left: 0;
}

.admin-sidebar-link.active .admin-sidebar-icon,
.admin-sidebar-link.active .admin-sidebar-text {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.admin-sidebar-link.active:hover .admin-sidebar-icon,
.admin-sidebar-link.active:hover .admin-sidebar-text {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.admin-sidebar-icon {
    width: 20px;
    font-size: 1.1rem;
    margin-right: 0.75rem;
    text-align: center;
    flex-shrink: 0;
}

.admin-sidebar-text {
    font-size: 0.9rem;
    white-space: nowrap;
    transition:
        opacity 0.3s ease,
        width 0.3s ease;
}

/* Sidebar Overlay (Mobile) */
.admin-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.admin-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Admin Main Wrapper */
.admin-main-wrapper {
    margin-left: 260px;
    height: 100vh;
    transition: margin-left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.admin-body.sidebar-collapsed .admin-main-wrapper {
    margin-left: 70px;
}

/* Admin Header */
.admin-header {
    position: fixed;
    top: 0;
    left: 260px;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    transition: left 0.3s ease;
}

.admin-body.sidebar-collapsed .admin-header {
    left: 70px;
}

.admin-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    gap: 1rem;
    height: 60px;
}

.admin-header-toggle {
    background: rgb(255, 161, 0);
    color: #ffffff;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-header-toggle:hover {
    background: linear-gradient(
        89deg,
        rgb(255, 161, 0) 11.51%,
        rgb(247, 71, 15) 52.88%,
        rgb(238, 17, 98) 92.44%
    );
    transform: translateY(-2px);
}

.admin-header-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0d1526;
    margin: 0;
    flex: 1;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-header-theme-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #0d1526;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-header-theme-btn:hover {
    background: rgba(255, 161, 0, 0.1);
    border-color: rgb(255, 161, 0);
    color: rgb(255, 161, 0);
}

.admin-header-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: #0d1526;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.admin-header-link:hover {
    background: rgba(255, 161, 0, 0.1);
    color: rgb(255, 161, 0);
}

/* Admin Profile Dropdown */
.admin-profile-dropdown {
    position: relative;
}

.admin-profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-profile-btn:hover {
    transform: scale(1.05);
}

.admin-profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(255, 161, 0);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.admin-profile-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #0d1526;
}

.admin-profile-arrow {
    font-size: 0.75rem;
    color: #666;
    transition: transform 0.3s ease;
}

.admin-profile-btn[aria-expanded="true"] .admin-profile-arrow {
    transform: rotate(180deg);
}

.admin-profile-menu {
    min-width: 200px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.admin-profile-menu-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #0d1526;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-size: 0.95rem;
}

.admin-profile-menu-item:hover {
    background: rgba(255, 161, 0, 0.1);
    color: rgb(255, 161, 0);
}

.admin-logout-btn {
    color: #dc3545 !important;
}

.admin-logout-btn:hover {
    background: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
}

/* Admin Main Content */
.admin-main-content {
    padding: 1.5rem;
    background: #f5f5f5;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 60px;
    height: calc(100vh - 60px);
    width: 100%;
    padding-top: 1rem !important;
}

.admin-content-container {
    width: 100%;
    max-width: 100%;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.admin-content-container > .row:first-child {
    margin-top: 0;
}

.admin-content-container > .row > .col-12 > .card {
    margin-top: 0;
}

.admin-content-container h1 {
    margin-bottom: 0.5rem;
    color: #0d1526;
}

.admin-content-container .text-muted {
    margin-bottom: 1.5rem;
    color: #6c757d;
}

/* Dashboard Stat Cards */
.admin-dashboard-stat-card {
    border: none;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.admin-dashboard-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.admin-dashboard-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #ffffff;
    flex-shrink: 0;
}

.admin-dashboard-stat-content {
    flex: 1;
}

.admin-dashboard-stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    opacity: 0.9;
    color: #ffffff;
}

.admin-dashboard-stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    line-height: 1.2;
}

.admin-dashboard-stat-link {
    font-size: 0.8rem;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    display: inline-block;
    margin-top: 0.5rem;
    transition: opacity 0.3s ease;
}

.admin-dashboard-stat-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.admin-card-blogs {
    background: linear-gradient(
        135deg,
        rgb(255, 161, 0) 0%,
        rgb(247, 71, 15) 100%
    );
}

.admin-card-blogs .admin-dashboard-stat-icon {
    background: rgba(255, 255, 255, 0.2);
}

.admin-card-images {
    background: linear-gradient(
        135deg,
        rgb(247, 71, 15) 0%,
        rgb(238, 17, 98) 100%
    );
}

.admin-card-images .admin-dashboard-stat-icon {
    background: rgba(255, 255, 255, 0.2);
}

.admin-card-rooms {
    background: linear-gradient(
        135deg,
        rgb(255, 161, 0) 0%,
        rgb(238, 17, 98) 100%
    );
}

.admin-card-rooms .admin-dashboard-stat-icon {
    background: rgba(255, 255, 255, 0.2);
}

.admin-card-inquiries {
    background: linear-gradient(
        135deg,
        rgb(247, 71, 15) 0%,
        rgb(255, 161, 0) 100%
    );
}

.admin-card-inquiries .admin-dashboard-stat-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* Dashboard Table Card */
.admin-dashboard-table-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.admin-dashboard-table-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
}

.admin-dashboard-table-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-dashboard-table-badge {
    background: linear-gradient(
        90deg,
        rgb(255, 161, 0) 0%,
        rgb(247, 71, 15) 50%,
        rgb(238, 17, 98) 100%
    );
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.admin-dashboard-view-all-btn {
    background: rgb(255, 161, 0);
    color: #ffffff !important;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.admin-dashboard-view-all-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgb(255, 161, 0) 0%,
        rgb(247, 71, 15) 50%,
        rgb(238, 17, 98) 100%
    );
    transition: left 0.4s ease;
    z-index: 0;
}

.admin-dashboard-view-all-btn:hover::before {
    left: 0;
}

.admin-dashboard-view-all-btn span,
.admin-dashboard-view-all-btn > * {
    position: relative;
    z-index: 1;
    color: #ffffff !important;
}

.admin-dashboard-view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 161, 0, 0.4);
    color: #ffffff !important;
}

.admin-dashboard-view-all-btn:hover span,
.admin-dashboard-view-all-btn:hover > * {
    color: #ffffff !important;
}

.admin-dashboard-table-body {
    overflow-x: auto;
}

.admin-dashboard-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
}

.admin-dashboard-table thead {
    background: #f9fafb;
    position: sticky;
    top: 0;
    z-index: 10;
}

.admin-dashboard-table thead th {
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #6b7280;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    white-space: nowrap;
}

.admin-dashboard-table tbody tr {
    transition: background 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.admin-dashboard-table tbody tr:hover {
    background: #f9fafb;
}

.admin-dashboard-table tbody tr:last-child {
    border-bottom: none;
}

.admin-dashboard-table tbody td {
    padding: 1rem 1.5rem;
    color: #111827;
    font-size: 0.9rem;
    vertical-align: middle;
}

.admin-dashboard-status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
}

.admin-dashboard-status-badge.active {
    background: #d1fae5;
    color: #065f46;
}

.admin-dashboard-status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.admin-dashboard-status-badge.responded {
    background: #dbeafe;
    color: #1e40af;
}

/* Subscribe Table */
.admin-subscribe-table {
    margin-bottom: 0;
    background: #ffffff;
}

.admin-subscribe-table thead {
    background: rgba(255, 161, 0, 0.1);
}

.admin-subscribe-table thead th {
    border-bottom: 2px solid rgba(255, 161, 0, 0.2);
    font-weight: 600;
    color: #0d1526;
    padding: 1rem;
    background: rgba(255, 161, 0, 0.1);
}

.admin-subscribe-table tbody tr {
    transition: background 0.3s ease;
    background: #ffffff;
}

.admin-subscribe-table tbody td {
    padding: 1rem;
    vertical-align: middle;
    color: #0d1526;
    border-bottom: 1px solid #e0e0e0;
}

.admin-subscribe-table tbody tr:hover {
    background: rgba(255, 161, 0, 0.08);
}

.admin-subscribe-table tbody tr:hover td {
    color: #0d1526;
}

/* Dark Theme Styles */
.admin-body.theme-dark {
    background: #1a1a1a;
}

.admin-body.theme-dark .admin-sidebar {
    background: #0d1526;
    border-right-color: rgba(255, 255, 255, 0.1);
}

.admin-body.theme-dark .admin-sidebar::before {
    background-image:
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 161, 0, 0.2) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(255, 161, 0, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 80%,
            rgba(255, 161, 0, 0.25) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 60% 20%,
            rgba(255, 161, 0, 0.2) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 10% 60%,
            rgba(255, 161, 0, 0.15) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 90% 40%,
            rgba(255, 161, 0, 0.15) 0%,
            transparent 40%
        );
}

.admin-body.theme-dark .admin-sidebar-header {
    background: rgba(255, 161, 0, 0.1);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.admin-body.theme-dark .admin-sidebar-logo {
    color: #ffffff;
}

.admin-body.theme-dark .admin-sidebar-logo:hover {
    color: #ffffff;
}

.admin-body.theme-dark .admin-sidebar-close {
    color: rgba(255, 255, 255, 0.7);
}

.admin-body.theme-dark .admin-sidebar-close:hover {
    color: #ffffff;
}

.admin-body.theme-dark .admin-sidebar-link {
    color: rgba(255, 255, 255, 0.7);
}

.admin-body.theme-dark .admin-sidebar-link:hover {
    color: #ffffff;
    background: transparent;
}

.admin-body.theme-dark .admin-sidebar-link:hover .admin-sidebar-icon,
.admin-body.theme-dark .admin-sidebar-link:hover .admin-sidebar-text {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.admin-body.theme-dark .admin-sidebar-link.active {
    background: rgb(255, 161, 0);
    color: #ffffff;
}

.admin-body.theme-dark .admin-sidebar-link.active::before {
    left: -100%;
}

.admin-body.theme-dark .admin-sidebar-link.active:hover::before {
    left: 0;
}

.admin-body.theme-dark .admin-sidebar-link.active .admin-sidebar-icon,
.admin-body.theme-dark .admin-sidebar-link.active .admin-sidebar-text {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.admin-body.theme-dark .admin-sidebar-link.active:hover .admin-sidebar-icon,
.admin-body.theme-dark .admin-sidebar-link.active:hover .admin-sidebar-text {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.admin-body.theme-dark .admin-sidebar::-webkit-scrollbar-track {
    background: #0d1526;
}

.admin-body.theme-dark .admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 161, 0, 0.3);
}

.admin-body.theme-dark .admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 161, 0, 0.5);
}

.admin-body.theme-dark .admin-header {
    background: #1e1e1e;
    border-bottom-color: #333;
    color: #ffffff;
}

.admin-body.theme-dark .admin-header-title {
    color: #ffffff;
}

.admin-body.theme-dark .admin-main-content {
    background: #1a1a1a;
    color: #ffffff;
}

.admin-body.theme-dark .admin-content-container h1 {
    color: #ffffff;
}

.admin-body.theme-dark .admin-content-container .text-muted {
    color: #aaa;
}

.admin-body.theme-dark .admin-header-link {
    color: #ffffff;
}

.admin-body.theme-dark .admin-header-link:hover {
    color: rgb(255, 161, 0);
}

.admin-body.theme-dark .admin-header-theme-btn {
    border-color: #444;
    color: #ffffff;
}

.admin-body.theme-dark .admin-header-theme-btn:hover {
    border-color: rgb(255, 161, 0);
}

.admin-body.theme-dark .admin-profile-btn {
    border: none;
    background: transparent;
}

.admin-body.theme-dark .card {
    background: #1e1e1e;
    border-color: #333;
    color: #ffffff;
}

.admin-body.theme-dark .card-header {
    background: #252525;
    border-bottom-color: #333;
    color: #ffffff;
}

.admin-body.theme-dark .text-muted {
    color: #aaa !important;
}

/* Keep card colors same in dark theme - colors remain the same as light theme */

.admin-body.theme-dark .admin-subscribe-table {
    background: #1e1e1e;
}

.admin-body.theme-dark .admin-subscribe-table thead {
    background: rgba(255, 161, 0, 0.15);
}

.admin-body.theme-dark .admin-subscribe-table thead th {
    color: #ffffff;
    border-bottom-color: rgba(255, 161, 0, 0.3);
    background: rgba(255, 161, 0, 0.15);
}

.admin-body.theme-dark .admin-subscribe-table tbody tr {
    background: #1e1e1e;
    border-bottom-color: #333;
}

.admin-body.theme-dark .admin-subscribe-table tbody tr:hover {
    background: rgba(255, 161, 0, 0.12);
}

.admin-body.theme-dark .admin-subscribe-table tbody td {
    color: #ffffff;
    border-bottom-color: #333;
}

.admin-body.theme-dark .admin-subscribe-table tbody tr:hover td {
    color: #ffffff;
}

/* Dark Theme - Dashboard Cards */
.admin-body.theme-dark .admin-dashboard-stat-card {
    background: #1e1e1e;
    border-color: #333;
}

.admin-body.theme-dark .admin-dashboard-stat-label,
.admin-body.theme-dark .admin-dashboard-stat-value,
.admin-body.theme-dark .admin-dashboard-stat-link {
    color: #ffffff;
}

/* Dark Theme - Dashboard Tables */
.admin-body.theme-dark .admin-dashboard-table-card {
    background: #1e1e1e;
    border-color: #333;
}

.admin-body.theme-dark .admin-dashboard-table-header {
    background: #252525;
    border-bottom-color: #333;
}

.admin-body.theme-dark .admin-dashboard-table-title {
    color: #ffffff;
}

.admin-body.theme-dark .admin-dashboard-table {
    background: #1e1e1e;
}

.admin-body.theme-dark .admin-dashboard-table thead {
    background: rgba(255, 161, 0, 0.1);
}

.admin-body.theme-dark .admin-dashboard-table thead th {
    color: #ffffff;
    border-bottom-color: rgba(255, 161, 0, 0.2);
    background: rgba(255, 161, 0, 0.1);
}

.admin-body.theme-dark .admin-dashboard-table tbody tr {
    background: #252525;
    border-bottom-color: #333;
}

.admin-body.theme-dark .admin-dashboard-table tbody tr:hover {
    background: rgba(255, 161, 0, 0.12);
}

.admin-body.theme-dark .admin-dashboard-table tbody td {
    color: #000;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .admin-sidebar {
        transform: translateX(-100%);
        overflow-y: auto;
    }

    .admin-sidebar.active {
        transform: translateX(0);
    }

    .admin-sidebar.collapsed {
        width: 260px;
    }

    .admin-main-wrapper {
        margin-left: 0;
        height: 100vh;
    }

    .admin-body.sidebar-collapsed .admin-main-wrapper {
        margin-left: 0;
    }

    .admin-header {
        left: 0;
    }

    .admin-body.sidebar-collapsed .admin-header {
        left: 0;
    }

    .admin-header-title {
        font-size: 1.1rem;
    }

    .admin-header-content {
        padding: 0.75rem 1rem;
        height: 56px;
    }

    .admin-main-content {
        margin-top: 0px;
        height: calc(100vh - 56px);
    }
}

@media (max-width: 767px) {
    .admin-header-content {
        padding: 0.75rem 1rem;
    }

    .admin-main-content {
        padding: 1rem;
    }

    .admin-sidebar {
        width: 240px;
    }

    .admin-profile-name,
    .admin-profile-arrow {
        display: none !important;
    }

    .admin-header-link span {
        display: none;
    }
}

@media (max-width: 575px) {
    .admin-header-title {
        font-size: 1rem;
    }

    .admin-sidebar-logo-text {
        font-size: 1rem;
    }

    .admin-sidebar-link {
        padding: 0.75rem 1rem;
    }

    .admin-sidebar-text {
        font-size: 0.9rem;
    }

    .admin-dashboard-card .card-body h2 {
        font-size: 1.75rem;
    }

    .admin-dashboard-card .card-body h5 {
        font-size: 0.85rem;
    }

    .admin-profile-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .admin-subscribe-table {
        font-size: 0.8rem;
    }

    .admin-subscribe-table thead th {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }

    .admin-subscribe-table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }

    .admin-view-all-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .admin-content-container {
        padding-top: 0;
    }

    .admin-content-container h1 {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .admin-content-container .text-muted {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-hero-section {
    background: linear-gradient(
        135deg,
        rgba(255, 161, 0, 0.1) 0%,
        rgba(247, 71, 15, 0.1) 50%,
        rgba(238, 17, 98, 0.1) 100%
    );
    padding: 4rem 0 3rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,161,0,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.contact-hero-section .container {
    position: relative;
    z-index: 1;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0d1526;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content-section {
    background: #f8f9fa;
}

.contact-form-card,
.contact-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100%;
}

.contact-form-card:hover,
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0d1526;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid rgb(255, 161, 0);
    display: flex;
    align-items: center;
}

.contact-section-title i {
    color: rgb(255, 161, 0);
}

.contact-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-input {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-input:focus {
    border-color: rgb(255, 161, 0);
    background: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(255, 161, 0, 0.15);
    outline: none;
}

.contact-input::placeholder {
    color: #999;
}

.contact-submit-btn {
    background: rgb(255, 161, 0);
    color: #ffffff;
    border: none;
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        89deg,
        rgb(255, 161, 0) 11.51%,
        rgb(247, 71, 15) 52.88%,
        rgb(238, 17, 98) 92.44%
    );
    transition: left 0.4s ease;
    z-index: 0;
}

.contact-submit-btn span,
.contact-submit-btn i {
    position: relative;
    z-index: 1;
}

.contact-submit-btn:hover::before {
    left: 0;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 161, 0, 0.4);
    color: #ffffff;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        rgb(255, 161, 0) 0%,
        rgb(247, 71, 15) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 1.25rem;
}

.contact-info-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d1526;
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-info-content a {
    color: rgb(255, 161, 0);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-info-content a:hover {
    color: rgb(247, 71, 15);
    text-decoration: underline;
}

.contact-map-section {
    background: #ffffff;
}

.contact-map-container {
    height: 450px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 2rem;
    }

    .contact-section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .contact-hero-section {
        padding: 3rem 0 2rem;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-section-title {
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
    }

    .contact-info-item {
        padding: 1rem;
        gap: 1rem;
    }

    .contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .contact-map-container {
        height: 350px;
    }
}

@media (max-width: 575px) {
    .contact-hero-title {
        font-size: 1.75rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 1.25rem;
    }

    .contact-section-title {
        font-size: 1.25rem;
    }

    .contact-submit-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }

    .contact-map-container {
        height: 300px;
    }
}

/* ========================================
   Global Page Hero Section (All Pages Except Home)
   ======================================== */
.page-hero-section {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    height: 60vh;
    min-height: 500px;
    overflow-x: hidden;
    overflow-y: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    left: 0;
    right: 0;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.page-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom left,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 0;
}

.page-hero-content .container-fluid {
    width: 100%;
    max-width: 100%;
    padding-bottom: 5rem;
    padding-left: 4rem;
    padding-right: 4rem;
    margin: 0;
}

.page-hero-content .row {
    margin: 0;
}

.page-hero-content .col-lg-6,
.page-hero-content .col-md-8,
.page-hero-content .col-12 {
    padding-left: 0;
    padding-right: 0;
}

.page-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow:
        3px 3px 15px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.page-hero-description {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.75;
    margin-bottom: 0;
    text-shadow:
        2px 2px 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.4);
    max-width: 750px;
    font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 1399px) {
    .page-hero-section {
        height: 55vh;
        min-height: 480px;
    }

    .page-hero-title {
        font-size: 3rem;
    }

    .page-hero-description {
        font-size: 1.2rem;
    }

    .page-hero-content .container-fluid {
        padding-bottom: 4.5rem;
        padding-left: 3.5rem;
        padding-right: 3.5rem;
    }
}

@media (max-width: 1199px) {
    .page-hero-section {
        height: 50vh;
        min-height: 450px;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .page-hero-description {
        font-size: 1rem;
        max-width: 700px;
    }

    .page-hero-content .container-fluid {
        padding-bottom: 4rem;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (max-width: 991px) {
    .page-hero-section {
        height: 45vh;
        min-height: 400px;
    }

    .page-hero-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .page-hero-description {
        font-size: 1.1rem;
        line-height: 1.65;
        max-width: 650px;
    }

    .page-hero-content .container-fluid {
        padding-bottom: 3.5rem;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (max-width: 767px) {
    .page-hero-section {
        height: 40vh;
        min-height: 350px;
    }

    .page-hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .page-hero-description {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .page-hero-content .container-fluid {
        padding-bottom: 3rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 575px) {
    .page-hero-section {
        height: 35vh;
        min-height: 300px;
    }

    .page-hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.25;
    }

    .page-hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .page-hero-content .container-fluid {
        padding-bottom: 2.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 400px) {
    .page-hero-section {
        min-height: 280px;
    }

    .page-hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .page-hero-description {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .page-hero-content .container-fluid {
        padding-bottom: 2rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* ========================================
   Page Breadcrumb Section (Below Hero)
   ======================================== */
.page-breadcrumb-section {
    background: #0d1526;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 161, 0, 0.2);
}

.page-breadcrumb-section .container-fluid {
    padding-left: 4rem;
    padding-right: 4rem;
}

.page-breadcrumb-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
}

.page-breadcrumb {
    margin: 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #666;
    padding: 0 0.5rem;
    font-weight: 600;
}

.breadcrumb-link {
    color: rgb(255, 161, 0);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    overflow: hidden;
}

.breadcrumb-link::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        89deg,
        rgb(255, 161, 0) 11.51%,
        rgb(247, 71, 15) 52.88%,
        rgb(238, 17, 98) 92.44%
    );
    transition: left 0.3s ease;
    z-index: -1;
}

.breadcrumb-link:hover {
    color: #ffffff;
    padding-left: 0.75rem;
}

.breadcrumb-link:hover::before {
    left: 0;
}

.breadcrumb-link span {
    position: relative;
    z-index: 1;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 400;
}

.page-share {
    display: flex;
    align-items: center;
}

.share-link {
    color: rgb(255, 161, 0);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0.75rem;
    overflow: hidden;
}

.share-link::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        89deg,
        rgb(255, 161, 0) 11.51%,
        rgb(247, 71, 15) 52.88%,
        rgb(238, 17, 98) 92.44%
    );
    transition: left 0.3s ease;
    z-index: -1;
}

.share-link:hover {
    color: #ffffff;
    padding-left: 1rem;
}

.share-link:hover::before {
    left: 0;
}

.share-link span,
.share-link i {
    position: relative;
    z-index: 1;
}

.share-icon {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.share-link:hover .share-icon {
    transform: translateX(3px);
}

/* Responsive Styles for Breadcrumb */
@media (max-width: 1199px) {
    .page-breadcrumb-section {
        padding: 0.875rem 0;
    }

    .page-breadcrumb-section .container-fluid {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .breadcrumb-item {
        font-size: 0.9rem;
    }

    .share-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 991px) {
    /* iPad Pro and Tablet */
    .page-breadcrumb-section .container-fluid {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .page-breadcrumb-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
    }

    .page-share {
        margin-left: auto;
    }

    .share-link {
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 768px) {
    /* iPad */
    .page-breadcrumb-section {
        padding: 0.75rem 0;
    }

    .page-breadcrumb-section .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .breadcrumb-item {
        font-size: 0.85rem;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 0.4rem;
    }

    .share-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    /* Phone */
    .page-breadcrumb-section {
        padding: 0.625rem 0;
    }

    .page-breadcrumb-section .container-fluid {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .page-breadcrumb-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }

    .page-breadcrumb {
        flex: 1;
        min-width: 0;
    }

    .page-share {
        margin-left: auto;
        flex-shrink: 0;
    }

    .breadcrumb-item {
        font-size: 0.8rem;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 0.3rem;
        font-size: 0.75rem;
    }

    .breadcrumb-link {
        padding: 0.2rem 0.25rem;
    }

    .breadcrumb-link:hover {
        padding-left: 0.5rem;
    }

    .share-link {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
        white-space: nowrap;
    }

    .share-link:hover {
        padding-left: 0.75rem;
    }

    .share-icon {
        font-size: 0.75rem;
    }
}

/* ========================================
   Share Modal Styles
   ======================================== */
.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(1px);
}

#shareModal .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
}

.share-modal-dialog {
    max-width: 500px;
    margin: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100% - 2rem);
}

.share-modal-dialog .modal-content {
    margin: auto;
}

.share-modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin: auto;
}

.share-modal-header {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d1526;
    margin: 0;
    flex: 1;
}

.share-modal-close {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: #666;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    margin-left: auto;
    order: 2;
}

.share-modal-close i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.share-modal-close:hover {
    opacity: 1;
    background: #f0f0f0;
    color: #333;
}

.share-modal-close:hover i {
    transform: rotate(90deg);
}

.share-modal-body {
    padding: 1.5rem;
    background: #ffffff;
}

/* Link Preview */
.share-link-preview {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
}

.share-preview-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.share-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.share-preview-content {
    flex: 1;
    min-width: 0;
}

.share-preview-url {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.25rem;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.share-preview-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0d1526;
    margin: 0;
}

/* Social Icons Section */
.share-social-section {
    margin-bottom: 1.5rem;
}

.share-social-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.share-social-icons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.share-social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    background: #ffffff;
    color: #333;
}

.share-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-facebook {
    color: #1877f2;
    border-color: #1877f2;
}

.share-facebook:hover {
    background: #1877f2;
    color: #ffffff;
}

.share-twitter {
    color: #000000;
    border-color: #000000;
}

.share-twitter:hover {
    background: #000000;
    color: #ffffff;
}

.share-instagram {
    color: #e4405f;
    border-color: #e4405f;
}

.share-instagram:hover {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
    color: #ffffff;
    border-color: transparent;
}

.share-email {
    color: #666;
    border-color: #666;
}

.share-email:hover {
    background: #666;
    color: #ffffff;
}

.share-whatsapp {
    color: #25d366;
    border-color: #25d366;
}

.share-whatsapp:hover {
    background: #25d366;
    color: #ffffff;
}

/* Copy Link Section */
.share-copy-section {
    margin-top: 1.5rem;
}

.share-copy-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.share-copy-wrapper {
    display: flex;
    gap: 0.5rem;
}

.share-copy-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
    background: #f8f9fa;
    overflow: hidden;
    text-overflow: ellipsis;
}

.share-copy-input:focus {
    outline: none;
    border-color: rgb(255, 161, 0);
    background: #ffffff;
}

.share-copy-btn {
    background: rgb(255, 161, 0);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-copy-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        89deg,
        rgb(255, 161, 0) 11.51%,
        rgb(247, 71, 15) 52.88%,
        rgb(238, 17, 98) 92.44%
    );
    transition: left 0.3s ease;
    z-index: 0;
}

.share-copy-btn span,
.share-copy-btn i {
    position: relative;
    z-index: 1;
}

.share-copy-btn:hover::before {
    left: 0;
}

.share-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 161, 0, 0.4);
    color: #ffffff;
}

/* Responsive Styles for Share Modal */
@media (max-width: 991px) {
    /* iPad Pro and Tablet */
    .share-modal-dialog {
        max-width: 450px;
        margin: 0.75rem auto;
        min-height: calc(100% - 1.5rem);
    }

    .share-modal-header {
        padding: 1rem 1.25rem;
    }

    .share-modal-title {
        font-size: 1.35rem;
    }

    .share-modal-body {
        padding: 1.25rem;
    }

    .share-link-preview {
        padding: 0.875rem;
    }

    .share-preview-image {
        width: 70px;
        height: 70px;
    }

    .share-social-icon {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    /* iPad */
    .share-modal-dialog {
        max-width: 400px;
        margin: 0.75rem auto;
        min-height: calc(100% - 1.5rem);
    }

    .share-modal-header {
        padding: 0.875rem 1rem;
    }

    .share-modal-title {
        font-size: 1.25rem;
    }

    .share-modal-body {
        padding: 1rem;
    }

    .share-link-preview {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .share-preview-image {
        width: 60px;
        height: 60px;
    }

    .share-preview-url {
        font-size: 0.8rem;
    }

    .share-preview-title {
        font-size: 0.95rem;
    }

    .share-social-icons {
        gap: 0.625rem;
    }

    .share-social-icon {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .share-copy-wrapper {
        flex-direction: column;
    }

    .share-copy-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    /* Phone */
    .share-modal-dialog {
        max-width: 90%;
        margin: 0.5rem auto;
        min-height: auto;
        max-height: 90vh;
        overflow-y: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .share-modal-content {
        max-height: 90vh;
        overflow-y: auto;
        margin: auto;
    }

    .share-modal-header {
        padding: 0.75rem 1rem;
        position: sticky;
        top: 0;
        background: #ffffff;
        z-index: 10;
        border-radius: 12px 12px 0 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .share-modal-title {
        font-size: 1.1rem;
        flex: 1;
    }

    .share-modal-close {
        width: 28px;
        height: 28px;
        font-size: 1.25rem;
        margin-left: auto;
        order: 2;
    }

    .share-modal-body {
        padding: 0.875rem;
    }

    .share-link-preview {
        padding: 0.625rem;
        gap: 0.625rem;
        flex-direction: row;
    }

    .share-preview-image {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .share-preview-url {
        font-size: 0.7rem;
    }

    .share-preview-title {
        font-size: 0.85rem;
    }

    .share-social-title,
    .share-copy-title {
        font-size: 0.8rem;
        margin-bottom: 0.625rem;
    }

    .share-social-icons {
        gap: 0.5rem;
        justify-content: center;
    }

    .share-social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
        border-width: 1.5px;
    }

    .share-copy-input {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .share-copy-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        min-width: 80px;
    }
}

/* ========================================
   Global Scrollbar Styling - Removed (Using Default Browser Scrollbar)
   ======================================== */

/* ========================================
   Contact Assistance Section with Fixed Background
   ======================================== */
.contact-assistance-fixed-section {
    position: relative;
    min-height: 600px;
    padding: 5rem 0;
    overflow: hidden;
    margin-top: 3rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #0d1526;
}

.contact-assistance-fixed-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 21, 38, 0.5);
    z-index: 1;
}

.assistance-fixed-content {
    position: relative;
    z-index: 2;
}

.contact-assistance-fixed-section .assistance-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(255, 161, 0);
    position: relative;
    z-index: 2;
    line-height: 1.3;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 1rem;
}

@media (max-width: 575px) {
    .contact-assistance-fixed-section .assistance-title {
        font-size: 1.5rem;
    }

    .contact-assistance-fixed-section .assistance-subtitle {
        font-size: 0.8rem;
    }

    .contact-assistance-fixed-section .assistance-divider-line {
        width: 60px;
        height: 2px;
    }
}

.contact-assistance-fixed-section .assistance-divider-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgb(255, 161, 0) 50%,
        transparent 100%
    );
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.contact-assistance-fixed-section .assistance-subtitle {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 400;
    position: relative;
    z-index: 2;
    line-height: 1.5;
    margin: 0 auto;
    text-align: center;
    max-width: 700px;
}

.assistance-map-container-fixed {
    height: 500px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    background: #ffffff;
    position: relative;
}

/* ========================================
   Contact Assistance Section (Old - Keep for reference)
   ======================================== */
.contact-assistance-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.assistance-header {
    margin-bottom: 3rem;
}

.contact-assistance-fixed-section .assistance-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(255, 161, 0);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    line-height: 1.3;
    text-align: center;
}

.assistance-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0d1526;
    margin-bottom: 1rem;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.assistance-title::after {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
}

.assistance-title {
    text-decoration: none !important;
    border-bottom: none !important;
}

@keyframes dotPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.contact-assistance-fixed-section .assistance-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.assistance-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.assistance-map-container {
    height: 500px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    background: #ffffff;
}

.assistance-contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    min-height: 500px;
    height: auto;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.assistance-contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0d1526;
    margin-bottom: 2rem;
    font-style: italic;
}

.assistance-contact-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.assistance-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.assistance-contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        rgb(255, 161, 0) 0%,
        rgb(247, 71, 15) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 1.25rem;
}

.assistance-contact-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d1526;
    margin-bottom: 0.5rem;
}

.assistance-contact-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.assistance-contact-content a {
    color: rgb(255, 161, 0);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.assistance-contact-content a:hover {
    color: rgb(247, 71, 15);
    text-decoration: underline;
}

.assistance-view-map {
    color: rgb(255, 161, 0) !important;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.assistance-view-map:hover {
    color: rgb(247, 71, 15) !important;
}

/* Responsive Styles for Fixed Assistance Section */
/* All devices - Map fixed height, card auto height */
.assistance-map-container-fixed {
    height: 500px;
}

.assistance-contact-card {
    min-height: 500px;
    height: auto;
}

/* iPad Pro and Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .contact-assistance-fixed-section {
        padding: 4rem 0;
        margin-top: 2rem;
    }

    .assistance-contact-card {
        padding: 2rem;
    }
}

/* iPad (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .contact-assistance-fixed-section .row {
        display: flex;
        flex-wrap: wrap;
    }

    .contact-assistance-fixed-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Tablet and below (max-width: 991px) */
@media (max-width: 991px) {
    .contact-assistance-fixed-section {
        padding: 4rem 0;
        margin-top: 2rem;
    }

    .assistance-contact-card {
        padding: 2rem;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .contact-assistance-fixed-section {
        padding: 3rem 0;
        margin-top: 2rem;
    }

    .assistance-contact-card {
        padding: 1.5rem;
    }

    .assistance-contact-title {
        font-size: 1.75rem;
    }

    .assistance-contact-item {
        gap: 1rem;
    }

    .assistance-contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .contact-assistance-fixed-section {
        padding: 2.5rem 0;
        margin-top: 1.5rem;
    }

    .assistance-contact-card {
        padding: 1.25rem;
    }

    .assistance-contact-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .assistance-contact-list {
        gap: 1.5rem;
    }

    .assistance-contact-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .assistance-contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Responsive Styles for Old Assistance Section */
@media (max-width: 991px) {
    .contact-assistance-section {
        padding: 3rem 0;
    }

    .assistance-title {
        font-size: 2.5rem;
    }

    .assistance-subtitle {
        font-size: 1rem;
    }

    .assistance-map-wrapper {
        height: 400px;
    }

    .assistance-contact-card {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .contact-assistance-section {
        padding: 2.5rem 0;
    }

    .assistance-title {
        font-size: 2rem;
    }

    .assistance-subtitle {
        font-size: 0.95rem;
    }

    .assistance-map-wrapper {
        height: 350px;
    }

    .assistance-map-bg-img {
        filter: blur(6px);
    }

    .assistance-contact-card {
        padding: 1.5rem;
    }

    .assistance-contact-title {
        font-size: 1.75rem;
    }

    .assistance-contact-item {
        gap: 1rem;
    }

    .assistance-contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .contact-assistance-section {
        padding: 2rem 0;
    }

    .assistance-title {
        font-size: 1.75rem;
    }

    .assistance-subtitle {
        font-size: 0.9rem;
    }

    .assistance-map-wrapper {
        height: 300px;
    }

    .assistance-map-bg-img {
        filter: blur(5px);
    }

    .assistance-contact-card {
        padding: 1.25rem;
    }

    .assistance-contact-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .assistance-contact-list {
        gap: 1.5rem;
    }

    .assistance-contact-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .assistance-contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ========================================
   Contact Information Card Section (Common Component)
   ======================================== */
.contact-info-card-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
    display: flex;
    align-items: center;
}

/* Static Background Pattern (No Animation) */
.contact-info-card-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(255, 161, 0, 0.05) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(247, 71, 15, 0.05) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(238, 17, 98, 0.04) 0%,
            transparent 50%
        );
    pointer-events: none;
    z-index: 0;
}

.contact-info-card-wrapper {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 3.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d1526;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
    font-family: "Playfair Display", serif;
    font-style: italic;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.contact-info-card-intro {
    font-size: 1.05rem;
    color: #0d1526;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.contact-info-card-phone {
    margin-bottom: 1.75rem;
}

.contact-info-label {
    font-size: 1.05rem;
    color: #0d1526;
    font-weight: 500;
    margin-right: 0.5rem;
}

.contact-info-phone-number {
    font-size: 1.25rem;
    color: #0d1526;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.contact-info-phone-number:hover {
    color: rgb(255, 161, 0);
    text-decoration: none;
    transform: translateX(3px);
}

.contact-info-card-separator {
    font-size: 1.1rem;
    color: #0d1526;
    font-weight: 600;
    margin: 2rem 0;
    position: relative;
}

.contact-info-card-separator::before,
.contact-info-card-separator::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: #ddd;
}

.contact-info-card-separator::before {
    left: calc(50% - 100px);
}

.contact-info-card-separator::after {
    right: calc(50% - 100px);
}

.contact-info-card-email {
    margin-top: 0;
}

.contact-info-email-link {
    font-size: 1.15rem;
    color: rgb(255, 161, 0);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.3px;
}

.contact-info-email-link:hover {
    color: rgb(247, 71, 15);
    text-decoration: underline;
    transform: translateX(3px);
}

/* Responsive Contact Info Card */
@media (max-width: 991px) {
    .contact-info-card-section {
        padding: 2.5rem 0;
    }

    .contact-info-card-wrapper {
        padding: 2.5rem 3rem;
        max-width: 850px;
    }

    .contact-info-card-title {
        font-size: 2.1rem;
    }

    .contact-info-card-intro {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .contact-info-card-section {
        padding: 2rem 0;
    }

    .contact-info-card-wrapper {
        padding: 2.5rem 2rem;
        border-radius: 16px;
        max-width: 100%;
    }

    .contact-info-card-title {
        font-size: 1.85rem;
    }

    .contact-info-card-intro {
        font-size: 0.98rem;
        margin-bottom: 1.75rem;
    }

    .contact-info-phone-number {
        font-size: 1.1rem;
    }

    .contact-info-email-link {
        font-size: 1.05rem;
    }

    .contact-info-card-separator::before,
    .contact-info-card-separator::after {
        width: 60px;
    }

    .contact-info-card-separator::before {
        left: calc(50% - 80px);
    }

    .contact-info-card-separator::after {
        right: calc(50% - 80px);
    }
}

@media (max-width: 575px) {
    .contact-info-card-section {
        padding: 1.5rem 0;
    }

    .contact-info-card-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 14px;
        margin: 0 1rem;
    }

    .contact-info-card-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-info-card-intro {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.7;
    }

    .contact-info-card-phone {
        margin-bottom: 1.25rem;
    }

    .contact-info-label {
        font-size: 0.9rem;
    }

    .contact-info-phone-number {
        font-size: 0.95rem;
        display: block;
        margin-top: 0.25rem;
    }

    .contact-info-email-link {
        font-size: 0.92rem;
        word-break: break-all;
    }

    .contact-info-card-separator {
        font-size: 0.95rem;
        margin: 1.25rem 0;
    }

    .contact-info-card-separator::before,
    .contact-info-card-separator::after {
        width: 40px;
    }

    .contact-info-card-separator::before {
        left: calc(50% - 60px);
    }

    .contact-info-card-separator::after {
        right: calc(50% - 60px);
    }
}

/* ==============================
   TERMS & CONDITIONS – LUXURY UI
   Orange + White Theme
============================== */

.terms-kp-terms {
    background: linear-gradient(180deg, #fff7ed, #ffffff);
    border-radius: 24px;
    padding: 60px 55px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}

/* Decorative Top Bar */
.terms-kp-terms::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, #f97316, #fb923c);
}

/* ================= Header ================= */

.terms-kp-terms-header {
    text-align: center;
    margin-bottom: 45px;
}

.terms-kp-terms-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.terms-kp-terms-header h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #f97316;
    margin: 14px auto 0;
    border-radius: 10px;
}

.terms-kp-terms-header p {
    max-width: 720px;
    margin: 18px auto 0;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

/* ================= Download Button ================= */

.terms-kp-terms-download {
    text-align: center;
    margin-bottom: 55px;
}

.terms-kp-terms-download a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff;
    padding: 14px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
    transition: all 0.35s ease;
}

.terms-kp-terms-download a:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.55);
}

/* ================= Body ================= */

.terms-kp-terms-body {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Each Term Card */
.terms-kp-terms-body h3 {
    background: #ffffff;
    padding: 18px 22px 18px 55px;
    border-radius: 18px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #111;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Number Badge Style */
.terms-kp-terms-body h3::before {
    content: attr(data-count);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Paragraph inside card */
.terms-kp-terms-body p {
    margin: -10px 10px 0 45px;
    padding: 0 15px 18px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

/* ================= Footer Date ================= */

.terms-kp-terms-date {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    font-style: italic;
}

/* ================= Responsive ================= */

@media (max-width: 992px) {
    .terms-kp-terms {
        padding: 50px 40px;
    }

    .terms-kp-terms-header h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .terms-kp-terms {
        padding: 40px 28px;
    }

    .terms-kp-terms-header h1 {
        font-size: 2rem;
    }

    .terms-kp-terms-body h3 {
        font-size: 1.05rem;
        padding-left: 50px;
    }

    .terms-kp-terms-body p {
        margin-left: 40px;
    }
}

@media (max-width: 480px) {
    .terms-kp-terms {
        padding: 30px 18px;
        border-radius: 16px;
    }

    .terms-kp-terms-header h1 {
        font-size: 1.7rem;
    }

    .terms-kp-terms-download a {
        padding: 12px 26px;
        font-size: 0.9rem;
    }
}

/* Privacy Policy */
.privacy-hero {
    background: linear-gradient(135deg, #ff7a18, #ff9f1c);
    color: #fff;
    padding: 60px 0;
}

.privacy-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.privacy-content {
    background: #f9f9f9;
}

.privacy-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.privacy-card h3 {
    color: #ff7a18;
    margin-top: 30px;
    font-weight: 600;
}

.privacy-card ul {
    padding-left: 20px;
}

.privacy-card ul li {
    margin-bottom: 8px;
}

.intro-text {
    font-size: 16px;
    color: #444;
}

.last-updated {
    margin-top: 30px;
    color: #666;
}

.btn-orange {
    background: #ff7a18;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn-orange:hover {
    background: #e96b10;
    color: #fff;
}

.kp-hero {
    background: linear-gradient(135deg, #ff7a18, #ff9f1c);
    padding: 60px 0;
    color: #fff;
}

.kp-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.kp-content {
    background: #f9f9f9;
}

.kp-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.kp-card h3 {
    color: #ff7a18;
    margin-top: 28px;
    font-weight: 600;
}

.kp-card ul {
    padding-left: 20px;
}

.kp-card ul li {
    margin-bottom: 8px;
}

.kp-intro {
    font-size: 16px;
    color: #444;
}

.kp-date {
    margin-top: 30px;
    color: #666;
}
.kp-btn-orange {
    background: #ff7a18;
    color: #fff;
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hover */
.kp-btn-orange:hover {
    background: #e86a10;
    color: #fff;
}
.kp-btn-orange .btn-icon {
    display: none;
}

.kp-btn-orange .btn-text {
    display: inline;
}
@media (max-width: 992px) {
    /* tablet & below */
    .kp-btn-orange {
        padding: 10px;
        width: 50px;
        justify-content: center;
        text-indent: -9999px;
        overflow: hidden;
        position: relative;
    }
    .kp-btn-orange .btn-text {
        display: none;
    }

    .kp-btn-orange .btn-icon {
        display: inline-block;
        font-size: 18px;
    }
    .kp-btn-orange {
        width: 50px;
        height: 50px;
        padding: 0;
        text-align: center;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Add download icon via ::after */
    .kp-btn-orange::after {
        content: "⬇";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-indent: 0;
        font-size: 18px;
        color: #fff;
    }
}

/* Optional: Mobile only smaller size */
@media (max-width: 576px) {
    .kp-btn-orange {
        width: 45px;
        height: 45px;
        padding: 0;
    }

    .kp-btn-orange::after {
        font-size: 16px;
    }
}

/* FAQ css */

/* FAQ SECTION */
.faq-section {
    background: #f9f9f9;
}

.faq-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* ACCORDION */
.custom-accordion .accordion-item {
    border: 1px solid #ffd2b0;
    border-radius: 10px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
    border-color: #ff7a18;
    box-shadow: 0 8px 18px rgba(255, 122, 24, 0.15);
}

.custom-accordion .accordion-button {
    background: #ffffff;
    color: #333;
    font-weight: 600;
    padding: 18px 22px;
    box-shadow: none;
    border: none;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.custom-accordion .accordion-button::after {
    content: "+";
    font-size: 26px;
    font-weight: bold;
    color: #ff7a18;
    background: none;
}

/* MINUS ICON */
.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: #fff5ec;
    color: #ff7a18;
    border-bottom: 1px solid #ffd2b0;
}

/* ANSWER */
.custom-accordion .accordion-body {
    padding: 20px 22px;
    background: #ffffff;
    color: #555;
    line-height: 1.7;
}

/* cancelation */

/* HERO */
.cp-hero {
    background: linear-gradient(135deg, #ff7a18, #ff9f1c);
    padding: 60px 0;
    color: #fff;
}

.cp-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

/* SECTION */
.cp-section {
    background: #f9f9f9;
}

/* CARD */
.cp-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* HEADINGS */
.cp-card h3 {
    color: #ff7a18;
    margin-top: 30px;
    font-weight: 600;
}

/* INTRO */
.cp-intro {
    font-size: 16px;
    color: #444;
}

/* TABLE */
.cp-table-wrapper {
    overflow-x: auto;
    margin-top: 15px;
}

.cp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.cp-table th {
    background: #ff7a18;
    color: #fff;
    padding: 12px;
    text-align: left;
}

.cp-table td {
    border: 1px solid #ffd2b0;
    padding: 12px;
}

/* DATE */
.cp-date {
    margin-top: 30px;
    color: #666;
}

/* about */

.about-image-wrapper {
    padding-right: 40px;
}

/* Main big image */
.about-main-img img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* Overlay image */
.about-overlay-img {
    position: absolute;
    right: -30px;
    bottom: 60px;
    background: #fff;
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.about-overlay-img img {
    width: 280px;
    border-radius: 14px;
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .about-overlay-img {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
    }

    .about-overlay-img img {
        width: 100%;
    }
}

.about-hero h1 {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.about-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* IMAGES */
.about-img {
    border-radius: 16px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.about-img:hover {
    transform: translateY(-6px);
}

/* INTRO */
.about-intro h2,
.about-story h2 {
    color: #ff7a18;
    font-weight: 800;
}

.about-intro p,
.about-story p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* HIGHLIGHTS */
.about-highlights {
    background: #fff5ec;
    padding: 80px 0;
}

.highlight-card {
    position: relative;
    padding: 40px 25px;
    border-radius: 18px;
    color: #fff;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

/* Background image */
.highlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/hero_section_img2.jpg") center/cover no-repeat;
    z-index: 1;
    transition: transform 0.5s ease;
}

.highlight-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.65)
    );
    z-index: 2;
}

.highlight-card h3,
.highlight-card p {
    position: relative;
    z-index: 3;
}

.highlight-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.highlight-card p {
    font-size: 15px;
    opacity: 0.95;
}

.highlight-card:hover {
    transform: translateY(-8px);
}

.highlight-card:hover::before {
    transform: scale(1.08);
}

/* MISSION VISION */
.about-mv {
    background: #f9f9f9;
    padding: 60px 0;
}

.our-history-section {
    background: #faf7f2;
    padding: 100px 0;
    font-family: "Poppins", sans-serif;
}

/* LEFT IMAGES */
.history-main-img img {
    width: 100%;
    border-radius: 14px;
}

.history-overlay-img {
    position: absolute;
    bottom: -60px;
    right: 40px;
    background: #fff;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.history-overlay-img img {
    width: 260px;
    height: auto;
    border-radius: 12px;
}

/* RIGHT CONTENT */
.history-content {
    padding-left: 40px;
}

.history-subtitle {
    letter-spacing: 3px;
    font-size: 13px;
    color: #e68d1e;
    font-weight: 500;
}

.history-content h2 {
    font-size: 42px;
    font-weight: 600;
    margin: 10px 0 25px;
    color: #222;
}

.history-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 18px;
}

/* SIGNATURE */
.history-signature {
    margin-top: 30px;
    font-family: "Dancing Script", cursive;
    font-size: 26px;
    color: #333;
}

.mv-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.mv-card h3 {
    color: #ff7a18;
}

/* CTA */
.about-cta {
    background: linear-gradient(135deg, #ff7a18, #ff9f1c);
    padding: 60px 0;
    color: #fff;
}

.about-btn {
    background: #ffffff;
    color: #ff7a18;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.about-btn:hover {
    background: #fff5ec;
    color: #ff7a18;
}

.luxury-scroll {
    position: relative;
    padding: 120px 0;
    background: url("../images/hotelimg-4.png") center/cover no-repeat;
    background-attachment: fixed;
    color: orange;
}

.luxury-scroll::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.75)
    );
}

.luxury-scroll .container {
    position: relative;
    max-width: 700px;
}

.luxury-scroll h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 40px;
    border-left: 4px solid #ff7a18;
    padding-left: 16px;
}

/* list */
.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenities-list li {
    font-size: 20px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.95;
}

/* mobile */
@media (max-width: 768px) {
    .luxury-scroll {
        background-attachment: scroll;
        padding: 80px 0;
    }

    .luxury-scroll h2 {
        font-size: 30px;
    }
}

.about-amenities-section {
    background: #ffffff;
    padding: 120px 0;
}

/* LEFT FIXED CONTENT */
.about-amenities-content {
    position: sticky;
    top: 120px;
    padding-right: 40px;
}

.amenity-card {
    background: #f9f9f9;
    border-radius: 120px 120px 120px 0;
    padding: 45px 25px 35px;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
}

.about-amenities-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
    color: #ed8e16;
    font-weight: 500;
}

.about-amenities-title {
    font-size: 42px;
    font-weight: 600;
    margin: 12px 0 25px;
    color: #222;
}

.about-amenities-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

/* AMENITY ITEMS */
.about-amenity-item {
    display: flex;
    gap: 15px;
    margin-bottom: 28px;
}

.about-amenity-icon {
    font-size: 20px;
    color: #ed8e16;
    margin-top: 4px;
}

.about-amenity-item h5 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #222;
}

.about-amenity-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* RIGHT IMAGE SCROLL */
.about-amenities-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-amenities-images img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

@media (max-width: 991px) {
    .about-amenities-content {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .luxury-scroll h2 {
        font-size: 30px;
    }

    .amenities-list li {
        font-size: 17px;
    }
}

.about-why {
    position: relative;
    padding: 100px 0;
    background-image: url("../images/hero_section_img3.jpg");
    /* apni image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* 🔥 scroll effect */
}

.about-why::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* content upar rahe */
.about-why .container {
    position: relative;
    z-index: 2;
}

/* heading color */
.about-why h2 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 40px;
}

.why-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    height: 100%;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.why-card h4 {
    color: #ff7a18;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    color: #444;
}

@media (max-width: 768px) {
    .about-why {
        background-attachment: scroll;
    }
}

.about-journey {
    background: linear-gradient(135deg, #fff5ec, #ffffff);
    padding: 90px 0;
}

.journey-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.step {
    background: #ff7a18;
    color: #fff;
    padding: 18px 34px;
    border-radius: 40px;
    margin: 12px;
    font-weight: 600;
    box-shadow: 0 12px 25px rgba(255, 122, 24, 0.4);
}

.about-amenities div {
    text-align: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    font-weight: 500;
    transition: transform 0.3s ease;
}

.about-amenities div:hover {
    transform: translateY(-4px);
}
.about-stats {
    background: linear-gradient(135deg, #ffedd5, #fff7ed);
    color: #7a3e1d;
    padding: 80px 0;
}

.about-stats h3 {
    font-size: 38px;
    font-weight: 800;
}

.about-final-cta {
    padding: 70px 0;
    background: #f8f8f8;
}

.about-final-cta .container {
    position: relative;
    z-index: 2;
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgb(255, 161, 0), #ffa45f);
    color: #fff;
    overflow: hidden;
}

.about-final-cta::before,
.about-final-cta::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.about-final-cta::before {
    top: -120px;
    left: -120px;
}

.about-final-cta::after {
    bottom: -120px;
    right: -120px;
}

.about-final-cta .container {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.about-final-cta h2 {
    font-size: 34px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.about-final-cta p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.about-final-cta .btn-book {
    display: inline-block;
    padding: 14px 38px;
    font-size: 1rem;
    font-weight: 600;
    color: #5a3825;
    background: #fff;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.35s ease;
}

.about-final-cta .btn-book:hover {
    background: #000000;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    .about-final-cta h2 {
        font-size: 2rem;
    }

    .about-final-cta p {
        font-size: 1rem;
    }

    /* background-color: #f09433;
padding: 100px 0;
position: relative;
color: #fff; */
}

.about-final-cta .container {
    position: relative;
    z-index: 2;
}

.btn-book {
    display: inline-block;
    padding: 12px 36px;
    background: #ff7a00;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-book:hover {
    background: #e66e00;
}

.about-facilities-section {
    background: #faf7f2;
    padding: 110px 0;
}

.about-facilities-heading span {
    font-size: 13px;
    letter-spacing: 3px;
    color: #ed8e16;
    font-weight: 500;
}

.about-facilities-heading h2 {
    font-size: 42px;
    font-weight: 600;
    margin: 10px 0 70px;
    color: #222;
}

.about-facility-box {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(179, 139, 89, 0.2);
}

.about-facility-icon {
    font-size: 42px;
    color: #ed8e16;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-facility-box h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #222;
}

.about-facility-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Divider line effect */
.about-facility-box {
    border-right: 1px solid rgba(179, 139, 89, 0.2);
}

.about-facility-box:last-child {
    border-right: none;
}

/* Responsive */
@media (max-width: 991px) {
    .about-facility-box {
        border-right: none;
        margin-bottom: 40px;
    }
}

/* ===============================
   Gallery Container
================================= */
.gallery-container {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* ===============================
   Gallery Title
================================= */
.gallery-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #333;
}

.main-text {
    max-width: 650px;
    margin: auto;
    font-size: 15px;
    line-height: 1.6;
}

/* ===============================
   Photo Gallery Images
================================= */
.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.15)
    );
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    opacity: 0;
    transition: all 0.35s ease;
}

.gallery-card:hover .gallery-overlay {
    bottom: 0;
}

.gallery-big-img {
    width: 100%;
    height: 65vh;
    object-fit: cover;
}

.luxury-content {
    background: #0b1324;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.luxury-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 20;

    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;

    font-size: 26px;
    line-height: 40px;
    text-align: center;

    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    cursor: pointer;
}

.luxury-close:hover {
    background: #ffb703;
    color: #000;
}

/* Mobile safe area */
@media (max-width: 576px) {
    .luxury-close {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
        font-size: 22px;
        line-height: 36px;
    }
}

/* Desktop hover */
@media (min-width: 768px) {
    .gallery-card:hover .gallery-overlay {
        opacity: 1;
    }
}

/* Mobile / small screen */
@media (max-width: 767px) {
    .gallery-overlay {
        opacity: 1;
        /* always visible */
    }
}

.luxury-caption {
    padding: 18px 20px 25px;
    background: #0b1324;
    color: #fff;
}

/* THUMBNAILS */
.thumb-wrapper {
    position: relative;
    padding: 15px 45px;
    background: #0b1324;
}

@media (max-width: 576px) {
    .luxury-caption h4 {
        font-size: 18px;
    }

    .luxury-caption p {
        font-size: 14px;
    }
}

.thumb-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.thumb-container::-webkit-scrollbar {
    display: none;
}

.thumb-img {
    width: 90px;
    height: 65px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
}

@media (max-width: 576px) {
    .thumb-img {
        width: 70px;
        height: 55px;
    }
}

.thumb-img.active {
    opacity: 1;
    border-color: #ffb703;
}

.thumb-img:hover {
    opacity: 1;
}

/* Left Right Buttons */

.thumb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.thumb-btn.left {
    left: 8px;
}

.thumb-btn.right {
    right: 8px;
}

.thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
}

.thumb.active {
    border-color: #ff9900;
    opacity: 1;
}

/* Mobile & iPad: disable hover overlay */
@media (max-width: 991px) {
    .gallery-overlay {
        display: none;
    }
}

.modal-dialog-scrollable .modal-content {
    max-height: 100vh;
    overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.empty-gallery {
    background: #fff8ec;
    border: 1px dashed #f0c36d;
    border-radius: 12px;
}

.empty-gallery h3 {
    font-weight: 600;
    color: #b68934;
}

/* ===============================
   Video Gallery Thumbnails
================================= */
.video-thumbnail {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
}

.video-thumbnail:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Play icon overlay */
.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 3px 10px;
}

.video-play-icon:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

/* ===============================
   Modal Images & Video
================================= */
#modalImage,
#modalVideo {
    max-height: 80vh;
    border-radius: 10px;
}

/* ===========================
   VIDEO MODAL – LUXURY THEME
=========================== */

/* MODAL BASE */
.video-luxury-modal {
    background: #081a2d;
    border-radius: 18px;
    overflow: hidden;
}

/* HEADER */
.video-modal-header {
    background: linear-gradient(135deg, #081a2d, #0a2647);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.5rem;
}

.video-modal-header h4 {
    color: #ffffff;
    font-weight: 600;
}

.video-modal-header .btn-close {
    filter: invert(1);
    opacity: 0.9;
}

/* BODY */
.video-modal-body {
    padding: 0;
    background: #081a2d;
}

/* VIDEO AREA */
.video-wrapper {
    background: #000;
    width: 100%;
}

.video-wrapper video {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    /* 👈 image jaisa full cover */
    background: #000;
    display: block;
}

/* TEXT PANEL */
.video-modal-content {
    padding: 1.75rem 2rem 2.25rem;
    background: #081a2d;
    color: #ffffff;
}

.video-modal-content h5 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.video-modal-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d1d5db;
    max-width: 900px;
}

/* Responsive spacing */
@media (max-width: 767px) {
    .gallery-container h1 {
        font-size: 2rem;
    }

    .video-play-icon {
        font-size: 0.7rem;
        padding: 2px 5px;
    }
}

@media (max-width: 768px) {
    .gallery-big-img {
        height: 45vh;
    }
}

/* Very small phones */
@media (max-width: 480px) {
    .gallery-big-img {
        height: 40vh;
    }
}

/* blog page ui css */
/* ================= BLOG PAGE UI (CLEAN VERSION) ================= */

/* HERO */
.blog-hero {
    height: 60vh;
    background: url("https://images.unsplash.com/photo-1566073771259-6a8506099945")
        center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    height: 65vh;
    background: url("https://images.unsplash.com/photo-1566073771259-6a8506099945")
        center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero-content p {
    font-size: 16px;
    opacity: 0.9;
}

.blog-hero {
    padding: 200px 20px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.674), rgba(0, 0, 0, 0.723)),
        url("../images/vission.jpg") center/cover no-repeat;
    text-align: center;
}

.blog-hero-content {
    color: #fff;
    max-width: 800px;
    margin: auto;
}

.blog-hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff !important;
}

.blog-hero-content p {
    font-size: 18px;
    line-height: 1.8;
}

/* ================= LAYOUT ================= */
.blog-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* MAIN LAYOUT */
.blog-layout {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: auto;
}

.blog-left {
    flex: 1;
}

/* ================= BLOG GRID ================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* BLOG CARD */
.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
}

/* BLOG IMAGE */
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* BLOG CONTENT */
.blog-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-body h5 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-card-body p {
    font-size: 14px;
    color: #666;
    flex-grow: 1;
}

/* READ MORE */
.blog-card-body a {
    font-weight: 600;
    color: #0d6efd;
    margin-top: 12px;
}

.blog-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(
        195deg,
        var(--accent-color),
        var(--secondary-color)
    );
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.blog-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-btn {
    color: var(--muted-text);
    font-weight: 700;
    text-decoration: none;
    position: relative;
}

.blog-btn::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.blog-btn:hover::after {
    width: 100%;
}

/* ================= FILTER ================= */
.blog-right {
    width: 280px;
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.blog-right h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-right::-webkit-scrollbar {
    width: 6px;
}

.blog-right::-webkit-scrollbar-thumb {
    background: var(--muted-text);
    border-radius: 10px;
}

.blog-right::-webkit-scrollbar-track {
    background: #f5f5f5;
}

/* FILTER LIST */
.filter-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.filter-list li {
    padding: 12px 16px;
    margin-bottom: 10px;
    border-radius: 8px;
    cursor: pointer;
    background: #f1f1f1;
    transition: 0.3s;
}

.filter-list li:hover,
.filter-list li.active {
    background: var(--accent-color);
    color: #fff;
}

/* ================= PAGINATION ================= */
.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination button {
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    background: #eee;
}

.pagination button.active {
    background: var(--accent-color);
}

/* ================= CTA ================= */
.blog-cta {
    padding: 90px 20px;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        var(--secondary-color)
    );
    text-align: center;
}

.blog-cta h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.blog-cta p {
    max-width: 650px;
    margin: auto;
    margin-bottom: 25px;
    font-size: 18px;
}

.cta-btn {
    background: #111;
    color: #fff;
    padding: 15px 38px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 992px) {
    .blog-layout {
        flex-direction: column;
    }

    .blog-right {
        width: 100%;
        position: relative;
        top: 0;
    }

    /* Filter items horizontal (better UX) */
    .filter-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-list li {
        margin-bottom: 0;
        padding: 10px 14px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 20px;
    }

    .blog-hero-content h1 {
        font-size: 34px;
    }
}

.related-blogs {
    background: #fffbea;
    /* soft yellow-white theme for NGO */
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-top: 60px;
}

.related-blogs h4.related-title {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.related-blogs .blog-card {
    transition: transform 0.3s ease;
}

.related-blogs .blog-card:hover {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .related-blogs {
        padding: 20px 15px;
    }
}

/* ===== BLOG DETAIL PAGE ===== */

:root {
    /* ===== PRIMARY ORANGE SHADES ===== */
    --primary-color: #ff6600;
    /* Main Orange */
    --secondary-color: #ff8c1a;
    /* Soft Orange */
    --accent-color: #ffb366;
    /* Light Orange Accent */

    /* ===== TEXT COLORS (ORANGE + WHITE ONLY) ===== */
    --dark-color: #ff6600;
    /* Headings in Orange */
    --text-color: #ff7a1a;
    /* Normal Text */
    --muted-text: #ffa366;
    /* Muted Orange Text */

    /* ===== BACKGROUNDS ===== */
    --light-bg: #ffffff;
    /* White Background */
    --section-bg: #fff5ec;
    /* Very Light Orange */
    --card-bg: #ffffff;
    /* White Cards */

    /* ===== BORDERS & SHADOW ===== */
    --border-color: #ffd1b3;
    /* Soft Orange Border */

    /* ===== COMMON ===== */
    --white: #ffffff;
    --light: #ffffff;

    /* ===== GRADIENTS ===== */
    --gradient-primary: linear-gradient(135deg, #ff6600, #ff944d);
}

.blogdetail-hero {
    background:
        linear-gradient(
            135deg,
            rgba(24, 24, 23, 0.652),
            rgba(41, 40, 39, 0.727)
        ),
        url("../../assest/images/skill-img06.png") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 200px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.blogdetail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 20% 50%,
        rgba(212, 163, 115, 0.1),
        transparent 50%
    );
    pointer-events: none;
}

.blogdetail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.blogdetail-hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.blogdetail-breadcrumb {
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.blogdetail-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blogdetail-breadcrumb a:hover {
    color: var(--accent-color);
}

.blogdetail-breadcrumb span {
    color: var(--accent-color);
    font-weight: 600;
}

.blogdetail-hero-container .blogdetail-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.blogdetail-hero-container .blogdetail-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-weight: 300;
}

.blogdetail-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.95rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

.blogdetail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== MAIN CONTENT SECTION ===== */
.blogdetail-content-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #f9f6f3);
    min-height: 100vh;
}

.blogdetail-content-container {
    max-width: 1100px;
}

.blogdetail-main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    margin-bottom: 80px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.blogdetail-img-wrapper {
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #f0e6d2, #e8d9c9);
}

.blogdetail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogdetail-text {
    padding: 40px;
    color: #333;
}

.blogdetail-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #c97f52);
    color: #fff;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blogdetail-text h2 {
    font-size: clamp(1.4rem, 2vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 800;
    line-height: 1.2;
}

.blogdetail-excerpt {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0e6d2;
}

.blogdetail-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #666;
    letter-spacing: 0.3px;
}

/* ===== TAGS ===== */
.blogdetail-tags {
    margin-top: 30px;
}

.blogdetail-tags h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.blogdetail-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blogdetail-tag {
    padding: 8px 16px;
    background: #f0e6d2;
    color: var(--secondary-color);
    border-radius: 25px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    font-weight: 500;
}

.blogdetail-tag:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 163, 115, 0.3);
}

/* ===== RELATED BLOGS SECTION ===== */
.blogdetail-related-blogs {
    margin-top: 100px;
    scroll-margin-top: 100px;
}

.blogdetail-related-header {
    text-align: center;
    margin-bottom: 50px;
}

.blogdetail-related-header h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 800;
}

.blogdetail-related-header p {
    font-size: 1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.blogdetail-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blogdetail-related-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid #f0e6d2;
}

.blogdetail-related-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blogdetail-card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #f0e6d2, #e8d9c9);
}

.blogdetail-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogdetail-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--accent-color), #c97f52);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(212, 163, 115, 0.3);
}

.blogdetail-related-info {
    padding: 25px;
}

.blogdetail-related-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.blogdetail-related-card:hover .blogdetail-related-info h4 {
    color: var(--accent-color);
}

.blogdetail-related-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blogdetail-readmore {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.blogdetail-readmore:hover {
    gap: 8px;
    letter-spacing: 1px;
}

/* ===== CTA SECTION ===== */
.blogdetail-cta {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    margin-top: 80px;
    box-shadow: 0 15px 40px rgba(90, 56, 37, 0.2);
}

.blogdetail-cta h3 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 15px;
    font-weight: 800;
}

.blogdetail-cta p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.blogdetail-cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blogdetail-cta-btn:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .blogdetail-hero {
        padding: 100px 0;
    }

    .blogdetail-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blogdetail-text {
        padding: 30px;
    }

    .blogdetail-img-wrapper {
        aspect-ratio: 16/10;
    }

    .blogdetail-related-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blogdetail-hero {
        padding: 80px 0;
    }

    .blogdetail-hero-container .blogdetail-title {
        font-size: 2rem;
    }

    .blogdetail-meta {
        gap: 15px;
        font-size: 0.85rem;
    }

    .blogdetail-text {
        padding: 20px;
    }

    .blogdetail-text h2 {
        font-size: 1.6rem;
    }

    .blogdetail-excerpt {
        font-size: 1rem;
    }

    .blogdetail-text p {
        font-size: 0.95rem;
    }

    .blogdetail-related-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .share-buttons {
        gap: 10px;
    }

    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .blogdetail-cta {
        padding: 40px 20px;
    }

    .blogdetail-cta h3 {
        font-size: 1.5rem;
    }

    .blogdetail-cta p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .blogdetail-hero {
        padding: 60px 0;
    }

    .blogdetail-breadcrumb {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .blogdetail-hero-container .blogdetail-title {
        font-size: 1.5rem;
    }

    .blogdetail-hero-container .blogdetail-subtitle {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .blogdetail-meta {
        flex-direction: column;
        gap: 10px;
        font-size: 0.8rem;
    }

    .blogdetail-content-section {
        padding: 40px 0;
    }

    .blogdetail-text {
        padding: 15px;
    }

    .blogdetail-text h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .blogdetail-excerpt {
        font-size: 0.95rem;
    }

    .blogdetail-text p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .blogdetail-tags-list {
        gap: 8px;
    }

    .blogdetail-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .blogdetail-cta {
        padding: 30px 15px;
        margin-top: 40px;
    }

    .blogdetail-cta h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .blogdetail-cta p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .blogdetail-cta-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

.blogdetail-readmore {
    font-weight: 600;
    color: var(--muted-text);
    text-decoration: none;
    font-size: 0.95rem;
}

.blogdetail-readmore:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .blogdetail-main-content {
        flex-direction: column;
        gap: 30px;
    }

    .blogdetail-img,
    .blogdetail-text {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .blogdetail-img {
        height: 260px;
    }
}

@media (max-width: 576px) {
    .blogdetail-hero-container .blogdetail-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .blogdetail-related-card {
        width: 100%;
    }
}

/* ================= ROOMS PAGE ================= */
/* =========================
   ROOM PAGINATION
========================= */

.room-pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.room-page-btn {
    padding: 6px 14px;
    border: 1px solid #ff6600;
    background: #fff;
    color: #ff6600;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.room-page-btn.active,
.room-page-btn:hover {
    background: #ff6600;
    color: #fff;
}

.room-page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.room-page-dots {
    padding: 0 6px;
    font-weight: bold;
    color: #999;
}

.room-page-btn:hover:not(:disabled):not(.disabled) {
    background: #ff6a00;
    color: #fff;
}

.room-page-btn:disabled,
.room-page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
    color: #999;
    border-color: #ddd;
}

.room-hidden {
    display: none !important;
}

/* PAGE NUMBER */
.room-page-number {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff6a00;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.room-row {
    position: relative;
    display: flex;
    align-items: center;
}

.room-row.reverse {
    flex-direction: row-reverse;
}

.room-image {
    width: 65%;
}

.room-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
}

.room-card {
    width: 45%;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    position: absolute;
    right: 0;
    border: 1px solid #eee;
}

.room-row.reverse .room-card {
    left: 0;
    right: auto;
}

.room-price {
    font-size: 13px;
    letter-spacing: 1px;
    color: #ff7a00;
    font-weight: 600;
    text-transform: uppercase;
}

.room-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0;
    color: #222;
}

.room-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 18px 0;
}

.room-features span {
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #eee;
    padding-bottom: 4px;
}

.room-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.btn-book {
    background: #ff7a00;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
}

.btn-book:hover {
    background: #e56d00;
}

.btn-link {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .room-row,
    .room-row.reverse {
        flex-direction: column;
    }

    .room-image,
    .room-card {
        width: 100%;
        position: relative;
    }

    .room-card {
        margin-top: -60px;
    }
}

@media (max-width: 576px) {
    .room-image img {
        height: 260px;
    }

    .room-card h3 {
        font-size: 22px;
    }
}

.main-facilities {
    position: relative;
    background-color: #1e1e1e;
    /* background: url("../images/hotelimg-4.png   ") center/cover no-repeat; */
    padding: 90px 0;
    color: #fff;
}

.facilities-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.65); */
}

.main-facilities .container {
    position: relative;
    z-index: 2;
}

.facilities-heading span {
    color: #f4a261;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
}

.facilities-heading h2 {
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
}

.facilities-row {
    margin-top: 60px;
}

.facility-item {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.facility-item:last-child {
    border-right: none;
}

.facility-item i {
    font-size: 42px;
    color: #f4a261;
    margin-bottom: 15px;
}

.facility-item h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .facility-item {
        border-right: none;
    }

    .facilities-heading h2 {
        font-size: 30px;
    }
}

/* roomdetail */
.roomdetail-luxury-section {
    background: #ffffff;
    padding: 80px 0;
}

/* Centered luxury width */
.roomdetail-luxury-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 90px;
}

/* Tag */
.roomdetail-luxury-tag {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f57c00;
    font-weight: 600;
    position: relative;
}

.roomdetail-luxury-tag::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #f57c00;
    margin-top: 10px;
}

/* Title */
.roomdetail-luxury-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.15;
    color: #1f1f1f;
    margin-top: 25px;
}

/* Paragraphs */
.roomdetail-luxury-text {
    font-size: 16.5px;
    color: #5f5f5f;
    line-height: 1.9;
    margin-top: 18px;
    max-width: 520px;
}

/* Feature list */
.roomdetail-feature-list {
    border-left: 1px solid #eee;
    padding-left: 40px;
}

.roomdetail-feature-item {
    display: flex;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.roomdetail-feature-item i {
    font-size: 21px;
    color: #f57c00;
    margin-right: 14px;
    transition: transform 0.3s ease;
}

/* Hover effect (luxury subtle) */
.roomdetail-feature-item:hover {
    padding-left: 8px;
    color: #f57c00;
}

.roomdetail-feature-item:hover i {
    transform: scale(1.1);
}

/* Responsive tuning */
@media (max-width: 1200px) {
    .roomdetail-luxury-wrapper {
        padding: 0 48px;
    }
}

@media (max-width: 992px) {
    .roomdetail-luxury-wrapper {
        padding: 0 24px;
    }

    .roomdetail-feature-list {
        border-left: none;
        padding-left: 0;
        margin-top: 40px;
    }

    .roomdetail-luxury-title {
        font-size: 38px;
    }

    .roomdetail-luxury-text {
        max-width: 100%;
    }
}

.roomdetail-review-section {
    background: #faf8f4;
    padding: 90px 0;
}

.roomdetail-review-wrapper {
    max-width: 1400px;
    margin: auto;
    padding: 0 80px;
}

/* LEFT */
.roomdetail-review-left {
    padding-right: 40px;
}

.roomdetail-review-card {
    background: #fdfbf7;
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 30px;
}

.roomdetail-review-scroll {
    max-height: 420px;
    overflow-y: auto;
}

/* scrollbar */
.roomdetail-review-scroll::-webkit-scrollbar {
    width: 6px;
}

.roomdetail-review-scroll::-webkit-scrollbar-thumb {
    background: #e0d6c5;
    border-radius: 10px;
}

.roomdetail-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.roomdetail-review-user {
    display: flex;
    gap: 12px;
}

.roomdetail-review-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.roomdetail-review-user h6 {
    margin: 0;
}

.roomdetail-review-user span {
    font-size: 13px;
    color: #888;
}

.roomdetail-review-rating strong {
    font-size: 22px;
    color: #f57c00;
}

/* Admin reply */
.roomdetail-admin-reply {
    display: flex;
    gap: 20px;
    border-left: 2px solid #e6dccb;
    padding-left: 20px;
    margin-top: 25px;
}

.roomdetail-admin-icon {
    width: 40px;
    height: 40px;
    background: #e6dccb;
    border-radius: 50%;
}

/* RIGHT WRAPPER */
.roomdetail-review-right {
    position: relative;
}

/* Sticky on desktop */
.roomdetail-review-summary {
    position: sticky;
    top: 120px;
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Hotel tag */
.roomdetail-review-tag {
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #f57c00;
    display: inline-block;
    margin-bottom: 10px;
}

/* Title */
.roomdetail-review-summary h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f1f1f;
}

/* Description */
.roomdetail-review-summary p {
    font-size: 15.5px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Rating bar container */
.roomdetail-rating-bar {
    margin-bottom: 22px;
    position: relative;
}

/* Label */
.roomdetail-rating-bar span {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    display: block;
    margin-bottom: 6px;
}

/* Bar background */
.roomdetail-rating-bar .bar {
    height: 6px;
    background: #eee;
    border-radius: 20px;
    overflow: hidden;
}

/* Filled bar */
.roomdetail-rating-bar .bar span {
    height: 100%;
    display: block;
    background: linear-gradient(90deg, #f57c00, #d97a1b);
    border-radius: 20px;
}

/* Score number */
.roomdetail-rating-bar strong {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    color: #444;
}

/* Button */
.roomdetail-review-btn {
    width: 100%;
    margin-top: 25px;
    background: #f57c00;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.roomdetail-review-btn:hover {
    background: #d96c00;
}

/* Responsive */
@media (max-width: 992px) {
    .roomdetail-review-summary {
        position: relative;
        top: 0;
        margin-top: 40px;
        padding: 30px;
    }

    .roomdetail-review-summary h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .roomdetail-review-summary {
        padding: 22px;
        border-radius: 14px;
    }

    .roomdetail-review-summary h2 {
        font-size: 28px;
    }

    .roomdetail-review-summary p {
        font-size: 14.5px;
    }
}

.roomdetail-review-modal {
    border-radius: 16px;
    padding: 10px;
}

.roomdetail-review-modal .modal-title {
    font-weight: 600;
}

.roomdetail-review-modal .form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px;
}

/* Stars */
.roomdetail-star-rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 6px;
}

.roomdetail-star-rating input {
    display: none;
}

.roomdetail-star-rating label {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
}

.roomdetail-star-rating input:checked ~ label,
.roomdetail-star-rating label:hover,
.roomdetail-star-rating label:hover ~ label {
    color: #f57c00;
}

/* Buttons */
.roomdetail-btn-submit {
    background: #f57c00;
    color: #fff;
    padding: 10px 26px;
    border-radius: 30px;
}

.roomdetail-btn-cancel {
    background: transparent;
    border: 1px solid #ddd;
    padding: 10px 26px;
    border-radius: 30px;
}

/* ================= COMMON CARD CSS ================= */

.commoncard-section {
    padding: 70px 0;
}

.commoncard-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: #f57c00;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: inline-block;
}

.commoncard-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1f1f1f;
}

.commoncard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* CARD */
.commoncard-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
}

/* IMAGE */
.commoncard-img {
    position: relative;
    height: 480px;
}

.commoncard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.commoncard-img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}

/* HOVER */
.commoncard-card:hover .commoncard-img-main {
    opacity: 0;
    transform: scale(1.05);
}

.commoncard-card:hover .commoncard-img-hover {
    opacity: 1;
    transform: scale(1.05);
}

/* CONTENT */
.commoncard-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: #fff;
}

.commoncard-price {
    font-size: 13px;
    letter-spacing: 1px;
}

.commoncard-room-title {
    font-size: 26px;
    font-weight: 600;
    margin: 8px 0 14px;
}

.commoncard-link {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 2px solid #f57c00;
    padding-bottom: 4px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .commoncard-img {
        height: 400px;
    }

    .commoncard-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .commoncard-img {
        height: 340px;
    }

    .commoncard-content {
        padding: 22px;
    }

    .commoncard-room-title {
        font-size: 22px;
    }
}

/* comon galery */

/* MAIN GALLERY WRAPPER */
.gallery-main-swiper {
    padding: 50px 0 60px;
}

/* IMAGE STYLE */
.gallery-main-swiper img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 22px;
    transition:
        transform 0.6s ease,
        box-shadow 0.6s ease;
}

/* SLIDE CARD */
.gallery-main-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.9);
    opacity: 0.6;
    transition: all 0.5s ease;
}

/* ACTIVE SLIDE */
.gallery-main-swiper .swiper-slide-active {
    transform: scale(1.05);
    opacity: 1;
}

.gallery-main-swiper .swiper-slide-active img {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVE HEIGHT */
@media (min-width: 768px) {
    .gallery-main-swiper img {
        height: 330px;
    }
}

@media (min-width: 1280px) {
    .gallery-main-swiper img {
        height: 420px;
    }
}

/* BUTTON */
.gallery-btn {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: #fff;
    padding: 15px 38px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    margin-top: 30px;
    margin-bottom: 30px;
}

.gallery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* FULLSCREEN MODAL */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #111 0%, #000 80%);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal.hidden {
    display: none;
}

/* MODAL SWIPER */
.gallery-modal-swiper {
    width: 100vw;
    height: 100vh;
}

/* SLIDE CENTER */
.gallery-modal-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE PERFECT FIT */
.gallery-modal-swiper img {
    max-width: 92vw;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 18px;
    animation: infinite 0.5s ease;
    background-color: #d96c00;
}

/* MOBILE */
@media (max-width: 640px) {
    .gallery-modal-swiper img {
        max-width: 96vw;
        max-height: 78vh;
        border-radius: 12px;
    }
}

/* IMAGE ANIMATION */
@keyframes fadeZoom {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* CLOSE BUTTON */
.gallery-close {
    position: fixed;
    top: 22px;
    right: 26px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 26px;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* MOBILE */
@media (max-width: 640px) {
    .gallery-close {
        top: 14px;
        right: 16px;
        width: 38px;
        height: 38px;
        font-size: 22px;
    }
}

/* NAVIGATION */
.swiper-button-prev,
.swiper-button-next {
    color: #ff6600;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgb(255, 140, 0);
    color: white;
    transform: scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px;
    font-weight: bold;
}

.modal-prev {
    left: 22px;
}

.modal-next {
    right: 22px;
}

@media (max-width: 640px) {
    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }
}

/* aminites css page ui */
:root {
    --orange: #ff7a00;
    --orange-light: #fff3e8;
    --text-dark: #333;
}

.amenities-section {
    background: #ffffff;
    padding: 70px 0;
}

.amenities-heading span {
    color: var(--orange);
    font-weight: 600;
    letter-spacing: 1px;
}

.amenities-heading h1 {
    font-weight: 700;
    color: var(--text-dark);
}

.amenity-card {
    border: none;
    border-radius: 16px;
    padding: 30px 25px;
    height: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: "";
    padding: 15px;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.related-card-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s;
}

.related-card:hover img {
    transform: scale(1.1);
}

.related-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.6)
    );
    transition: background 0.4s;
}

.related-card:hover .related-card-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.5)
    );
}

.related-card-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
}

.related-card-text h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.related-card-text p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.related-card-text .btn {
    border: 1px solid #fff;
    color: #fff;
    transition: all 0.3s;
}

.related-card-text .btn:hover {
    background-color: #fff;
    color: #000;
}

.related-card-body {
    text-align: center;
}

.related-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.related-card-desc {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Add Blog Button */
.admin-add-blog-btn {
    background: rgb(255, 161, 0);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 4px rgba(255, 161, 0, 0.2);
}

.admin-add-blog-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        89deg,
        rgb(255, 161, 0) 11.51%,
        rgb(247, 71, 15) 52.88%,
        rgb(238, 17, 98) 92.44%
    );
    transition: left 0.4s ease;
    z-index: 0;
}

.admin-add-blog-btn:hover::before {
    left: 0;
}

.admin-add-blog-btn span,
.admin-add-blog-btn i {
    position: relative;
    z-index: 1;
}

.admin-add-blog-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 161, 0, 0.4);
    color: #ffffff;
}

/* Blog Table Container */
.admin-blog-table-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.admin-blog-table-wrapper {
    max-height: calc(100vh - 350px);
    min-height: 400px;
    overflow-x: auto;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
}

.admin-blog-table {
    width: 100%;
    margin-bottom: 0;
    background: #ffffff;
    border-collapse: separate;
    border-spacing: 0;
}

.admin-blog-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #ffffff;
}

.admin-blog-table thead th {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 600;
    color: #374151;
    padding: 1rem;
    text-align: left;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    position: sticky;
    top: 0;
}

.admin-blog-table tbody tr {
    transition: background 0.2s ease;
    background: #ffffff;
}

.admin-blog-table tbody tr:hover {
    background: #f9fafb;
}

.admin-blog-table tbody td {
    padding: 1rem;
    vertical-align: middle;
    color: #111827;
    font-size: 0.875rem;
}

.admin-blog-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    display: inline-block;
}

.admin-blog-table-name-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-blog-table-name-info {
    display: flex;
    flex-direction: column;
}

.admin-blog-table-name {
    font-weight: 600;
    color: #0d1526;
    font-size: 0.95rem;
    margin: 0;
}

.admin-blog-table-slug {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
    margin-top: 0.25rem;
}

.admin-blog-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-blog-status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
}

.admin-blog-status-badge.active {
    background: #d1fae5;
    color: #065f46;
}

.admin-blog-status-badge.inactive {
    background: #fee2e2;
    color: #991b1b;
}

.admin-blog-status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

/* Action Menu */
.admin-blog-action-menu {
    position: relative;
}

.admin-blog-action-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #0d1526;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.admin-blog-action-btn:hover {
    background: rgba(255, 161, 0, 0.1);
    border-color: rgb(255, 161, 0);
    color: rgb(255, 161, 0);
}

.admin-blog-action-dropdown {
    position: fixed;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 10000;
    display: none;
}

.admin-blog-action-dropdown.show {
    display: block;
}

.admin-blog-action-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #0d1526;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    cursor: pointer;
}

.admin-blog-action-item:hover {
    background: rgba(255, 161, 0, 0.1);
    color: rgb(255, 161, 0);
}

.admin-blog-action-item.view {
    color: #0d6efd;
}

.admin-blog-action-item.view:hover {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.admin-blog-action-item.edit {
    color: #ffc107;
}

.admin-blog-action-item.edit:hover {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.admin-blog-action-item.delete {
    color: #dc3545;
}

.admin-blog-action-item.delete:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.admin-blog-action-item.active {
    color: #28a745;
}

.admin-blog-action-item.active:hover {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

/* Right Side Panel (Page Type) */
.admin-blog-panel-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--orange);
}

.amenity-card:hover {
    background: linear-gradient(135deg, #ff7a00, #ff9f45);
    transform: translateY(-8px);
}

.amenity-card:hover .amenity-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
}

.amenity-card:hover i,
.amenity-card:hover .amenity-card-title,
.amenity-card:hover .amenity-card-description {
    color: #fff;

    .amenity-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--orange-light);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .amenity-icon i {
        font-size: 26px;
        color: var(--orange);
    }

    .amenity-card h5 {
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--text-dark);
    }

    .amenity-card p {
        color: #666;
        font-size: 15px;
        margin: 0;
        line-height: 1.6;
    }

    .amenities-royal-section {
        padding: 80px 0;
        background-color: #ffffff;
    }

    /* Left Content */
    .amenities-royal-content h2 {
        font-size: 36px;
        font-weight: 700;
        color: #d89c2f;
        /* Orange / Royal Gold */
        margin-bottom: 20px;
    }

    .amenities-royal-content p {
        font-size: 17px;
        color: #444;
        line-height: 1.8;
        max-width: 520px;
    }

    /* Right Image */
    .amenities-royal-image {
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    }

    .amenities-royal-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .amenities-royal-image:hover img {
        transform: scale(1.05);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .amenities-royal-content h2 {
            font-size: 28px;
        }

        .amenities-royal-section {
            padding: 60px 0;
        }

        /* background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    transition: opacity 0.3s ease; */
    }

    .admin-blog-panel-overlay.show {
        display: block;
    }

    .admin-blog-panel {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 900px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
        z-index: 9999;
        transition: right 0.4s ease;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .admin-blog-panel.show {
        right: 0;
    }

    /* Adjust panel position when admin sidebar is visible */
    body.sidebar-collapsed .admin-blog-panel {
        right: -100%;
    }

    body.sidebar-collapsed .admin-blog-panel.show {
        right: 0;
    }

    /* On mobile, panel takes full width */
    @media (max-width: 768px) {
        .admin-blog-panel {
            max-width: 100%;
        }
    }

    .admin-blog-panel-header {
        padding: 1.5rem;
        border-bottom: 1px solid #e0e0e0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-shrink: 0;
        background: #ffffff;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .admin-blog-modal-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #0d1526;
        margin: 0;
    }

    .admin-blog-panel-close {
        background: transparent;
        border: none;
        font-size: 1.5rem;
        color: #666;
        cursor: pointer;
        padding: 0;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .admin-blog-panel-close:hover {
        background: rgba(220, 53, 69, 0.1);
        color: #dc3545;
    }

    .admin-blog-panel-body {
        padding: 2rem;
        overflow-y: auto;
        flex: 1;
        background: #ffffff;
    }

    .admin-blog-panel-footer {
        padding: 1.5rem;
        border-top: 1px solid #e0e0e0;
        display: flex;
        justify-content: flex-end;
        gap: 1rem;
        flex-shrink: 0;
        background: #ffffff;
        position: sticky;
        bottom: 0;
        z-index: 10;
    }

    /* Form Styles */
    .admin-blog-form-group {
        margin-bottom: 1.5rem;
    }

    .admin-blog-form-label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #0d1526;
        font-size: 0.95rem;
    }

    .admin-blog-form-label .required {
        color: #dc3545;
    }

    .admin-blog-form-input {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        background: #ffffff;
    }

    .admin-blog-form-input::placeholder {
        color: #9ca3af;
        opacity: 1;
    }

    .admin-blog-form-input:focus {
        outline: none;
        border-color: rgb(255, 161, 0);
        box-shadow: 0 0 0 3px rgba(255, 161, 0, 0.1);
    }

    .admin-blog-form-input.is-invalid {
        border-color: #dc3545;
    }

    .admin-blog-form-textarea {
        min-height: 150px;
        resize: vertical;
    }

    /* Quill Editor Container */
    .admin-blog-quill-container {
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        overflow: hidden;
    }

    .admin-blog-quill-container:focus-within {
        border-color: rgb(255, 161, 0);
        box-shadow: 0 0 0 3px rgba(255, 161, 0, 0.1);
    }

    .admin-blog-quill-editor {
        min-height: 300px;
    }

    /* Points Section */
    .admin-blog-points-container {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 1rem;
        background: #f8f9fa;
    }

    .admin-blog-point-item {
        background: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .admin-blog-point-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.75rem;
    }

    .admin-blog-point-remove {
        background: #dc3545;
        color: #ffffff;
        border: none;
        padding: 0.25rem 0.75rem;
        border-radius: 4px;
        font-size: 0.85rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .admin-blog-point-remove:hover {
        background: #c82333;
    }

    .admin-blog-add-point-btn {
        background: linear-gradient(
            90deg,
            rgb(255, 161, 0) 0%,
            rgb(247, 71, 15) 50%,
            rgb(238, 17, 98) 100%
        );
        color: #ffffff;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        position: relative;
        overflow: hidden;
    }

    .admin-blog-add-point-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            rgb(255, 161, 0) 0%,
            rgb(247, 71, 15) 50%,
            rgb(238, 17, 98) 100%
        );
        transition: left 0.3s ease;
        z-index: 0;
    }

    .admin-blog-add-point-btn:hover::before {
        left: 0;
    }

    .admin-blog-add-point-btn i,
    .admin-blog-add-point-btn span {
        position: relative;
        z-index: 1;
    }

    .admin-blog-add-point-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(255, 161, 0, 0.3);
    }

    /* Image Preview */
    .admin-blog-image-preview {
        width: 100%;
        max-width: 300px;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        border: 2px solid #e0e0e0;
        margin-top: 1rem;
        display: none;
    }

    .admin-blog-image-preview.show {
        display: block;
    }

    /* Panel Buttons */
    .admin-blog-panel-btn {
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-size: 0.95rem;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .admin-blog-panel-btn.save {
        background: rgb(255, 161, 0);
        color: #ffffff;
    }

    .admin-blog-panel-btn.save:hover {
        background: linear-gradient(
            89deg,
            rgb(255, 161, 0) 11.51%,
            rgb(247, 71, 15) 52.88%,
            rgb(238, 17, 98) 92.44%
        );
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(255, 161, 0, 0.3);
    }

    .admin-blog-panel-btn.cancel {
        background: #6c757d;
        color: #ffffff;
    }

    .admin-blog-panel-btn.cancel:hover {
        background: #5a6268;
    }

    /* Delete Confirmation Modal */
    .admin-blog-delete-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000;
        align-items: center;
        justify-content: center;
    }

    .admin-blog-delete-modal.show {
        display: flex;
    }

    .admin-blog-delete-content {
        background: #ffffff;
        border-radius: 12px;
        padding: 2rem;
        max-width: 400px;
        width: 90%;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .admin-blog-delete-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #0d1526;
        margin-bottom: 1rem;
    }

    .admin-blog-delete-message {
        color: #666;
        margin-bottom: 1.5rem;
    }

    .admin-blog-delete-actions {
        display: flex;
        justify-content: flex-end;
        gap: 1rem;
    }

    /* Pagination */
    .admin-blog-pagination-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1.5rem;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 8px;
    }

    .admin-blog-pagination-info {
        color: #666;
        font-size: 0.9rem;
    }

    .admin-blog-pagination-select {
        padding: 0.5rem;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        font-size: 0.9rem;
        margin: 0 0.5rem;
    }

    .admin-blog-pagination {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    .admin-blog-pagination .pagination {
        margin: 0;
        display: flex;
        gap: 0.5rem;
        list-style: none;
        padding: 0;
    }

    .admin-blog-pagination .pagination .page-item {
        margin: 0;
    }

    .admin-blog-pagination .pagination .page-link {
        color: #0d1526;
        border: 1px solid #e0e0e0;
        padding: 0.5rem 0.75rem;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
        background: #ffffff;
        display: block;
    }

    .admin-blog-pagination .pagination .page-link:hover {
        background: rgba(255, 161, 0, 0.1);
        border-color: rgb(255, 161, 0);
        color: rgb(255, 161, 0);
    }

    .admin-blog-pagination .pagination .page-item.active .page-link {
        background: rgb(255, 161, 0);
        border-color: rgb(255, 161, 0);
        color: #ffffff;
    }

    .admin-blog-pagination .pagination .page-item.disabled .page-link {
        opacity: 0.5;
        cursor: not-allowed;
        background: #f8f9fa;
    }

    /* View Modal */
    .admin-blog-view-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 9999;
        overflow-y: auto;
        padding: 2rem;
    }

    .admin-blog-view-modal.show {
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .admin-blog-view-content {
        background: #ffffff;
        border-radius: 12px;
        width: 100%;
        max-width: 900px;
        margin: 2rem auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        position: relative;
        max-height: 90vh;
        display: flex;
        flex-direction: column;
    }

    .admin-blog-view-body {
        padding: 2rem;
        overflow-y: auto;
        flex: 1;
    }

    .admin-blog-modal-header {
        padding: 1.5rem;
        border-bottom: 1px solid #e0e0e0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #ffffff;
        border-radius: 12px 12px 0 0;
    }

    .admin-blog-modal-close {
        background: transparent;
        border: none;
        font-size: 1.5rem;
        color: #666;
        cursor: pointer;
        padding: 0;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .admin-blog-modal-close:hover {
        background: rgba(220, 53, 69, 0.1);
        color: #dc3545;
    }

    .admin-blog-modal-btn {
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-size: 0.95rem;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .admin-blog-modal-btn.cancel {
        background: #6c757d;
        color: #ffffff;
    }

    .admin-blog-modal-btn.cancel:hover {
        background: #5a6268;
    }

    .admin-blog-view-content {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    }

    .admin-blog-view-field {
        background: #ffffff;
        padding: 1.5rem;
        border-radius: 8px;
        margin-bottom: 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .admin-blog-view-label {
        font-weight: 700;
        color: rgb(255, 161, 0);
        margin-bottom: 0.75rem;
        display: block;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .admin-blog-view-value {
        color: #374151;
        line-height: 1.8;
        font-size: 1rem;
    }

    .admin-blog-view-value h1,
    .admin-blog-view-value h2,
    .admin-blog-view-value h3,
    .admin-blog-view-value h4,
    .admin-blog-view-value h5,
    .admin-blog-view-value h6 {
        color: #0d1526;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .admin-blog-view-value p {
        margin-bottom: 1rem;
    }

    .admin-blog-view-image {
        width: 100%;
        max-height: 500px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .admin-blog-view-image {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 1.5rem;
    }

    .admin-blog-view-field {
        margin-bottom: 1.5rem;
    }

    .admin-blog-view-label {
        font-weight: 600;
        color: #0d1526;
        margin-bottom: 0.5rem;
        display: block;
    }

    .admin-blog-view-value {
        color: #666;
        line-height: 1.6;
    }

    .admin-blog-view-points {
        list-style: none;
        padding: 0;
    }

    .admin-blog-view-point-item {
        background: #f8f9fa;
        border-left: 3px solid rgb(255, 161, 0);
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: 4px;
    }

    .admin-blog-view-point-title {
        font-weight: 600;
        color: #0d1526;
        margin-bottom: 0.5rem;
        background: var(--orange);
    }

    .amenity-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(255, 122, 0, 0.25);
    }

    .amenity-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--orange-light);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .amenity-icon i {
        font-size: 26px;
        color: var(--orange);
    }

    .amenity-card h5 {
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--text-dark);
    }

    .amenity-card p {
        color: #666;
        font-size: 15px;
        margin: 0;
        line-height: 1.6;
    }

    .amenities-royal-section {
        padding: 80px 0;
        background-color: #ffffff;
    }

    /* Left Content */
    .amenities-royal-content h2 {
        font-size: 36px;
        font-weight: 700;
        color: #d89c2f;
        /* Orange / Royal Gold */
        margin-bottom: 20px;
    }

    .amenities-royal-content p {
        font-size: 17px;
        color: #444;
        line-height: 1.8;
        max-width: 520px;
    }

    /* Right Image */
    .amenities-royal-image {
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    }

    .amenities-royal-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .amenities-royal-image:hover img {
        transform: scale(1.05);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .amenities-royal-content h2 {
            font-size: 28px;
        }

        .amenities-royal-section {
            padding: 60px 0;
        }
    }

    /* Dark Theme Support */
    .admin-body.theme-dark .admin-blog-table {
        background: #1e1e1e;
        color: #ffffff;
    }

    .admin-body.theme-dark .admin-blog-table thead th {
        background: rgba(255, 161, 0, 0.15);
        color: #ffffff;
        border-bottom-color: rgba(255, 161, 0, 0.3);
    }

    .admin-body.theme-dark .admin-blog-table tbody td {
        border-bottom-color: #333;
        color: #ffffff;
    }

    .admin-body.theme-dark .admin-blog-table tbody tr:hover {
        background: rgba(255, 161, 0, 0.1);
    }

    .admin-body.theme-dark .admin-blog-panel,
    .admin-body.theme-dark .admin-blog-view-content,
    .admin-body.theme-dark .admin-blog-delete-content {
        background: #1e1e1e;
        color: #ffffff;
    }

    .admin-body.theme-dark .admin-blog-panel-header,
    .admin-body.theme-dark .admin-blog-panel-body,
    .admin-body.theme-dark .admin-blog-panel-footer {
        background: #1e1e1e;
        border-color: #444;
    }

    .admin-body.theme-dark .admin-blog-modal-title,
    .admin-body.theme-dark .admin-blog-delete-title {
        color: #ffffff;
    }

    .admin-body.theme-dark .admin-blog-form-label {
        color: #ffffff;
    }

    .admin-body.theme-dark .admin-blog-form-input {
        background: #2a2a2a;
        border-color: #444;
        color: #ffffff;
    }

    .admin-body.theme-dark .admin-blog-action-dropdown {
        background: #1e1e1e;
        border-color: #444;
    }

    .admin-body.theme-dark .admin-blog-action-item {
        color: #ffffff;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .admin-blog-panel {
            width: 100%;
            max-width: 100%;
        }

        .admin-blog-panel-body {
            padding: 1rem;
        }

        .admin-blog-table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .admin-blog-table {
            min-width: 600px;
        }

        .admin-blog-table-name-cell {
            flex-direction: row;
            align-items: center;
        }

        .admin-blog-view-modal {
            padding: 1rem;
        }

        .admin-blog-view-content {
            margin: 1rem auto;
            max-height: 95vh;
        }

        .admin-blog-view-body {
            padding: 1rem;
        }

        .admin-blog-pagination-wrapper {
            flex-direction: column;
            gap: 1rem;
        }

        .admin-blog-table thead th {
            font-size: 0.7rem;
            padding: 0.5rem;
        }

        .admin-blog-table tbody td {
            padding: 0.75rem 0.5rem;
            font-size: 0.8rem;
        }
    }

    /* Admin Blog Search Input */
    .admin-blog-search-input {
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        background: #ffffff;
    }

    .admin-blog-search-input::placeholder {
        color: #9ca3af;
        opacity: 1;
    }

    .admin-blog-search-input:focus {
        outline: none;
        border-color: rgb(255, 161, 0);
        box-shadow: 0 0 0 3px rgba(255, 161, 0, 0.1);
    }

    /* Admin Gallery Styles */
    .admin-add-gallery-btn {
        background: linear-gradient(
            90deg,
            rgb(255, 161, 0) 0%,
            rgb(247, 71, 15) 50%,
            rgb(238, 17, 98) 100%
        );
        color: #ffffff;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 600;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: 0 2px 4px rgba(255, 161, 0, 0.2);
    }

    .admin-add-gallery-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            rgb(255, 161, 0) 0%,
            rgb(247, 71, 15) 50%,
            rgb(238, 17, 98) 100%
        );
        transition: left 0.4s ease;
        z-index: 0;
    }

    .admin-add-gallery-btn:hover::before {
        left: 0;
    }

    .admin-add-gallery-btn span,
    .admin-add-gallery-btn i {
        position: relative;
        z-index: 1;
    }

    .admin-add-gallery-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 161, 0, 0.4);
        color: #ffffff;
    }

    .admin-gallery-table-container {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }

    .admin-gallery-table-wrapper {
        max-height: calc(100vh - 350px);
        min-height: 400px;
        overflow-x: auto;
        overflow-y: auto;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        background: #ffffff;
    }

    .admin-gallery-table {
        width: 100%;
        margin-bottom: 0;
        background: #ffffff;
        border-collapse: separate;
        border-spacing: 0;
    }

    .admin-gallery-table thead {
        position: sticky;
        top: 0;
        z-index: 10;
        background: #ffffff;
    }

    .admin-gallery-table thead th {
        background: #ffffff;
        border-bottom: 1px solid #e5e7eb;
        font-weight: 600;
        color: #374151;
        padding: 1rem;
        text-align: left;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        white-space: nowrap;
        position: sticky;
        top: 0;
    }

    .admin-gallery-table tbody tr {
        transition: background 0.2s ease;
        background: #ffffff;
    }

    .admin-gallery-table tbody tr:hover {
        background: #f9fafb;
    }

    .admin-gallery-table tbody td {
        padding: 1rem;
        vertical-align: middle;
        color: #111827;
        font-size: 0.875rem;
    }

    .admin-gallery-img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 50%;
        border: 2px solid #e0e0e0;
        display: inline-block;
    }

    .admin-gallery-video {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 50%;
        border: 2px solid #e0e0e0;
        display: inline-block;
    }

    .admin-gallery-table-name-cell {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .admin-gallery-table-name-info {
        display: flex;
        flex-direction: column;
    }

    .admin-gallery-table-name {
        font-weight: 600;
        color: #0d1526;
        font-size: 0.95rem;
        margin: 0;
    }

    .admin-gallery-table-type {
        color: #6c757d;
        font-size: 0.85rem;
        margin: 0;
        margin-top: 0.25rem;
    }

    .admin-gallery-status-badge {
        padding: 0.25rem 0.75rem;
        border-radius: 9999px;
        font-size: 0.75rem;
        font-weight: 500;
        display: inline-block;
    }

    .admin-gallery-status-badge.image {
        background: #dbeafe;
        color: #1e40af;
    }

    .admin-gallery-status-badge.video {
        background: #fce7f3;
        color: #9f1239;
    }

    .admin-gallery-action-menu {
        position: relative;
    }

    .admin-gallery-action-btn {
        background: transparent;
        border: 1px solid #e0e0e0;
        color: #0d1526;
        padding: 0.5rem;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
    }

    .admin-gallery-action-btn:hover {
        background: rgba(255, 161, 0, 0.1);
        border-color: rgb(255, 161, 0);
        color: rgb(255, 161, 0);
    }

    .admin-gallery-action-dropdown {
        position: fixed;
        background: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        min-width: 180px;
        z-index: 10000;
        display: none;
    }

    .admin-gallery-action-dropdown.show {
        display: block;
    }

    .admin-gallery-action-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        color: #0d1526;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        background: transparent;
        width: 100%;
        text-align: left;
        font-size: 0.9rem;
        cursor: pointer;
    }

    .admin-gallery-action-item:hover {
        background: rgba(255, 161, 0, 0.1);
        color: rgb(255, 161, 0);
    }

    .admin-gallery-action-item.delete {
        color: #dc3545;
    }

    .admin-gallery-action-item.delete:hover {
        background: rgba(220, 53, 69, 0.1);
        color: #dc3545;
    }

    .admin-gallery-panel-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        transition: opacity 0.3s ease;
    }

    .admin-gallery-panel-overlay.show {
        display: block;
    }

    .admin-gallery-panel {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 900px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
        z-index: 9999;
        transition: right 0.4s ease;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .admin-gallery-panel.show {
        right: 0;
    }

    .admin-gallery-panel-header {
        padding: 1.5rem;
        border-bottom: 1px solid #e0e0e0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-shrink: 0;
        background: #ffffff;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .admin-gallery-panel-body {
        padding: 2rem;
        overflow-y: auto;
        flex: 1;
        background: #ffffff;
    }

    .admin-gallery-panel-footer {
        padding: 1.5rem;
        border-top: 1px solid #e0e0e0;
        display: flex;
        justify-content: flex-end;
        gap: 1rem;
        flex-shrink: 0;
        background: #ffffff;
        position: sticky;
        bottom: 0;
        z-index: 10;
    }

    .admin-gallery-panel-close {
        background: transparent;
        border: none;
        font-size: 1.5rem;
        color: #666;
        cursor: pointer;
        padding: 0;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .admin-gallery-panel-close:hover {
        background: rgba(220, 53, 69, 0.1);
        color: #dc3545;
    }

    .admin-gallery-form-group {
        margin-bottom: 1.5rem;
    }

    .admin-gallery-form-label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #0d1526;
        font-size: 0.95rem;
    }

    .admin-gallery-form-label .required {
        color: #dc3545;
    }

    .admin-gallery-form-input {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        background: #ffffff;
    }

    .admin-gallery-form-input::placeholder {
        color: #9ca3af;
        opacity: 1;
    }

    .admin-gallery-form-input:focus {
        outline: none;
        border-color: rgb(255, 161, 0);
        box-shadow: 0 0 0 3px rgba(255, 161, 0, 0.1);
    }

    .admin-gallery-panel-btn {
        padding: 0.75rem 1.5rem;
        border-radius: 6px;
        font-size: 0.95rem;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .admin-gallery-panel-btn.save {
        background: linear-gradient(
            90deg,
            rgb(255, 161, 0) 0%,
            rgb(247, 71, 15) 50%,
            rgb(238, 17, 98) 100%
        );
        color: #ffffff;
    }

    .admin-gallery-panel-btn.save:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(255, 161, 0, 0.3);
    }

    .admin-gallery-panel-btn.cancel {
        background: #6c757d;
        color: #ffffff;
    }

    .admin-gallery-panel-btn.cancel:hover {
        background: #5a6268;
    }

    .admin-gallery-image-preview {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 1rem;
    }

    .admin-gallery-preview-item {
        position: relative;
        width: 120px;
        height: 120px;
        border-radius: 8px;
        overflow: hidden;
        border: 2px solid #e0e0e0;
    }

    .admin-gallery-preview-item img,
    .admin-gallery-preview-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .admin-gallery-preview-remove {
        position: absolute;
        top: 5px;
        right: 5px;
        background: #dc3545;
        color: #ffffff;
        border: none;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 0.75rem;
    }

    .admin-gallery-pagination-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1.5rem;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 8px;
    }

    .admin-gallery-pagination-info {
        color: #666;
        font-size: 0.9rem;
    }

    .admin-gallery-pagination-select {
        padding: 0.5rem;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        font-size: 0.9rem;
        margin: 0 0.5rem;
    }

    .admin-gallery-pagination {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    .admin-gallery-pagination .pagination {
        margin: 0;
        display: flex;
        gap: 0.5rem;
        list-style: none;
        padding: 0;
    }

    .admin-gallery-pagination .pagination .page-item {
        margin: 0;
    }

    .admin-gallery-pagination .pagination .page-link {
        color: #0d1526;
        border: 1px solid #e0e0e0;
        padding: 0.5rem 0.75rem;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
        background: #ffffff;
        display: block;
    }

    .admin-gallery-pagination .pagination .page-link:hover {
        background: rgba(255, 161, 0, 0.1);
        border-color: rgb(255, 161, 0);
        color: rgb(255, 161, 0);
    }

    .admin-gallery-pagination .pagination .page-item.active .page-link {
        background: rgb(255, 161, 0);
        border-color: rgb(255, 161, 0);
        color: #ffffff;
    }

    .admin-gallery-pagination .pagination .page-item.disabled .page-link {
        opacity: 0.5;
        cursor: not-allowed;
        background: #f8f9fa;
    }

    @media (max-width: 768px) {
        .admin-gallery-panel {
            width: 100%;
            max-width: 100%;
        }

        .admin-gallery-panel-body {
            padding: 1rem;
        }

        .admin-gallery-table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .admin-gallery-table {
            min-width: 600px;
        }

        .admin-gallery-pagination-wrapper {
            flex-direction: column;
            gap: 1rem;
        }

        .admin-gallery-table thead th {
            font-size: 0.7rem;
            padding: 0.5rem;
        }

        .admin-gallery-table tbody td {
            padding: 0.75rem 0.5rem;
            font-size: 0.8rem;
        }

        /* Dashboard Responsive */
        .admin-dashboard-stat-card {
            padding: 1.25rem;
        }

        .admin-dashboard-stat-icon {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }

        .admin-dashboard-stat-value {
            font-size: 1.75rem;
        }

        .admin-dashboard-stat-label {
            font-size: 0.85rem;
        }

        .admin-dashboard-table-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
        }

        .admin-dashboard-table-title {
            font-size: 1rem;
        }

        .admin-dashboard-table thead th,
        .admin-dashboard-table tbody td {
            padding: 0.75rem 1rem;
            font-size: 0.85rem;
        }

        .admin-dashboard-table-body {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .admin-dashboard-table {
            min-width: 600px;
        }
    }

    /* ========================================
   Gallery Navigation for Room Modal
   ======================================== */
    .gallery-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: all 0.3s ease;
    }

    .gallery-nav-btn:hover {
        background: rgba(0, 0, 0, 0.8);
        transform: translateY(-50%) scale(1.1);
    }

    .gallery-nav-btn:active {
        transform: translateY(-50%) scale(0.95);
    }

    #roomGalleryModal .gallery-main-image-container {
        position: relative;
        background: #f5f5f5;
        overflow: hidden;
        max-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #roomGalleryModal .gallery-main-image {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: contain;
        display: block;
    }

    #roomGalleryModal .gallery-thumbnails {
        max-height: 120px;
        overflow-y: auto;
    }

    #roomGalleryModal .gallery-thumbnail {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border: 2px solid transparent;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    #roomGalleryModal .gallery-thumbnail:hover {
        border-color: #ff6600;
        transform: scale(1.05);
    }

    #roomGalleryModal .gallery-thumbnail.active {
        border-color: #ff6600;
        box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
    }

    /* Room Description Styling */
    .room-description {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #666;
    }

    /* Load More Button Styling */
    #loadMoreBtn {
        background: linear-gradient(
            135deg,
            #ff6600 0%,
            #ff8533 100%
        ) !important;
        border: none !important;
        color: white !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
        transition: all 0.3s ease !important;
    }

    #loadMoreBtn:hover {
        background: linear-gradient(
            135deg,
            #ff8533 0%,
            #ff6600 100%
        ) !important;
        box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4) !important;
        transform: translateY(-2px) !important;
    }

    #loadMoreBtn:active {
        transform: translateY(0) !important;
        box-shadow: 0 2px 10px rgba(255, 102, 0, 0.3) !important;
    }
}

/* ===== SIMILAR ROOMS SECTION ===== */
.similar-rooms-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    padding: 50px 0;
    border-radius: 12px;
}

.similar-rooms-section .royal-rooms-heading {
    color: #1a1a1a;
    font-size: 38px;
    margin-bottom: 15px;
}

.similar-rooms-section .royal-rooms-subtitle {
    color: #ff6a00;
    font-size: 16px;
    font-weight: 500;
}

/* ===== TAG CLOUD HOVER ===== */
.tag-cloud span:hover {
    background: #ff6a00;
    color: #fff;
    transform: scale(1.05);
}

.room-slider .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
}

.room-slider .swiper-pagination-bullet-active {
    background: #ff6600;
    opacity: 1;
}

/* ===== RESPONSIVE ROOM DETAIL ===== */
@media (max-width: 991px) {
    .room-sidebar {
        padding-left: 0;
        margin-top: 40px;
        padding-top: 40px;
        border-top: 2px solid #f0f0f0;
    }

    .room-slider .swiper-wrapper {
        height: 350px;
    }

    .room-title {
        font-size: 32px;
    }

    .room-amenities {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    /* .room-ui {
        padding: 0px 0;
    } */

    .room-info {
        padding: 10px;
    }

    .room-slider {
        margin-bottom: 30px;
    }

    .room-slider .swiper-wrapper {
        height: 280px;
    }

    .room-title {
        font-size: 26px;
    }

    .room-desc {
        font-size: 14px;
    }

    .room-meta {
        gap: 15px;
        flex-direction: column;
    }

    .room-amenities {
        grid-template-columns: 1fr;
    }

    .room-sidebar {
        padding-left: 0;
        margin-top: 30px;
        padding-top: 30px;
    }

    .sidebar-title {
        font-size: 18px;
    }

    .tag-cloud {
        gap: 8px;
    }

    .tag-cloud span {
        padding: 6px 12px;
        font-size: 11px;
    }

    .similar-rooms-section {
        padding: 30px 0;
    }

    .similar-rooms-section .royal-rooms-heading {
        font-size: 28px;
    }
}

/* aminites page ui css design */
/* ===============================
   AMENITIES PAGE – HERO
================================ */
.amenitiespage-royal-section {
    padding: 90px 0;
    /* background: linear-gradient(135deg, #1c1c1c, #2a2a2a); */
    /* color: #ffffff; */
}

.amenitiespage-royal-content h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.amenitiespage-royal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    /* color: rgba(255, 255, 255, 0.88); */
}

.amenitiespage-royal-image img {
    width: 100%;
    height: auto;
    border-radius: 22px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45);
    object-fit: cover;
}

/* ===============================
   AMENITIES SECTION
================================ */
.amenitiespage-section {
    padding: 90px 0;
    background: #f8f8f8;
}

.amenitiespage-heading span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #c08a2d;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.amenitiespage-heading h1 {
    font-size: 2.7rem;
    font-weight: 700;
    color: #222;
}

/* ===============================
   AMENITY CARD
================================ */
.amenitiespage-card {
    background: #ffffff;
    padding: 42px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Gradient Hover Overlay */
.amenitiespage-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgb(255, 161, 0),
        rgb(247, 71, 15),
        rgb(238, 17, 98)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.amenitiespage-card:hover::before {
    opacity: 1;
}

.amenitiespage-card:hover {
    transform: translateY(-12px);
}

/* ICON */
.amenitiespage-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, #f5a623, #f76b1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

/* TEXT */
.amenitiespage-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
    position: relative;
    z-index: 1;
}

.amenitiespage-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    position: relative;
    z-index: 1;
}

/* TEXT COLOR ON HOVER */
.amenitiespage-card:hover h5,
.amenitiespage-card:hover p {
    color: #ffffff;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .amenitiespage-royal-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .amenitiespage-heading h1 {
        font-size: 2.2rem;
    }

    .amenitiespage-royal-section {
        padding: 70px 0;
    }

    .amenitiespage-section {
        padding: 70px 0;
    }
}
