/* Premium Redesign Overrides */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #2D5A27;
    /* Deep Forest Green */
    --accent-color: #D4AF37;
    /* Gold */
    --text-dark: #1A1A1A;
    --text-light: #F9F9F9;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --backdrop-blur: 10px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: #FDFDFD;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* Header Redesign - Glassmorphism */
.header-absolute {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(var(--backdrop-blur));
    -webkit-backdrop-filter: blur(var(--backdrop-blur));
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.sticky-header.sticky-on {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}

.menu-items ul li a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    color: #fff;
    /* Default to white on transparent header */
}

.sticky-header.sticky-on .menu-items ul li a {
    color: var(--text-dark);
}

/* Hero Section */
.banner-content .title {
    font-size: 5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
    margin-bottom: 20px;
}

.banner-content .promo-tag {
    font-family: 'Outfit', sans-serif;
    background: var(--glass-bg);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    color: #fff;
    letter-spacing: 2px;
}

.main-btn {
    border-radius: 50px;
    /* Modern pill shape */
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    padding: 0 40px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-btn.btn-filled {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(45, 90, 39, 0.3);
}

.main-btn.btn-filled:hover {
    background-color: #244820;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(45, 90, 39, 0.4);
}

/* Feature Boxes (Cards) */
.feature-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-box h3 {
    margin-top: 20px;
    font-size: 24px;
    color: var(--primary-color);
}

.feature-box .icon {
    transition: transform 0.4s ease;
}

.feature-box:hover .icon {
    transform: scale(1.1);
}

/* Typography Enhancements */
.section-title h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-title .title-tag {
    color: var(--accent-color);
    font-weight: 600;
}

/* Room Cards */
.room-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    background: #fff;
}

.room-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.room-img {
    height: 300px;
    transition: transform 0.5s ease;
}

.room-box:hover .room-img {
    transform: scale(1.05);
}

.room-desc {
    padding: 25px;
    background: #fff;
}

.room-desc .title a {
    color: var(--text-dark);
    transition: color 0.3s;
}

.room-desc .title a:hover {
    color: var(--accent-color);
}

.room-desc .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

/* Mobile Friendly Adjustments */
@media (max-width: 768px) {
    .banner-content .title {
        font-size: 3rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .feature-box,
    .room-box {
        margin-bottom: 30px;
    }

    /* Header tweaks for mobile */
    .header-absolute {
        background: transparent !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }

    .menu-items ul li a {
        color: #fff;
    }
}

/* -----------------------------------------------------------
   NEW CUSTOM MOBILE MENU (Overlay Style)
   ----------------------------------------------------------- */

/* Hide old toggle and menu on mobile if present */
@media (max-width: 991px) {
    .navbar-toggler {
        display: none !important;
    }

    .nav-menu {
        display: none !important;
    }
}

/* Hamburger Button */
.custom-hamburger {
    display: none;
    /* Hidden on desktop */
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 100000;
    /* Above overlay */
}

@media (max-width: 991px) {
    .custom-hamburger {
        display: block;
    }
}

/* Default to Primary Color (Dark Green) for visibility on white backgrounds */
.custom-hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

/* Ensure hamburger is visible on sticky white header */
.sticky-active .custom-hamburger span,
.sticky-header.sticky-active .custom-hamburger span {
    background: var(--primary-color);
}

.custom-hamburger span:nth-child(1) {
    top: 0px;
}

.custom-hamburger span:nth-child(2) {
    top: 10px;
}

.custom-hamburger span:nth-child(3) {
    top: 20px;
}

/* Mobile Menu Overlay */
.custom-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.custom-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

/* Close Button Inside Menu */
.close-menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 100001;
    transition: transform 0.3s;
}

.close-menu-btn:hover {
    transform: rotate(90deg);
}

.close-menu-btn span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    top: 50%;
    border-radius: 2px;
}

.close-menu-btn span:nth-child(1) {
    transform: rotate(45deg);
}

.close-menu-btn span:nth-child(2) {
    transform: rotate(-45deg);
}


