/* Luxury Resort Theme Styles */

/* 1. Fonts & Variables */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #D4AF37;
    /* Gold */
    --secondary-dark: #b89628;
    --text-color: #333333;
    --text-light: #f4f4f4;
    --bg-light: #f9f9f9;
    --bg-dark: #121212;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s ease;
}

/* 2. Global Resets & Typography */
html,
body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: #fff;
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.text-gold {
    color: var(--secondary-color) !important;
}

.bg-black {
    background-color: var(--primary-color) !important;
    color: white;
}

.bg-gold {
    background-color: var(--secondary-color) !important;
}

/* Fix for headings on dark backgrounds */
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-black h1,
.bg-black h2,
.bg-black h3,
.bg-black h4,
.bg-black h5,
.bg-black h6 {
    color: white !important;
}

/* 3. Helper Classes */
.section-padding {
    padding: 100px 0;
}

.luxury-heading {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.luxury-heading h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.luxury-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.luxury-heading p {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* 4. Buttons */
.btn-luxury {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 35px;
    border: 2px solid var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: var(--transition);
    display: inline-block;
}

.btn-luxury:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-luxury-outline {
    background-color: transparent;
    color: var(--secondary-color);
    padding: 15px 35px;
    border: 2px solid var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: var(--transition);
    display: inline-block;
}

.btn-luxury-outline:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* 5. Navigation */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white !important;
}

.navbar-brand span {
    color: var(--secondary-color);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-left: 20px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--secondary-color) !important;
}

/* 6. Footer */
footer {
    background-color: #0a0a0a;
    color: #fff;
    padding-top: 80px;
    border-top: 5px solid var(--secondary-color);
}

.footer-widget h4 {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #000;
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid #222;
}

/* 7. Components & Sections */
/* Hero */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(18, 18, 18, 1) 100%);
    /* Merges into --bg-dark */
    z-index: 2;
    /* Overlay for text readability and section merging */
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

@media (max-width: 768.98px) {
    .hero-section {
        height: 90vh;
        /* More breathing room on mobile */
    }

    .hero-content {
        padding-top: 120px;
        /* Clearly below the navbar */
    }

    .hero-content h1 {
        font-size: 2.8rem;
        /* Slightly larger for impact */
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        height: 90vh;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .btn-luxury {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .btn-luxury-outline {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

.hero-content h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-style: italic;
    margin-bottom: 40px;
}

/* Room Cards */
.room-card {
    position: relative;
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
    margin-bottom: 30px;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.room-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
    margin: 10px;
    border-radius: 20px;
}

.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.room-card:hover img {
    transform: scale(1.15);
}

.room-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(212, 175, 55, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: black;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.room-details {
    padding: 25px 30px 35px;
    text-align: center;
}

.room-details h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    color: var(--primary-color) !important;
    /* Ensures visibility on light bg */
    transition: var(--transition);
}

.room-card:hover .room-details h3 {
    color: var(--secondary-color);
    /* Interactive gold hover */
}

.room-details p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* USP Cards Redesign */
.usp-section {
    padding: 120px 0;
    background-color: var(--bg-light);
}

.usp-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.usp-item:nth-child(even) {
    flex-direction: row-reverse;
}

.usp-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.usp-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    transform: scale(1.1);
}

.usp-item:hover .usp-image-wrapper img {
    transform: scale(1.0);
}

.usp-content-wrapper {
    flex: 1;
    padding: 20px;
}

.usp-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    margin-bottom: -20px;
    font-weight: 700;
}

.usp-content-wrapper h3 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
}

.usp-content-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.usp-item:nth-child(even) .usp-content-wrapper h3::after {
    left: auto;
    right: 0;
}

.usp-content-wrapper p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.usp-item:nth-child(even) .usp-content-wrapper {
    text-align: right;
}