.custom-mobile-menu ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.custom-mobile-menu ul li {
    margin: 15px 0;
    transform: translateY(40px) scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.custom-mobile-menu.active ul li {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Delay for stagger effect */
.custom-mobile-menu.active ul li:nth-child(1) {
    transition-delay: 0.1s;
}

.custom-mobile-menu.active ul li:nth-child(2) {
    transition-delay: 0.2s;
}

.custom-mobile-menu.active ul li:nth-child(3) {
    transition-delay: 0.3s;
}

.custom-mobile-menu.active ul li:nth-child(4) {
    transition-delay: 0.4s;
}

.custom-mobile-menu.active ul li:nth-child(5) {
    transition-delay: 0.5s;
}

.custom-mobile-menu.active ul li:nth-child(6) {
    transition-delay: 0.6s;
}

.custom-mobile-menu ul li a {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    /* Bigger */
    text-decoration: none;
    font-weight: 700;
    /* Bolder */
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
}

/* Add an animated underline effect on hover */
.custom-mobile-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: var(--accent-color);
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
}

.custom-mobile-menu ul li a:hover::after {
    width: 100%;
    left: 0;
    background: var(--accent-color);
}

.custom-mobile-menu ul li a:hover {
    color: var(--accent-color);
    transform: scale(1.05);
    /* Subtle pop on hover */
}

.custom-mobile-menu .menu-contact-info {
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    opacity: 0;
    transition: 0.4s;
}

.custom-mobile-menu.active .menu-contact-info {
    opacity: 1;
    transition-delay: 0.7s;
}

.custom-mobile-menu .menu-contact-info a {
    color: #fff;
    display: block;
    margin-top: 5px;
    font-size: 16px;
}

/* =========================================
   FOOTER REDESIGN
   ========================================= */

.footer-redesign {
    background-color: #0f1c16;
    /* Very Dark Green/Black */
    color: #fff;
    padding-top: 100px;
    position: relative;
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
}

/* Semi-transparent pattern overlay */
.footer-redesign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.footer-logo img {
    max-width: 200px;
    margin-bottom: 25px;
    filter: brightness(1.2);
    /* Make logo pop slightly on dark bg */
}

.footer-redesign .widget-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.5px;
}

.footer-redesign .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

.footer-redesign .col-lg-2:hover .widget-title::after {
    width: 60px;
}

.footer-redesign ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-redesign ul li {
    margin-bottom: 14px;
}

.footer-redesign ul li a {
    color: #b0b0b0;
    transition: 0.3s ease;
    font-size: 16px;
    display: inline-block;
    position: relative;
    font-weight: 400;
}

.footer-redesign ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    text-shadow: 0 0 20px rgba(91, 176, 48, 0.4);
}

.footer-redesign .contact-box {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.footer-redesign .contact-box .icon {
    font-size: 22px;
    color: var(--primary-color);
    margin-right: 18px;
    margin-top: 4px;
    background: rgba(255, 255, 255, 0.05);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-redesign .contact-box:hover .icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(180deg);
}

.footer-redesign .contact-box .desc h6 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-redesign .contact-box .desc a,
.footer-redesign .contact-box .desc p {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    transition: 0.3s;
}

.footer-redesign .contact-box a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 30px;
}

.footer-redesign .social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 50%;
    margin-right: 12px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.footer-redesign .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    background: transparent;
    /* Transparent to blend */
    padding: 30px 0;
    /* Slightly more padding */
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Lighter border for visibility */
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: #999;
    /* Lighten text slightly */
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.footer-bottom .team-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
    margin-left: 5px;
}

.footer-bottom .team-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: 0.3s;
}

.footer-bottom .team-link:hover {
    color: var(--primary-color);
}

.footer-bottom .team-link:hover::after {
    width: 100%;
}

/* =========================================
   PREMIUM ACTIVITY GRID
   ========================================= */

.premium-activity-grid {
    padding: 100px 0;
    background-color: #f8f9fa;
    /* Light, clean background */
}

.premium-activity-grid .section-title {
    margin-bottom: 50px;
    text-align: center;
}

.premium-activity-grid .section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: #0f1c16;
    margin-bottom: 10px;
}

.premium-activity-grid .section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.activity-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background: #000;
    transition: transform 0.4s ease;
}

.activity-card:hover {
    transform: translateY(-10px);
}

.activity-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.activity-card:hover .activity-card-bg {
    transform: scale(1.1);
}

.activity-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.9;
    transition: 0.3s;
}

.activity-card:hover .activity-card-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.activity-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: #fff;
    transform: translateY(20px);
    transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 2;
}

.activity-card:hover .activity-card-content {
    transform: translateY(0);
}

.activity-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.activity-card h3 a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.activity-card h3 a:hover {
    color: var(--primary-color);
}

.activity-card-divider {
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    margin: 10px 0 15px;
    transition: width 0.3s;
}

.activity-card:hover .activity-card-divider {
    width: 60px;
}

.activity-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: 0.4s;
    transition-delay: 0.1s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.activity-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.activity-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: translateY(-10px);
    transition: 0.4s;
}