@media (max-width: 991.98px) {

    .usp-item,
    .usp-item:nth-child(even) {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .usp-image-wrapper {
        width: 100%;
        height: 350px;
    }

    .usp-content-wrapper h3::after {
        left: 50% !important;
        transform: translateX(-50%);
    }

    .usp-content-wrapper {
        text-align: center !important;
    }

    .usp-number {
        font-size: 4rem;
    }

    .usp-content-wrapper h3 {
        font-size: 2.2rem;
    }
}

/* Testimonial Section Enhancement */
.testimonials-section {
    background-color: #fcfaf5;
    /* Very subtle luxury off-white */
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.testimonial-swiper {
    padding: 20px 10px 60px;
}

.testimonial-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonial-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.swiper-pagination-bullet {
    background: var(--secondary-color);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
    opacity: 1;
    width: 25px;
    border-radius: 10px;
}

.testimonial-card {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin: 15px 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(212, 175, 55, 0.1);
    border-color: var(--secondary-color);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: serif;
}

.star-rating {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.guest-info {
    margin-top: auto;
}

.guest-info img {
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.guest-info h6 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.guest-info small {
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}


/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: white;
    cursor: pointer;
}

/* Animations helpers */
[data-aos] {
    transition-duration: 0.8s !important;
}

/* Navigation Dropdown */
.dropdown-menu {
    background-color: #000;
    border: 1px solid var(--secondary-color);
    border-radius: 0;
}

.dropdown-item {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--secondary-color);
    color: #000 !important;
}

.dropdown-divider {
    border-top: 1px solid rgba(197, 160, 89, 0.3);
}

/* Mobile Navbar Fixes */
@media (max-width: 991.98px) {
    .navbar {
        padding: 5px 0;
        /* Compact navbar on mobile */
        background-color: rgba(0, 0, 0, 0.9);
        /* Always dark on mobile for visibility */
    }

    .navbar-collapse {
        background-color: #000;
        /* Solid background for menu */
        padding: 20px;
        margin-top: 15px;
        border-top: 1px solid var(--secondary-color);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        text-align: center;
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .btn-luxury {
        width: 100%;
        text-align: center;
        margin-top: 20px;
        display: block;
    }

    .navbar-toggler {
        border: none;
        padding: 0;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Fix typography on small screens */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .luxury-heading h2 {
        font-size: 2rem;
    }
}

/* WhatsApp Promo Button */
.btn-whatsapp-promo {
    background-color: #25D366 !important;
    color: white !important;
    font-weight: bold;
    position: relative;
    overflow: visible;
    border: none;
    animation: pulse-green 2s infinite;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-whatsapp-promo:hover {
    background-color: #128c7e !important;
    color: white !important;
    transform: translateY(-2px);
}

.btn-whatsapp-promo::after {
    content: "Flat 7% OFF";
    position: absolute;
    top: -15px;
    right: -10px;
    background: #ff0000;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: rotate(5deg);
    white-space: nowrap;
    z-index: 10;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Call Promo Button Refined */
.btn-call-promo {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    font-weight: 800;
    position: relative;
    overflow: visible;
    border: none;
    animation: pulse-gold 2s infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 12px 28px !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.promo-or-separator {
    display: block;
    color: #888;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 15px auto;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-call-promo:hover {
    background-color: var(--secondary-dark) !important;
    color: var(--primary-color) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-call-promo i {
    font-size: 1.1rem;
    margin-right: 10px;
    display: inline-block;
    /* animation: phone-ringing 1.5s infinite ease-in-out; */
}

.btn-call-promo:hover i {
    animation: phone-ringing 0.5s infinite ease-in-out;
}

.btn-call-promo::after {
    content: "Flat 7% OFF";
    position: absolute;
    top: -18px;
    right: -12px;
    background: #ff3b3b;
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(255, 59, 59, 0.3);
    transform: rotate(12deg);
    white-space: nowrap;
    z-index: 10;
    border: 2px solid white;
    animation: badge-pulse 2s infinite;
}

@keyframes phone-ringing {
    0% {
        transform: rotate(0) scale(1.1);
    }

    10% {
        transform: rotate(-15deg) scale(1.1);
    }

    20% {
        transform: rotate(15deg) scale(1.1);
    }

    30% {
        transform: rotate(-15deg) scale(1.1);
    }

    40% {
        transform: rotate(15deg) scale(1.1);
    }

    50% {
        transform: rotate(0) scale(1.1);
    }

    100% {
        transform: rotate(0) scale(1.1);
    }
}

@keyframes badge-pulse {
    0% {
        transform: rotate(12deg) scale(1);
    }

    50% {
        transform: rotate(12deg) scale(1.1);
    }

    100% {
        transform: rotate(12deg) scale(1);
    }
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* 8. Restaurant Section Styling */
.restaurant-section {
    background-color: #0d0d0d;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.restaurant-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.restaurant-grid {
    position: relative;
    height: 600px;
}

.rest-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.rest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.rest-img-lg {
    width: 80%;
    height: 500px;
    top: 0;
    left: 0;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rest-img-sm {
    width: 60%;
    height: 350px;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 3px solid #0d0d0d;
}

.restaurant-grid:hover .rest-img-lg {
    transform: translate(-10px, -10px) rotate(-1deg);
}

.restaurant-grid:hover .rest-img-sm {
    transform: translate(10px, 10px) rotate(1deg);
}

.restaurant-grid:hover img {
    transform: scale(1.1);
}

.cuisine-tag {
    display: inline-block;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.cuisine-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: var(--secondary-color);
}

.text-gold {
    color: var(--secondary-color) !important;
}

.rest-feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.rest-feature-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.rest-feature-card i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.rest-feature-card span {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Mobile adjustments for Restaurant Section */
@media (max-width: 991.98px) {
    .restaurant-grid {
        height: 500px;
        margin-bottom: 50px;
    }

    .rest-img-lg {
        width: 100%;
        height: 400px;
    }

    .rest-img-sm {
        width: 70%;
        height: 250px;
        bottom: -30px;
    }
}

@media (max-width: 575.98px) {
    .restaurant-grid {
        height: 400px;
    }

    .rest-img-lg {
        height: 300px;
    }

    .rest-img-sm {
        display: none;
        /* Hide smaller image on very small screens for better focus */
    }

    .rest-feature-card {
        padding: 15px 10px;
    }

    .rest-feature-card i {
        font-size: 1.5rem;
    }
}

/* 9. Video Section Branding */
.video-preview-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.2);
    aspect-ratio: 16 / 9;
}

.video-preview-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-preview-wrapper:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.video-preview-wrapper:hover .video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-button-outer {
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-button-outer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: video-pulse 2s infinite;
}

.play-button-outer i {
    font-size: 2.5rem;
    color: #000;
    margin-left: 5px;
    /* Visual centering for play icon */
}

.video-preview-wrapper:hover .play-button-outer {
    transform: scale(1.1);
    background: var(--secondary-color);
}

@keyframes video-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@media (max-width: 768.98px) {
    .play-button-outer {
        width: 80px;
        height: 80px;
    }

    .play-button-outer i {
        font-size: 2rem;
    }
}

/* 4. Room Page Specific Styles */
.room-main-img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .room-main-img {
        height: 400px;
    }
}

@media (max-width: 575.98px) {
    .room-main-img {
        height: 300px;
    }
}

/* Amenities 2-column grid on mobile */
@media (max-width: 767.98px) {
    .row.mb-5>[class*="col-md-4"] {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Urgency Label */
.urgency-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #FF3B30;
    color: white;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.4);
    animation: pulse-red 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency-tag i {
    color: #FFD700;
}

.urgency-tag-main {
    font-size: 1rem;
    padding: 8px 18px;
    border-radius: 10px;
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 59, 48, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}