.activity-card:hover .activity-icon {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   NEW HERO SECTION (No Video, Ken Burns)
   ========================================= */

.hero-wrapper {
    position: relative;
    height: 100vh;
    /* Full screen height */
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Update this path to your preferred hero image */
    background-image: url('../img/banner/banner1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenBurns 25s ease-out infinite alternate;
    z-index: 1;
}

/* Specific mobile override if needed */
@media (max-width: 768px) {
    .hero-bg {
        background-image: url('../img/banner/banner2.jpg');
        background-position: center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient for better text readability */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 0 15px;
    max-width: 900px;
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeSlideUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeSlideUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-description {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeSlideUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons {
    animation: fadeSlideUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s forwards;
    opacity: 0;
    transform: translateY(30px);
}

/* Animations */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }
}

/* =========================================
   PREMIUM TEXT BLOCK REDESIGN
   ========================================= */

.premium-text-block {
    padding: 120px 0;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

/* Background flourish */
.premium-text-block::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235bb030' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 1;
    border-radius: 50%;
}

.premium-content-wrapper {
    position: relative;
    z-index: 2;
    padding-left: 30px;
}

.premium-text-block .title-tag {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 60px;
}

.premium-text-block .title-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 45px;
    height: 2px;
    background-color: var(--primary-color);
}

.premium-text-block h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: #0f1c16;
    margin-bottom: 30px;
    line-height: 1.2;
}

.premium-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.premium-text-block strong {
    color: #0f1c16;
    font-weight: 600;
}

/* Image Composition */
.about-img-composition {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-main-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.about-main-img img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.about-main-img:hover img {
    transform: scale(1.05);
}

.about-accent-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 3;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    z-index: 4;
    box-shadow: 0 10px 20px rgba(91, 176, 48, 0.3);
}

.experience-badge span {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    font-family: 'Cormorant Garamond', serif;
}

.experience-badge small {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* =========================================
   PREMIUM FEATURES SECTION
   ========================================= */
.premium-features-section {
    padding: 100px 0;
    background-color: #0f1c16;
    /* Deep dark green/black */
    color: #fff;
}

.premium-feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 8px;
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.premium-feature-box:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.premium-feature-box .icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: 0.3s;
}

.premium-feature-box:hover .icon {
    transform: scale(1.1);
}

.premium-feature-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0.5px;
}

.premium-feature-box h3 a {
    color: #fff;
    text-decoration: none;
}

.premium-feature-box .count {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    transition: 0.3s;
}

.premium-feature-box:hover .count {
    color: rgba(255, 255, 255, 0.1);
    transform: scale(1.2);
}

/* =========================================
   PREMIUM COUNTER SECTION
   ========================================= */
.premium-counter-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.premium-counter-box {
    text-align: center;
    margin-bottom: 30px;
}

.premium-counter-box .icon {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.premium-counter-box h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 700;
    color: #0f1c16;
    line-height: 1;
    margin-bottom: 5px;
}

.premium-counter-box .title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =========================================
   PREMIUM BREADCRUMB
   ========================================= */
.premium-breadcrumb {
    position: relative;
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.premium-breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Darker overlay for text pop */
}

.premium-breadcrumb .breadcrumb-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.premium-breadcrumb span {
    display: block;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}

.premium-breadcrumb .page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.premium-breadcrumb .breadcrumb-nav {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-breadcrumb .breadcrumb-nav li {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.premium-breadcrumb .breadcrumb-nav li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.premium-breadcrumb .breadcrumb-nav li a:hover {
    color: var(--primary-color);
}

.premium-breadcrumb .breadcrumb-nav li+li::before {
    content: '•';
    margin: 0 10px;
    color: var(--primary-color);
}

/* =========================================
   PREMIUM ROOM LIST REDESIGN
   ========================================= */

.premium-room-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.premium-room-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.premium-room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.premium-room-img-wrap {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.premium-room-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.premium-room-card:hover .premium-room-img {
    transform: scale(1.1);
}

.premium-room-price-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.premium-room-content {
    padding: 40px;
}

.premium-room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.premium-room-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: #0f1c16;
    margin: 0;
    line-height: 1.2;
}

.premium-room-title a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.premium-room-title a:hover {
    color: var(--primary-color);
}

.premium-room-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.premium-room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #eee;
}

.premium-amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    background: #f4f4f4;
    padding: 8px 15px;
    border-radius: 5px;
}

.premium-amenity-item i {
    color: var(--primary-color);
}

.premium-room-footer {
    display: flex;
    justify-content: flex-end;
}

.btn-premium-filled {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-block;
    border: 2px solid var(--primary-color);
}

.btn-premium-filled:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Fix for Hero Buttons on Mobile */
@media (max-width: 767px) {
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-buttons .main-btn {
        margin-left: 0 !important;
        margin-right: 0 !important;
        min-width: 200px;
    }

    /* Center Premium Text Block Content (Discover Our Story) on Mobile */
    .premium-content-wrapper {
        text-align: center;
        padding-left: 0;
        margin-top: 30px;
    }

    .premium-text-block .title-tag {
        padding-left: 0;
    }

    .premium-text-block .title-tag::before {
        display: none;
    }
}