
html { scroll-behavior: smooth; }

:root {
    --rich-green: #18392b;
    --deep-forest: #10281e;
    --emerald: #086a39;
    --moss: #3a5c3d;
    --lux-gold: #086a39;
    --accent-green: #4caf50;
    --earth-brown: #7c5c3b;
    --text-light: #e6f4ea;
    --text-muted: #000000;
    --bg-dark: #ffffff;
    --bg-darker: #0a120d;
    --shadow-premium: 0 8px 32px 0 rgba(24, 57, 43, 0.45);
    --gradient-premium: linear-gradient(135deg, #18392b 0%, #086a39 100%);
    --gradient-gold: linear-gradient(90deg, #e3c77b 0%, #bfa14a 100%);
    --border-glow: 0 0 0 2px #086a3944;
    --section-padding: 4rem 1rem;
    --section-padding-tablet: 3rem 1rem;
    --section-padding-mobile: 2rem 1rem;
    --section-padding-small: 1.2rem 0.5rem;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    background: var(--bg-dark);
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    letter-spacing: 0.01em;
    font-size: 1.08rem;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%
}

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

/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent scrollbar positioning issues during load */
html {
    overflow-y: scroll;
}

body {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* === PREMIUM NAVIGATION BAR === */
.navbar {
    position: fixed;
    top: 0;
    width: 100vw;
    background: white;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.4s cubic-bezier(.77, 0, .18, 1), box-shadow 0.4s;
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1.5px solid #086a3933;
}

.nav-container {
    width: 100vw;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.main-logo {
    width: 5rem;
    height: auto;
    max-height: 70px;
    object-fit: contain;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-link {
    text-decoration: none;
    color: #086a39;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 0.2em 0.5em;
    transition: color 0.25s, text-shadow 0.25s;
    border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
    /* color: white; */
    /* text-shadow: 0 0 8px #e3c77b88, 0 2px 8px #2ecc7a44; */
    background: linear-gradient(90deg, #086a3922 0%, #e3c77b22 100%);
    /* box-shadow: var(--border-glow); */
    transition: all 0.25s cubic-bezier(.77, 0, .18, 1);
}

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

/* Hamburger for mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.bar {
    width: 26px;
    height: 3px;
    background: var(--emerald);
    border-radius: 2px;
    margin: 2.5px 0;
    transition: all 0.3s cubic-bezier(.77, 0, .18, 1);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* === PREMIUM BUTTONS === */
.btn {
    display: inline-block;
    padding: 13px 34px;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1.08rem;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    background: var(--gradient-premium);
    color: var(--lux-gold);
    box-shadow: 0 2px 16px 0 #086a3933;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.15s;
}

.btn:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.18;
    transition: width 0.4s cubic-bezier(.77, 0, .18, 1), height 0.4s cubic-bezier(.77, 0, .18, 1);
    z-index: 0;
}

.btn:hover:before {
    width: 250%;
    height: 400%;
}



.btn:active {
    transform: scale(0.97);
    box-shadow: 0 1px 6px 0 #086a3933;
}

.btn-primary {
    background: var(--gradient-premium);
    color: #ffffff;
    border: 2px solid var(--emerald);
}

.btn-primary:hover {
    background: var(--gradient-gold);
    color: var(--deep-forest);
    border-color: var(--lux-gold);
}

.btn-secondary {
    /* background: transparent; */
    color: white;
    border: 2px solid var(--emerald);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--emerald);
    color: var(--bg-dark);
    border-color: var(--lux-gold);
}

.btn-booking {
    background: #086a39;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: 0 2px 12px 0 #086a3944;
}

.btn-booking:hover {
    background: #086a39;
    color: white;
    border-color: var(--emerald);
}

.btn-explore {
    background: var(--lux-gold);
    color: var(--deep-forest);
    border: 2px solid var(--emerald);
    font-size: 1.1rem;
}

.btn-explore:hover {
    background: var(--emerald);
    color: var(--lux-gold);
    border-color: var(--lux-gold);
}

.btn-book-now {
    background: white;
    color: var(--text-dark);
    padding: 12px 25px;
    font-size: 0.9rem;
}

.btn-book-now:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.btn-subscribe {
    background: white;
    color: #2c3e50;
    padding: 12px 25px;
    font-size: 0.9rem;
    width: 100%;
    margin-top: 1rem;
}

.btn-subscribe:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    background: var(--gradient-nature);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* === STUNNING PREMIUM HERO SECTION === */
.hero {
    min-height: 100vh;
    padding-bottom: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* Hero Background Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hero-slide:hover img {
    transform: scale(1.05);
}



/* Hero Slider Dots - Hidden */
.hero-slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: none !important;
    gap: 0.8rem;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    display: none !important;
}

.hero-dot.active {
    background: white;
    transform: scale(1.2);
    display: none !important;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(16, 26, 20, 0.5) 0%,
            rgba(24, 57, 43, 0.5) 50%,
            rgba(46, 204, 122, 0.2) 100%);
    z-index: 2;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(46, 204, 122, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(24, 57, 43, 0.4);
    animation: float 8s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    transition: all 0.3s cubic-bezier(.77, 0, .18, 1);
    min-width: 200px;
    max-width: 260px;
    min-height: 180px;
}

.floating-card:hover {
    transform: translateY(-7px) scale(1.04);
    box-shadow: 0 18px 60px 0 rgba(46, 204, 122, 0.18), 0 2px 16px 0 #e3c77b33;
    border-color: var(--emerald);
    background: rgba(24, 57, 43, 0.98);
}

.floating-card .card-icon {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--emerald), var(--lux-gold));
    color: var(--bg-dark);
    border-radius: 50%;
    padding: 0.5rem 0.7rem;
    box-shadow: 0 2px 12px #086a3933;
    margin-bottom: 0.2rem;
}

.floating-card .card-content h3 {
    color: var(--lux-gold);
    font-size: 1.15rem;
    font-family: 'Poppins', serif;
    font-weight: 700;
    margin-bottom: 0.2rem;
    letter-spacing: 0.01em;
}

.floating-card .card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

.floating-card .btn-explore {
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.98rem;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    box-shadow: 0 2px 12px #086a3933;
    background: var(--gradient-premium);
    color: var(--lux-gold);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.floating-card .btn-explore:hover {
    background: var(--gradient-gold);
    color: var(--deep-forest);
    box-shadow: 0 4px 24px 0 #e3c77b55, 0 2px 16px 0 #086a3933;
}

.premium-card {
    top: 20%;
    right: 10%;
    width: 250px;
    animation-delay: 1s;
    pointer-events: auto;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-content h3 {
    color: var(--lux-gold);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
}

.btn-explore {
    background: linear-gradient(135deg, var(--emerald), var(--lux-gold));
    color: var(--bg-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 204, 122, 0.4);
}

.stats-card {
    bottom: 20%;
    right: 10%;
    width: 200px;
    animation-delay: 2s;
    pointer-events: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--lux-gold);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
}

/* Main Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Hero Text */
.hero-text {
    margin-top:100px;
    text-align: center;
    max-width: 100vw;
    padding: 6rem 1rem 1rem;
    animation: fadeInUp 1.5s ease-out;
}

/* Premium Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(16, 26, 20, 0.9), rgba(24, 57, 43, 0.8));
    border: 1px solid rgba(227, 199, 123, 0.4);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: slideInLeft 1s ease-out 0.5s both;
    box-shadow: 0 4px 20px rgba(16, 26, 20, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
    color: var(--lux-gold);
}

.badge-text {
    /* color: var(--deep-forest); */
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 1px 2px rgba(16, 26, 20, 0.5);
}

/* Hero Title */
.hero-title {
    margin-top:100px;
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-light);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.title-line {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 0.8s ease-out forwards;
    white-space: nowrap;
}

.title-line:nth-child(1) {
    animation-delay: 0.8s;
}

.title-line:nth-child(2) {
    animation-delay: 1s;
}

.title-line:nth-child(3) {
    animation-delay: 1.2s;
}

.title-line:nth-child(4) {
    animation-delay: 1.4s;
}

.title-line.highlight {
    color: var(--lux-gold);
    text-shadow: 0 0 20px rgba(227, 199, 123, 0.5);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    animation: fadeInUp 1s ease-out 1.6s both;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(46, 204, 122, 0.1);
    border: 1px solid #086a3933;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(.77, 0, .18, 1);
}

.feature-item:hover {
    background: rgba(46, 204, 122, 0.2);
    border-color: var(--emerald);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px #086a3933;
}

.feature-item i {
    color: var(--emerald);
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--text-light);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 2.6s both;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--emerald), var(--lux-gold));
    border: none;
    box-shadow: 0 0 30px rgba(46, 204, 122, 0.4);
    color: var(--bg-dark);
    font-weight: 700;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow .btn-text {
    color: var(--bg-dark);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--emerald);
    color: var(--emerald);
}

.btn-outline:hover {
    background: var(--emerald);
    color: var(--bg-dark);
}

.btn-icon {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 2.8s both;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--lux-gold);
    font-family: 'Poppins', sans-serif;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
}

/* Hero Visual Section */
.hero-visual {
    position: relative;
    animation: fadeInRight 1.5s ease-out 0.5s both;
}

.hero-image-container {
    position: relative;
    height: 600px;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(24, 57, 43, 0.4);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
}

.main-image:hover img {
    transform: scale(1.05);
}

.floating-image {
    position: absolute;
    width: 120px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.floating-2 {
    bottom: 20%;
    right: 20px;
    animation-delay: 3s;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(16, 26, 20, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(46, 204, 122, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(24, 57, 43, 0.4);
    animation: float 8s ease-in-out infinite;
}

.premium-card {
    top: 10%;
    right: 5%;
    width: 200px;
    animation-delay: 1s;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 1.5rem;
}

.card-title {
    color: var(--lux-gold);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.stats-card {
    bottom: 10%;
    left: 5%;
    width: 150px;
    animation-delay: 2s;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lux-gold);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 4;
    animation: fadeInUp 1s ease-out 3s both;
}

.scroll-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.scroll-arrow {
    color: var(--emerald);
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
}

/* === PREMIUM ANIMATIONS === */
@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.2) rotate(180deg);
    }
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes mist {

    0%,
    100% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

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

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

/* === PREMIUM CONTENT SECTIONS === */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    /* text-shadow: 0 2px 8px #18392b66; */
}

.section-header p {
    font-size: 1.2rem;
    color: black;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

/* === PREMIUM BOOKING BAR === */
.booking-bar {
    background: linear-gradient(135deg, var(--rich-green) 0%, var(--deep-forest) 100%);
    padding: 2rem 0;
    border-top: 1px solid #086a3933;
    border-bottom: 1px solid #086a3933;
    box-shadow: 0 4px 16px rgba(24, 57, 43, 0.4);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: var(--lux-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--emerald);
    margin-right: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(16, 26, 20, 0.8);
    /* border: 1px solid #2ecc7a44; */
    border-radius: 12px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(.77, 0, .18, 1);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    /* border-color: var(--emerald); */
    /* box-shadow: 0 0 0 3px #2ecc7a22; */
    background: rgba(16, 26, 20, 0.95);
}

.btn-book-now {
    background: var(--emerald);
    color: var(--bg-dark);
    border: 2px solid var(--lux-gold);
    font-weight: 700;
    letter-spacing: 0.06em;
    /* box-shadow: 0 4px 16px #2ecc7a44; */
    transition: all 0.3s cubic-bezier(.77, 0, .18, 1);
}

.btn-book-now:hover {
    background: var(--lux-gold);
    color: var(--deep-forest);
    border-color: var(--emerald);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px #e3c77b44;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

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

/* Welcome Section */
.welcome {
    padding: 80px 0;
    background: #f8f9fa;
}

.welcome-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.welcome-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
}

/* Quick Booking */
.quick-booking {
    padding: 80px 0;
    background: var(--text-dark);
    color: white;
}

.quick-booking h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Booking Bar */
.booking-bar {
    background: var(--primary-green);
    padding: 2rem 0;
    color: white;
}

.booking-bar .booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.booking-bar .form-group {
    margin-bottom: 0;
}

.booking-bar .form-group label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.booking-bar .form-group input,
.booking-bar .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-size: 0.9rem;
}

.booking-bar .form-group input:focus,
.booking-bar .form-group select:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.booking-bar .btn-book-now {
    background: white;
    color: var(--primary-green);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.booking-bar .btn-book-now:hover {
    background: var(--secondary-green);
    color: white;
    transform: translateY(-2px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    background: #218151;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-green);
    pointer-events: none;
    font-size: 1.1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Form validation styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: var(--primary-green);
    /* box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1); */
}

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Rooms Section */
.rooms {
    padding: 80px 0;
    background: #f8f9fa;
}

.rooms h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.room-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.price-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(46, 139, 87, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.room-content {
    padding: 1.5rem;
}

.room-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.room-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.room-details span {
    color: #666;
    font-size: 0.9rem;
}

.room-details i {
    margin-right: 0.5rem;
    color: var(--primary-green);
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

.rating .far {
    color: #ddd;
}

/* Room Details Section */
.room-details-section {
    /* padding: 80px 0; */
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.room-info h2,
.amenities h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.room-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.amenities ul {
    list-style: none;
}

.amenities li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.amenities li i {
    color: var(--primary-green);
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery {
    padding-bottom: 80px;
    background: #f8f9fa;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    width: calc(33.3333% - 1rem);
    min-width: 280px;
    box-sizing: border-box;
    margin-bottom: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Mobile-friendly gallery interactions */
@media (max-width: 768px) {
    .gallery-item {
        position: relative;
        cursor: pointer;
    }

    .gallery-item img {
        transition: transform 0.3s ease;
    }

    .gallery-item img:hover {
        transform: none;
        /* Disable hover scale on mobile */
    }

    .gallery-overlay {
        transform: translateY(0);
        /* Always show overlay on mobile */
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
        padding: 1rem;
    }

    .gallery-overlay h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .gallery-overlay p {
        font-size: 0.8rem;
        opacity: 0.9;
    }

    /* Add tap feedback */
    .gallery-item:active {
        transform: scale(0.98);
    }

    .gallery-item:active img {
        transform: scale(0.98);
    }
}

/* Lightbox for mobile gallery */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-info {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
}

.lightbox-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.lightbox-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Gallery Filters */
.gallery-filters {
    padding: 40px 0;
    background: white;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-green);
    background: transparent;
    color: var(--primary-green);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-green);
    color: white;
}

/* Facilities Section */
.facilities {
    padding: 80px 0;
    background: #f8f9fa;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.facility-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.facility-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.facility-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.facility-card ul {
    list-style: none;
    text-align: left;
}

.facility-card li {
    padding: 0.3rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.facility-card li i {
    color: var(--primary-green);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background: white;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
}

.service-item i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-item p {
    color: #666;
}

/* Offers Section */
.offers {
    padding: 80px 0;
    background: #f8f9fa;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.offer-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.offer-content {
    padding: 2rem;
}

.offer-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.offer-price {
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.discounted-price {
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: 700;
}

.per-night {
    color: #666;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.offer-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.offer-content li {
    padding: 0.3rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.offer-content li i {
    color: var(--primary-green);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Seasonal Offers */
.seasonal-offers {
    padding: 80px 0;
    background: white;
}

.seasonal-offers h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.seasonal-card {
    background: var(--gradient-nature);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.seasonal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.seasonal-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.seasonal-discount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #131d18;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(46, 204, 122, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.contact-item:hover {
    background: rgba(46, 204, 122, 0.1);
    border-color: var(--emerald);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 122, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--emerald), #27ae60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(46, 204, 122, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(46, 204, 122, 0.4);
}

.contact-text h3 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-text p {
    color: #e8e8e8;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-text p br {
    display: block;
    content: "";
    margin-top: 0.3rem;
}

.contact-form {
    background: #077f412f;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: white;
    color: #333;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}


/* Booking Section */
.booking {
    padding: 80px 0;
    background: var(--bg-light);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.booking-form-container {
    background: #218151;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-form-container h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.booking-form-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.booking-summary {
    background: #218151;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    /* top: 100px; */
}

.booking-summary h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.booking-summary h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.summary-content {
    margin-bottom: 2rem;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-item span:first-child {
    color: var(--text-light);
    font-weight: 500;
}

.summary-item span:last-child {
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 2px solid var(--primary-green);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.booking-features h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.booking-features ul {
    list-style: none;
}

.booking-features li {
    padding: 0.3rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.booking-features li i {
    color: var(--primary-green);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Room Selection */
.room-selection {
    padding: 80px 0;
    background: #131d18;
}

.room-selection h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.room-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.room-features span {
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
}

.room-features span i {
    margin-right: 0.3rem;
    color: var(--primary-green);
}

/* CTA Sections */
.booking-cta,
.gallery-cta {
    padding: 80px 0;
    background: var(--gradient-nature);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    /* background: linear-gradient(135deg, var(--bg-darker) 0%, var(--rich-green) 100%); */
    color: black;
    padding: 4rem 0 2rem;
    border-top: 2px solid #086a3933;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="0.5" fill="%23086a39" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.6;
}

.footer-content {
    max-width: 1200px;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.my-footer-logo {
    display: flex;
    width: 7rem;
    height: auto;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.footer-section h4 {
    color: var(--lux-gold);
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    /* text-shadow: 0 2px 8px #18392b66; */
    border-bottom: 3px solid rgba(227, 199, 123, 0.4);
    padding-bottom: 0.8rem;
    width: 100%;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--emerald);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
    padding: 0.3rem 0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    background: rgba(8, 106, 57, 0.1);
    padding-left: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    display: block;
    width: 100%;
}

.footer-section ul li a:hover {
    color: var(--emerald);
    text-shadow: 0 0 8px #086a3944;
}

.social-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #086a39;
    border: 1px solid rgba(8, 106, 57, 0.2);
    border-radius: 16px;
    color: #086a39;
    text-decoration: none;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #086a39;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(8, 106, 57, 0.4);
}

.footer-bottom {
    border-top: 1px solid #086a3933;
    padding-top: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-bottom p {
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--emerald);
}

/* === ULTRA-RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .hero-content {
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .rooms-showcase,
    .activities-grid,
    .gallery-grid {
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .btn-booking {
        display: none;
    }

    /* Footer Large Screen Layout */
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
        gap: 2.5rem;
        padding: 4rem 2rem;
    }
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
      margin-top:-100px;
        font-size: 3rem;
    }

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

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

    .rooms-showcase,
    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .booking-form {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }

    /* Footer Tablet Layout */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .newsletter {
        grid-column: 1 / -1;
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }
    
    .room-badge {
        top: 0.8rem;
        right: 0.8rem;
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        z-index: 2;
    }
    
    .room-content h3 {
        font-size: 1.3rem;
        padding-right: 100px;
        margin-bottom: 0.8rem;
    }

    /* Contact Items Mobile Fix */
    .contact-details {
        gap: 1rem;
    }

    .contact-item {
        padding: 1rem;
        gap: 1rem;
        margin-bottom: 0.5rem;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .contact-text h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .contact-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(16, 26, 20, 0.98);
        backdrop-filter: blur(16px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 8px 32px rgba(24, 57, 43, 0.6);
        border-top: 1px solid #086a3933;
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-item {
        margin: 0.5rem 0;
    }

    .nav-actions {
        gap: 0.8rem;
    }

    .btn-booking {
        padding: 8px 16px;
        font-size: 0.9rem;
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-features {
        gap: 1rem;
    }

    .feature-item {
        padding: 0.6rem 1rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .room-info h3,
    .activity-content h3,
    .gallery-overlay h3 {
        font-size: 1.6rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .booking-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .newsletter {
        grid-column: 1 / -1;
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }

    .footer-section {
        padding: 2rem 0;
        text-align: center;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .footer-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .footer .main-logo {
        width: 15rem;
        transform: scale(1.8);
    }

    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section p {
        font-size: 0.9rem;
        text-align: center;
    }

    .footer-section ul {
        text-align: center;
    }

    .footer-section ul li {
        text-align: center;
        padding: 0.4rem 0;
    }

    .footer-section ul li:hover {
        padding-left: 0;
        background: rgba(46, 204, 122, 0.1);
        border-radius: 8px;
    }

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

    .footer .footer-contact p {
        justify-content: center;
        font-size: 0.9rem;
    }

    .footer .social-links {
        justify-content: center;
        gap: 1rem;
    }

    .footer .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .newsletter-form {
        align-items: center;
    }

    .newsletter-form input[type="email"] {
        text-align: center;
        font-size: 14px;
    }

    .newsletter-form button {
        font-size: 14px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .room-badge {
        top: 0.6rem;
        right: 0.6rem;
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
        z-index: 2;
    }
    
    .room-content h3 {
        font-size: 1.1rem;
        padding-right: 80px;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .room-info,
    .activity-content {
        padding: 1.5rem;
    }

    .room-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .gallery-overlay {
        padding: 1.5rem;
    }

    .gallery-overlay h3 {
        font-size: 1.4rem;
    }

    .booking-form {
        padding: 0 1rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    /* Contact Items Small Mobile Fix */
    .contact-details {
        gap: 0.8rem;
    }

    .contact-item {
        padding: 0.8rem;
        gap: 0.8rem;
        margin-bottom: 0.3rem;
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .contact-text h3 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .contact-text p {
        font-size: 0.85rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Footer Small Mobile Fix */
    .footer-content {
        margin-right: -200px;
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .newsletter {
        grid-column: 1 / -1;
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }

    .footer-section {
        padding: 1.5rem 0;
        margin-bottom: 1rem;
    }

    .footer-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .footer .main-logo {
        width: 12rem;
        transform: scale(1.8);
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-section h4::after {
        width: 40px;
        height: 2px;
    }

    .footer-section p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .footer-section ul li {
        padding: 0.3rem 0;
        margin-bottom: 0.3rem;
    }

    .footer-section ul li a {
        font-size: 0.85rem;
    }

    .footer .footer-contact p {
        font-size: 0.85rem;
        margin: 0.3rem 0;
    }

    .footer .social-links {
        gap: 0.8rem;
        margin-top: 0.8rem;
    }

    .footer .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .newsletter-form {
        gap: 0.8rem;
    }

    .newsletter-form input[type="email"] {
        font-size: 13px;
        padding: 10px 12px;
    }

    .newsletter-form button {
        font-size: 13px;
        padding: 10px 12px;
    }

    .footer-bottom {
        padding: 1rem;
        margin-top: 1.5rem;
    }

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

    .footer-links {
        gap: 0.8rem;
    }

    .footer-links a {
        font-size: 0.75rem;
    }
}

/* === PREMIUM SCROLL TO TOP === */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-premium);
    color: var(--lux-gold);
    border: 2px solid var(--emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(24, 57, 43, 0.4);
    transition: all 0.3s cubic-bezier(.77, 0, .18, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    color: white;
}

.scroll-to-top:hover {
    background: var(--gradient-gold);
    color: var(--deep-forest);
    border-color: var(--lux-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(227, 199, 123, 0.4);
}

/* === PREMIUM LOADING STATES === */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--emerald);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* === PREMIUM FOCUS STATES === */
.btn:focus,
.nav-link:focus,
.form-group input:focus,
.form-group select:focus {
    outline: none;
    /* box-shadow: 0 0 0 3px #2ecc7a44; */
}

/* === PREMIUM SELECTION === */
::selection {
    background: var(--emerald);
    color: var(--bg-dark);
}

::-moz-selection {
    background: var(--emerald);
    color: var(--bg-dark);
}

/* === RESPONSIVE HERO SECTION === */
@media (max-width: 1200px) {
    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

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

    .floating-card.premium-card {
        right: 5%;
        top: 15%;
        width: 220px;
    }

    .floating-card.stats-card {
        left: 5%;
        bottom: 15%;
        width: 180px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        flex-direction: column;
        gap: 0.3rem;
    }

    .title-line {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .premium-badge {
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .badge-text {
        font-size: 0.8rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        justify-content: center;
        align-items: center;
    }

    .feature-item {
        padding: 1rem;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        justify-content: center;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
        gap: 1.5rem;
        align-items: center;
    }

    .trust-number {
        font-size: 1.5rem;
    }

    .trust-label {
        font-size: 0.8rem;
    }

    .floating-card {
        padding: 1rem;
    }

    .premium-card {
        width: 180px;
        right: 5%;
        top: 10%;
    }

    .stats-card {
        width: 150px;
        left: 5%;
        bottom: 10%;
    }

    .card-content h3 {
        font-size: 1rem;
    }

    .card-content p {
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    .scroll-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 85vh;
        padding: 1rem 0;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 0.2rem;
    }

    .title-line {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .premium-badge {
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }

    .badge-text {
        font-size: 0.7rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .feature-content h3 {
        font-size: 0.9rem;
    }

    .feature-content p {
        font-size: 0.7rem;
    }

    .hero-image-container {
        height: 300px;
    }

    .floating-image {
        width: 60px;
        height: 45px;
    }

    .floating-1 {
        top: 10%;
        right: -5px;
    }

    .floating-2 {
        bottom: 10%;
        right: 5px;
    }

    .floating-card {
        padding: 0.8rem;
    }

    .premium-card {
        width: 140px;
        right: 5px;
        top: 3%;
    }

    .stats-card {
        width: 100px;
        left: 5px;
        bottom: 3%;
    }

    .card-header {
        gap: 0.5rem;
        margin-bottom: 0.8rem;
    }

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

    .card-title {
        font-size: 0.7rem;
    }

    .card-content p {
        font-size: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.5rem;
    }

    .trust-indicators {
        gap: 1rem;
    }

    .trust-number {
        font-size: 1.3rem;
    }

    .trust-label {
        font-size: 0.7rem;
    }

    .scroll-indicator {
        bottom: 0.5rem;
    }

    .scroll-text {
        font-size: 0.7rem;
    }

    .scroll-arrow {
        font-size: 1rem;
    }

    .social-links {
        gap: 20px;
        margin-top: 1rem;
    }
    
    .social-links a {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 15px;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-features-grid {
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        margin-bottom: 1.5rem;
    }

    .hero-image-container {
        height: 250px;
    }

    .floating-card {
        padding: 0.8rem;
    }

    .premium-card {
        width: 120px;
    }

    .stats-card {
        width: 80px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .bg-layer.mountains,
    .bg-layer.forest {
        background-size: 50%;
    }

    .particle {
        width: 2px;
        height: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    .hero *,
    .particle,
    .floating-card,
    .floating-image,
    .bg-layer,
    .badge-icon,
    .scroll-arrow {
        animation: none !important;
        transition: none !important;
    }

    .title-line {
        opacity: 1;
        transform: none;
    }
}

/* === ABOUT SECTION === */
.about {
    padding: 0 0 4rem;
    background: var(--bg-dark);
    position: relative;
}

.about-content {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    /* background: rgba(16, 26, 20, 0.6); */
    border: 1px solid rgba(46, 204, 122, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(.77, 0, .18, 1);
}

.about-feature:hover {
    background: rgba(46, 204, 122, 0.1);
    border-color: var(--emerald);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 204, 122, 0.2);
}

.about-feature .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--emerald), var(--lux-gold));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.about-feature .feature-content h3 {
    color: var(--lux-gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.about-feature .feature-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.about-visual .about-single-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(24, 57, 43, 0.4);
    position: relative;
    height: 500px;
}

.about-visual .about-single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
}

.about-visual .about-single-image:hover img {
    transform: scale(1.05);
}

/* About section responsive styles */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .about-text {
        order: 2;
    }

    .about-visual {
        order: 1;
    }

    .about-visual .about-single-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about-visual .about-single-image {
        height: 250px;
    }
}

/* === GALLERY PREVIEW SECTION === */
.gallery-preview {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--deep-forest) 0%, var(--rich-green) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(24, 57, 43, 0.3);
    transition: all 0.4s cubic-bezier(.77, 0, .18, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(46, 204, 122, 0.3);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(16, 26, 20, 0.9));
    padding: 2rem;
    color: var(--text-light);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(.77, 0, .18, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--lux-gold);
    font-family: 'Poppins', sans-serif;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
}

.gallery-cta {
    text-align: center;
}

/* === ROOMS SECTION === */
.rooms {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.room-card {
    background: rgba(16, 26, 20, 0.8);
    border: 1px solid rgba(46, 204, 122, 0.2);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(.77, 0, .18, 1);
}

.room-card.premium {
    border-color: var(--lux-gold);
    box-shadow: 0 20px 60px rgba(227, 199, 123, 0.2);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(46, 204, 122, 0.3);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--emerald), var(--lux-gold));
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.room-content {
    padding: 2rem;
}

.room-content h3 {
    color: var(--lux-gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    padding-right: 120px;
    line-height: 1.2;
}

.room-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.room-features i {
    color: var(--emerald);
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.room-price .price {
    color: var(--lux-gold);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.room-price .per-night {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

/* Room Showcase */
.room-showcase {
    margin-top: 4rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    height: 400px;
}

.showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(24, 57, 43, 0.3);
    transition: all 0.4s cubic-bezier(.77, 0, .18, 1);
}

.showcase-item.large {
    grid-row: span 2;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(46, 204, 122, 0.3);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(16, 26, 20, 0.9));
    padding: 1.5rem;
    color: var(--text-light);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(.77, 0, .18, 1);
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--lux-gold);
    font-family: 'Poppins', sans-serif;
}

.showcase-overlay p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
}

/* === GALLERY PAGE === */
.gallery {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.category-btn {
    background: rgba(16, 26, 20, 0.8);
    border: 1px solid rgba(46, 204, 122, 0.3);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.77, 0, .18, 1);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
    background: var(--emerald);
    color: var(--bg-dark);
    border-color: var(--emerald);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 122, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(24, 57, 43, 0.3);
    transition: all 0.4s cubic-bezier(.77, 0, .18, 1);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(46, 204, 122, 0.3);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(16, 26, 20, 0.9));
    padding: 1.5rem;
    color: var(--text-light);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(.77, 0, .18, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--lux-gold);
    font-family: 'Poppins', sans-serif;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.gallery-overlay i {
    color: var(--emerald);
    font-size: 1.2rem;
}

/* === FACILITIES SECTION === */
.facilities {
    padding: 6rem 0;
    /* background: linear-gradient(135deg, var(--deep-forest) 0%, var(--rich-green) 100%); */
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.facility-card {
    /* background: rgba(16, 26, 20, 0.8); */
    border: 1px solid rgba(46, 204, 122, 0.2);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(.77, 0, .18, 1);
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(46, 204, 122, 0.3);
}

.facility-image {
    height: 250px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
}

.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.facility-content {
    padding: 2rem;
}

.facility-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--emerald), var(--lux-gold));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--bg-dark);
    margin-bottom: 1.5rem;
}

.facility-content h3 {
    color: var(--lux-gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.facility-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.facility-features {
    list-style: none;
    padding: 0;
}

.facility-features li {
    color: #086a39;
    padding: 0.5rem 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-left: 1.5rem;
}

.facility-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--emerald);
    font-weight: bold;
}

/* Facility Showcase */
.facility-showcase {
    margin-top: 4rem;
}

.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-header h3 {
    color: var(--lux-gold);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.showcase-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    height: 400px;
}

.showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(24, 57, 43, 0.3);
    transition: all 0.4s cubic-bezier(.77, 0, .18, 1);
}

.showcase-item.large {
    grid-row: span 2;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(46, 204, 122, 0.3);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(16, 26, 20, 0.9));
    padding: 1.5rem;
    color: var(--text-light);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(.77, 0, .18, 1);
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--lux-gold);
    font-family: 'Poppins', sans-serif;
}

.showcase-overlay p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'Poppins', sans-serif;
}

/* === LIGHTBOX === */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 26, 20, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--bg-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease-out;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(16, 26, 20, 0.8);
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--emerald);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-info {
    padding: 2rem;
    background: var(--bg-dark);
}

.lightbox-info h3 {
    color: var(--lux-gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.lightbox-info p {
    color: var(--text-muted);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* === NOTIFICATION SYSTEM === */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--bg-dark);
    border: 1px solid var(--emerald);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--text-light);
    z-index: 10000;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(46, 204, 122, 0.3);
    backdrop-filter: blur(10px);
    max-width: 400px;
}

.notification-success {
    border-color: var(--emerald);
}

.notification-error {
    border-color: #e74c3c;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-content i {
    font-size: 1.2rem;
    color: var(--emerald);
}

.notification-error .notification-content i {
    color: #e74c3c;
}

.notification-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.notification-close:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
}

/* === LOADING STATES === */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 26, 20, 0.8);
    backdrop-filter: blur(5px);
    border-radius: inherit;
    z-index: 1;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(46, 204, 122, 0.3);
    border-top: 3px solid var(--emerald);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}

/* === MOBILE BADGE OVERLAP FIX === */
@media screen and (max-width: 768px) {
    .premium-accommodations .accommodation-card .card-overlay,
    .accommodation-card .card-overlay {
        padding-top: 8rem !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        padding-bottom: 2rem !important;
    }
    
    .premium-accommodations .accommodation-card .overlay-content,
    .accommodation-card .overlay-content {
        margin-top: 5rem !important;
        padding-top: 3rem !important;
    }
    
    .premium-accommodations .accommodation-card .card-badge,
    .accommodation-card .card-badge {
        top: 1rem !important;
        left: 1rem !important;
        z-index: 9999 !important;
        position: absolute !important;
    }
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* === RESPONSIVE LIGHTBOX === */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-info {
        padding: 1.5rem;
    }

    .lightbox-info h3 {
        font-size: 1.2rem;
    }

    .notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        transform: translateY(-100%);
    }

    .notification.show {
        transform: translateY(0);
    }
}

/* === FOCUS STATES FOR ACCESSIBILITY === */
.gallery-item.focused {
    outline: 3px solid var(--emerald);
    outline-offset: 2px;
}

.category-btn:focus,
.room-card:focus,
.facility-card:focus,
.about-feature:focus {
    outline: 2px solid var(--emerald);
    outline-offset: 2px;
}

/* === PRINT STYLES === */
@media print {

    .lightbox,
    .notification,
    .loading-spinner,
    .particles,
    .floating-elements {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .gallery-item:hover {
        transform: none;
    }

    .gallery-overlay {
        transform: translateY(0);
        background: rgba(16, 26, 20, 0.7);
    }
}

.search-section {
    padding: 4rem 0 3rem 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 2;
}

.hero-search-container {
    position: relative;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    padding: 0 1rem;
}

.hero-booking-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
    background: rgba(24, 57, 43, 0.85);
    border: 1.5px solid rgba(46, 204, 122, 0.25);
    box-shadow: 0 8px 32px 0 rgba(24, 57, 43, 0.3), 0 1.5px 8px 0 #e3c77b22;
    backdrop-filter: blur(18px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    animation: fadeInUp 1.2s cubic-bezier(.77, 0, .18, 1);
}

.hero-booking-bar .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    min-width: 120px;
    flex: 1 1 5.5rempx;
}

.hero-booking-bar label {
    color: var(--lux-gold);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 0.2rem;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hero-booking-bar label i {
    font-size: 0.85rem;
    opacity: 0.9;
}

.hero-booking-bar input,
.hero-booking-bar select {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 0.8rem;
    border: 1px solid rgba(46, 204, 122, 0.3);
    background: rgba(16, 26, 20, 0.9);
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.hero-booking-bar input:focus,
.hero-booking-bar select:focus {
    border-color: var(--lux-gold);
    background: rgba(16, 26, 20, 0.95);
    transform: translateY(-1px);
}

.hero-booking-bar .btn-book-now {
    padding: 0.8rem 1.5rem;
    border-radius: 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 0.5rem;
    background: var(--gradient-premium);
    color: var(--lux-gold);
    border: 1px solid var(--emerald);
    transition: all 0.3s ease;
}

.hero-booking-bar .btn-book-now:hover {
    background: var(--gradient-gold);
    color: var(--deep-forest);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .search-section {
        padding: 2rem 0 1.5rem 0;
    }

    .hero-booking-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 3rem 1.2rem 1.2rem;
        gap: 0.8rem;
        max-width: 95vw;
        border-radius: 1rem;
    }

    .hero-booking-bar .form-group {
        min-width: 0;
        width: 100%;
    }

    .hero-booking-bar .btn-book-now {
        width: 100%;
        margin-top: 0.5rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-booking-bar {
        padding: 1rem;
        gap: 0.6rem;
        max-width: 98vw;
        border-radius: 0.8rem;
    }

    .hero-booking-bar label {
        font-size: 0.85rem;
    }

    .hero-booking-bar input,
    .hero-booking-bar select {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }

    .hero-booking-bar .btn-book-now {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* === Premium Rooms SECTION === */
.premium-accommodations {
    padding: 4rem 0;
    background: var(--bg-dark);
    position: relative;
}

.premium-accommodations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--emerald), transparent);
}

.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.accommodation-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(16, 26, 20, 0.8);
    border: 1px solid rgba(46, 204, 122, 0.2);
    transition: all 0.4s cubic-bezier(.77, 0, .18, 1);
    height: 450px;
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(46, 204, 122, 0.2);
    border-color: var(--emerald);
}

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Card Slider Styles */
.card-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.card-slide.active {
    opacity: 1;
}

.card-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
}

.accommodation-card:hover .card-slide img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-badge {
    background: linear-gradient(135deg, var(--lux-gold), #bfa14a);
    color: var(--deep-forest);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.luxury-badge {
    background: linear-gradient(135deg, var(--emerald), #27ae60);
    color: var(--bg-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.rustic-badge {
    background: linear-gradient(135deg, var(--earth-brown), #8b4513);
    color: var(--text-light);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg,
            rgba(24, 57, 43, 0.4) 0%,
            rgba(16, 26, 20, 0.6) 50%,
            rgba(7, 7, 7, 0.7) 100%);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(.77, 0, .18, 1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: flex-end;
    backdrop-filter: blur(3px);
    border-top: 1px solid rgba(46, 204, 122, 0.4);
}

.accommodation-card:hover .card-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    color: #ffffff !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.7);
}

.overlay-content p {
    color: #ffffff !important;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.6);
}

.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.amenities span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #ffffff;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.7);
    background: rgba(46, 204, 122, 0.3);
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    border: 1px solid rgba(46, 204, 122, 0.5);
    backdrop-filter: blur(5px);
}

.amenities i {
    color: var(--emerald);
    font-size: 0.8rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(227, 199, 123, 0.3);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(227, 199, 123, 0.5);
    backdrop-filter: blur(5px);
}

.price .amount {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    /* text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.7); */
}

.price .period {
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    /* text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.6); */
}

.btn-explore {
    background: linear-gradient(135deg, var(--emerald), #27ae60);
    color: var(--bg-dark);
    border: 2px solid var(--emerald);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    box-shadow: 0 4px 15px rgba(46, 204, 122, 0.3);
}

.btn-explore:hover {
    background: linear-gradient(135deg, var(--lux-gold), #bfa14a);
    color: var(--deep-forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 199, 123, 0.4);
    border-color: var(--lux-gold);
}

/* Experience Highlights */
.experience-highlights {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin: 4rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(24, 57, 43, 0.3);
    border: 1px solid rgba(46, 204, 122, 0.2);
    border-radius: 16px;
    transition: all 0.3s;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.highlight-item:hover {
    background: rgba(46, 204, 122, 0.1);
    border-color: var(--emerald);
    transform: translateY(-3px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--emerald), var(--lux-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.highlight-content h4 {
    color: var(--lux-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.highlight-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.accommodations-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(24, 57, 43, 0.2);
    border: 1px solid rgba(46, 204, 122, 0.2);
    border-radius: 20px;
    margin-top: 3rem;
}

.cta-content h3 {
    color: var(--lux-gold);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .experience-highlights {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 1200px) {
    .experience-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .experience-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .experience-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .accommodations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .accommodation-card {
        height: 400px;
    }

    .card-overlay {
        transform: translateY(0) !important;
        background: linear-gradient(transparent, rgba(16, 26, 20, 0.98));
        padding: 5rem 2rem 2rem 2rem !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
    }

    .overlay-content {
        margin-top: 2rem !important;
    }

    /* Ultra specific mobile rules to prevent badge overlap */
    .accommodation-card .card-overlay {
        padding-top: 6rem !important;
        padding-bottom: 2rem !important;
    }

    .accommodation-card .overlay-content {
        margin-top: 3rem !important;
        padding-top: 2rem !important;
    }

    .accommodation-card .card-badge {
        position: absolute !important;
        top: 1rem !important;
        left: 1rem !important;
        z-index: 999 !important;
    }

    .experience-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-item {
        padding: 1.2rem;
    }

    .accommodations-cta {
        padding: 2rem 1.5rem;
    }

    .cta-content h3 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .accommodation-card {
        height: 350px;
    }

    .card-badge {
        top: 1rem;
        left: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .card-overlay {
        padding: 1.5rem;
    }

    .overlay-content h3 {
        font-size: 1.3rem;
    }

    .amenities {
        gap: 0.8rem;
    }

    .amenities span {
        font-size: 0.8rem;
    }

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

/* === PREMIUM GALLERY SECTION === */
.premium-gallery {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--deep-forest) 0%, var(--rich-green) 100%);
    position: relative;
}

.premium-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--emerald), transparent);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    width: calc(33.3333% - 1rem);
    min-width: 280px;
    box-sizing: border-box;
    margin-bottom: 1.5rem;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(46, 204, 122, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(16, 26, 20, 0.9));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(.77, 0, .18, 1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    color: var(--text-light);
    text-align: left;
    width: 100%;
}

.overlay-content h3 {
    color: var(--lux-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.overlay-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.overlay-content i {
    color: white;
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Grid Layout for Different Sizes */
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.medium {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item.small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
}

.gallery-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 40px;
    background: var(--gradient-premium);
    color: white;
    border: 2px solid var(--emerald);
    box-shadow: 0 8px 25px rgba(46, 204, 122, 0.3);
    transition: all 0.3s cubic-bezier(.77, 0, .18, 1);
    text-decoration: none;
}

.gallery-cta .btn:hover {
    background: var(--gradient-gold);
    color: var(--deep-forest);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(227, 199, 123, 0.4);
}

.gallery-cta .btn-icon {
    transition: transform 0.3s;
}

.gallery-cta .btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 220px);
        gap: 1.2rem;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item.medium {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 200px);
        gap: 1rem;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item.medium {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item.small {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-overlay {
        padding: 1.5rem;
    }

    .overlay-content h3 {
        font-size: 1.1rem;
    }

    .overlay-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .premium-gallery {
        padding: 4rem 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
        gap: 1.5rem;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(transparent, rgba(16, 26, 20, 0.95));
    }

    .gallery-cta .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .gallery-item {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .gallery-overlay {
        padding: 1rem;
    }

    .overlay-content h3 {
        font-size: 1rem;
    }

    .overlay-content p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .overlay-content i {
        font-size: 1rem;
    }

    .gallery-cta .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* === NATURE ACTIVITIES SECTION === */
.nature-activities {
    padding: 4rem 0;
    background: var(--bg-dark);
    position: relative;
}

.nature-activities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="nature-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(46, 204, 122, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23nature-pattern)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.activity-card {
    background: white;
    border: 1px solid rgba(46, 204, 122, 0.2);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(.77, 0, .18, 1);
    position: relative;
}

.activity-card.premium {
    border-color: var(--lux-gold);
    box-shadow: 0 20px 60px rgba(227, 199, 123, 0.2);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(46, 204, 122, 0.3);
}

.activity-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--emerald), var(--lux-gold));
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.activity-badge i {
    font-size: 0.9rem;
}

.activity-content {
    padding: 2rem;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.activity-header h3 {
    color: var(--lux-gold);
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.activity-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(46, 204, 122, 0.1);
    padding: 0.5rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(46, 204, 122, 0.2);
}

.activity-rating i {
    color: var(--lux-gold);
    font-size: 0.9rem;
}

.activity-rating span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.activity-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.activity-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.activity-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(8, 106, 57, 0.1);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    border: 1px solid rgba(8, 106, 57, 0.2);
}

.activity-features i {
    color: #086a39;
    font-size: 0.9rem;
}

.activity-cta {
    text-align: center;
}

.activity-cta .btn-explore {
    background: linear-gradient(135deg, var(--emerald), var(--rich-green));
    color: var(--bg-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.activity-cta .btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 204, 122, 0.3);
}

.activity-cta .btn-explore i {
    transition: transform 0.3s ease;
}

.activity-cta .btn-explore:hover i {
    transform: translateX(3px);
}

/* Activities CTA */
.activities-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: #086a39;
    border-radius: 20px;
    border: 1px solid rgba(8, 106, 57, 0.2);
    backdrop-filter: blur(10px);
}

.activities-cta .cta-content h3 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.activities-cta .cta-content p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.activities-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.activities-cta .cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 1000px;
    }
}

@media (max-width: 900px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        max-width: 800px;
    }

    .activity-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .activity-rating {
        align-self: flex-end;
    }
}

@media (max-width: 768px) {
    .nature-activities {
        padding: 3rem 0;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
        padding: 0;
    }

    .activity-card {
        margin: 0;
        width: 100%;
        border-radius: 0;
    }

    .activity-content {
        padding: 1.5rem 1rem;
    }
}

    .activity-content {
        padding: 1.5rem;
    }

    .activity-header h3 {
        font-size: 1.3rem;
    }

    .activity-features {
        gap: 0.8rem;
    }

    .activity-features span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .activities-cta {
        margin: 3rem 0 0;
        padding: 2rem 1rem;
    }

    .activities-cta .cta-content h3 {
        font-size: 1.6rem;
    }

    .activities-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .activities-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }


@media (max-width: 480px) {
    .nature-activities {
        padding: 2rem 0;
    }

    .activities-grid {
        gap: 1rem;
        margin: 1.5rem 0;
        padding: 0;
    }

    .activity-content {
        padding: 1.2rem 0.8rem;
    }

    .activity-card {
        margin: 0;
        width: 100%;
    }

    .activity-content {
        padding: 1.2rem;
    }

    .activity-header h3 {
        font-size: 1.2rem;
    }

    .activity-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .activity-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .activities-cta .cta-content h3 {
        font-size: 1.4rem;
    }

    .activities-cta .cta-content p {
        font-size: 1rem;
    }
}

/* === PREMIUM TESTIMONIALS SECTION === */
.premium-testimonials {
    padding: 4rem 0;
    background: white;
    position: relative;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(227, 199, 123, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-pattern)"/></svg>');
    opacity: 0.4;
}

.testimonials-background .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: #ffffff; */
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--lux-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-leaf:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-leaf:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-leaf:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.testimonials-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #086a39;
    border: 1px solid rgba(46, 204, 122, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(.77, 0, .18, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card.premium {
    border-color: var(--lux-gold);
    box-shadow: 0 20px 60px rgba(227, 199, 123, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(46, 204, 122, 0.3);
}

.testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--lux-gold);
    font-size: 2rem;
    opacity: 0.3;
    z-index: 1;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(46, 204, 122, 0.1);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--lux-gold);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--lux-gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    display: block;
    margin-bottom: 0.5rem;
}

.author-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.author-rating i {
    color: yellow;
    font-size: 0.9rem;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.testimonial-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--emerald), var(--rich-green));
    color: var(--bg-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.testimonials-stats .stat-item {
    text-align: center;
}

.testimonials-stats .stat-number {
    color: var(--lux-gold);
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
}

.testimonials-stats .stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

/* === PREMIUM CTA SECTION === */
.premium-cta {
    padding: 4rem 0;
    background: var(--deep-forest);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="rgba(46, 204, 122, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-background .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(24, 57, 43, 0.7) 0%, rgba(16, 26, 20, 0.8) 100%);
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--lux-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-float 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    right: 20%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 25%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 70%;
    right: 30%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    bottom: 60%;
    left: 40%;
    animation-delay: 1s;
}

.premium-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--lux-gold), var(--emerald));
    color: var(--bg-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.premium-cta .cta-content h2 {
    color: var(--lux-gold);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.premium-cta .cta-content p {
    color: var(--text-light);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-family: 'Poppins', sans-serif;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.cta-features .feature-item i {
    color: var(--emerald);
    font-size: 1.1rem;
}

.premium-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.premium-cta .cta-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 200px;
    justify-content: center;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.cta-trust .trust-item i {
    color: var(--lux-gold);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonials-showcase {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }

    .premium-cta .cta-content h2 {
        font-size: 3rem;
    }

    .cta-features {
        gap: 1.5rem;
    }

    .cta-trust {
        gap: 2rem;
    }
}

@media (max-width: 900px) {

    .premium-testimonials,
    .premium-cta {
        padding: 6rem 0;
    }

    .testimonials-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-stats {
        gap: 2rem;
    }

    .premium-cta .cta-content h2 {
        font-size: 2.5rem;
    }

    .premium-cta .cta-content p {
        font-size: 1.1rem;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .premium-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .premium-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {

    .premium-testimonials,
    .premium-cta {
        padding: 4rem 0;
    }

    .testimonial-card {
        padding: 2rem;
        margin: 0 1rem;
        margin-top: 1rem;
    }

    .testimonial-badge {
        top: 0.8rem;
        left: 0.8rem;
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
        z-index: 2;
    }

    .testimonial-quote {
        top: 0.8rem;
        right: 0.8rem;
        font-size: 1.5rem;
        z-index: 1;
    }

    .testimonial-content {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.6;
        padding-top: 0.5rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 1.1rem;
    }

    .testimonials-stats .stat-number {
        font-size: 2rem;
    }

    .premium-cta .cta-content h2 {
        font-size: 2rem;
    }

    .premium-cta .cta-content p {
        font-size: 1rem;
    }

    .cta-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .cta-features .feature-item {
        font-size: 0.9rem;
    }

    .premium-cta .cta-buttons .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
        margin-top: 1rem;
    }

    .testimonial-quote {
        top: 0.8rem;
        right: 0.8rem;
        font-size: 1.2rem;
        z-index: 1;
    }

    .testimonial-badge {
        top: 0.8rem;
        left: 0.8rem;
        font-size: 0.5rem;
        padding: 0.25rem 0.5rem;
        z-index: 2;
    }

    .testimonial-content {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        padding-top: 0.5rem;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info span {
        font-size: 0.8rem;
    }

    .testimonials-stats {
        gap: 1.5rem;
    }

    .testimonials-stats .stat-number {
        font-size: 1.8rem;
    }

    .testimonials-stats .stat-label {
        font-size: 0.9rem;
    }

    .premium-cta .cta-content h2 {
        font-size: 1.8rem;
    }

    .premium-cta .cta-content p {
        font-size: 0.9rem;
    }

    .cta-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .cta-features .feature-item {
        font-size: 0.8rem;
    }

    .premium-cta .cta-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 180px;
    }

    .cta-trust .trust-item {
        font-size: 0.8rem;
    }
}

/* Slim search button for hero booking bar */
.btn-search {
    padding: 0.6rem 1.2rem;
    border-radius: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-premium);
    color: var(--lux-gold);
    box-shadow: 0 2px 16px 0 #086a3933;
    border: 2px solid var(--emerald);
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 45px;
    margin-top: 0.8rem;
}

.btn-search:hover {
    background: var(--gradient-gold);
    color: var(--deep-forest);
    box-shadow: 0 4px 32px 0 #e3c77b55, 0 2px 16px 0 #086a3933;
}

/* Ensure icons in hero booking bar labels are in front and vertically centered */
.hero-booking-bar label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    line-height: 1rem;
    position: relative;
    z-index: 2;
}

.hero-booking-bar label i {
    font-size: 1.1rem;
    opacity: 1;
    position: relative;
    z-index: 3;
    vertical-align: middle;
    margin-left: 1rem;
    margin-bottom: -1rem;
}

.hero-booking-bar label span {
    margin-left: -1rem;
}

/* Standardized Section Padding */
.section-standard {
    padding: var(--section-padding, 4rem 1rem);
}

.section-standard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--emerald), transparent);
}

/* Responsive Section Padding */
@media (max-width: 1200px) {
    .section-standard {
        padding: var(--section-padding-tablet, 3rem 1rem);
    }
}

@media (max-width: 768px) {
    .section-standard {
        padding: var(--section-padding-mobile, 2rem 1rem);
    }
}

@media (max-width: 480px) {
    .section-standard {
        padding: var(--section-padding-small, 1.2rem 0.5rem);
    }
}

/* === HERO CONTENT SECTION === */
.hero-content-section {
    /* padding: 4rem 0; */
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--deep-forest) 100%);
    position: relative;
}

/* === ATTRACTIVE NEWSLETTER FORM === */
.newsletter-form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    border-radius: 35px;
    padding: 0.5rem;
    transition: all 0.3s cubic-bezier(.77, .18, 1);
}

.newsletter-form input[type="email"],
.newsletter-form .btn-subscribe {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.newsletter-form input[type="email"] {
    border: none;
    outline: none;
    padding: 1rem 1.5em;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 40px;
    transition: all 0.3s ease;
    background: rgba(46, 204, 122, 0.1);
    border: 2px solid rgba(46, 204, 122, 0.2);
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus::placeholder {
    opacity: 0.4;
    transform: translateX(5px);
}

.newsletter-form input[type="email"]:focus {
    background: rgba(46, 204, 122, 0.15);
    border-color: var(--emerald);
    box-shadow: 0 0 0 4px rgba(46, 204, 122, 0.1);
}

.newsletter-form .btn-subscribe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 0;
    background: var(--gradient-premium);
    color: var(--lux-gold);
    border: none;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.77, .18, 1);
    box-shadow: 0 4px 16px rgba(46, 204, 122, 0.3);
    position: relative;
    overflow: hidden;
}

.newsletter-form .btn-subscribe::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.newsletter-form .btn-subscribe:hover::before {
    left: 100%;
}

.newsletter-form .btn-subscribe:hover {
    background: var(--gradient-gold);
    color: var(--deep-forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 199, 123, 0.3);
}

.newsletter-form .btn-subscribe:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(46, 204, 122, 0.3);
}

.newsletter-form .btn-subscribe i {
    order: 0;
    margin-right: 0.5rem;
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.newsletter-form .btn-subscribe span {
    order: 1;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.newsletter-form .btn-subscribe:hover i {
    transform: translateX(3px) rotate(15deg);
}

@media (max-width: 480px) {

    .newsletter-form input[type="email"],
    .newsletter-form .btn-subscribe {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .newsletter-form .btn-subscribe {
        padding: 0.9rem 0;
    }
}

/* Newsletter form success state */
.newsletter-form.success {
    border-color: var(--emerald);
    background: rgba(46, 204, 122, 0.1);
    animation: none;
}

.newsletter-form.success .btn-subscribe {
    background: var(--emerald);
    color: var(--bg-dark);
}

/* Newsletter form error state */
.newsletter-form.error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    animation: none;
}

.newsletter-form.error .btn-subscribe {
    background: #e74c3c;
    color: white;
}

/* Newsletter form loading state */
.newsletter-form.loading .btn-subscribe {
    pointer-events: none;
    opacity: 0.7;
}

.newsletter-form.loading .btn-subscribe i {
    animation: spin 1 linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Newsletter form floating label effect */
.newsletter-form .input-wrapper {
    position: relative;
    flex: 1;
}

.newsletter-form .floating-label {
    position: absolute;
    left: 10.5em;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(.77, 0, .18, 1);
    background: transparent;
    padding: 0em;
}

.newsletter-form input[type="email"]:focus+.floating-label,
.newsletter-form input[type="email"]:not(:placeholder-shown)+.floating-label {
    top: 0;
    font-size: 0.8em;
    color: var(--emerald);
    background: var(--bg-dark);
    transform: translateY(-50%);
}

/* Newsletter form micro-interactions */
.newsletter-form input[type="email"]:focus {
    animation: inputPulse 0.6s ease-out;
}

@keyframes inputPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* Newsletter form success message */
.newsletter-success {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    background: var(--emerald);
    color: var(--bg-dark);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 10;
}

.newsletter-success.show {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-success i {
    margin-right: 0.5em;
    color: var(--bg-dark);
}

/* Newsletter form container improvements */
.footer-section:last-child {
    position: relative;
}

.footer-section:last-child p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Newsletter form accessibility */
.newsletter-form input[type="email"]:focus-visible {
    outline: 2px solid var(--emerald);
    outline-offset: 2px;
}

.newsletter-form .btn-subscribe:focus-visible {
    outline: 2px solid var(--lux-gold);
    outline-offset: 2px;
}

/* Newsletter form dark mode enhancements */
@media (prefers-color-scheme: dark) {
    .newsletter-form {
        background: rgba(46, 204, 122, 0.25);
        border-color: rgba(46, 204, 122, 0.2);
    }

    .newsletter-form:hover {
        border-color: rgba(46, 204, 122, 0.15);
        background: rgba(46, 204, 122, 0.15);
    }
}

/* Newsletter form reduced motion */
@media (prefers-reduced-motion: reduce) {
    .newsletter-form {
        animation: none;
    }

    .newsletter-form .btn-subscribe::before {
        display: none;
    }

    .newsletter-form .btn-subscribe:hover i {
        transform: none;
    }

    .newsletter-form input[type="email"]:focus {
        animation: none;
    }
}

.newsletter-form {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 35px;
    padding: 0.5rem;
    transition: all 0.3s cubic-bezier(.77, .18, 1);
}

.newsletter-form input[type="email"],
.newsletter-form .btn-subscribe {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.newsletter-form .btn-subscribe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 0;
}

.newsletter-form .btn-subscribe i {
    order: 0;
    margin-right: 0.5rem;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.newsletter-form .btn-subscribe span {
    order: 1;
    display: inline-block;
    text-align: center;
    width: 100%;
}

@media (max-width: 480px) {

    .newsletter-form input[type="email"],
    .newsletter-form .btn-subscribe {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .newsletter-form .btn-subscribe {
        padding: 0.9rem 0;
    }
}

.my-footer-logo .main-logo {
    width: 7rem;
    margin: 0 auto;
    height: auto;
    margin-right: 1rem;
}

.hero-booking-bar {
    display: flex;
    align-items: flex-end;
    /* Align fields and button to the bottom */
    gap: 15px;
    /* Space between each element */
    flex-wrap: wrap;
    /* Allows wrapping on smaller screens */
}

.form-group {
    display: flex;
    flex-direction: column;
}

.hero-booking-bar input,
.hero-booking-bar select {
    height: 40px;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.btn-search {
    height: 40px;
    margin-bottom: 6px;
    /* This lifts the button slightly upward */
    padding: 0 15px;
    background-color: #3cb371;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.hero-search-container {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.hero-booking-bar {
    width: 80%;
    /* <-- 20% wider than default 60% */
    /* test */
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.hero-booking-bar select {
    height: 40px;
    width: 180px;
    /* optional: make it wide enough for content */
    padding: 5px 12px;
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
    /* white text */
    background-color: #113d2f;
    /* or your dropdown background */
    border: 1px solid #28d17c;
    /* your green outline */
    border-radius: 8px;
    outline: none;
    appearance: auto;
    /* use browser default unless custom styling is done */
}

.btn-search {
    height: 40px;
    margin-bottom: 6px;
    padding: 0 15px;
    background-color: #3cb371;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icons {
    margin-top: 25px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 10px 0;
    flex-wrap: wrap;
}

.social-icons a {
    width: 70px;
    height: 70px;
    font-size: 32px;
    color: #ffffff;
    text-decoration: none;
    background-color: #086a39;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(8, 106, 57, 0.2);
}

.social-icons a:hover {
    background-color: #086a39;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(8, 106, 57, 0.4);
}

/* Clean footer contact info without boxes */
.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ccc;
    font-size: 16px;
    margin: 10px 0;
    line-height: 1.6;
    text-align: center;
}

.footer-contact i {
    color: #28d17c;
    /* You can adjust this color if needed */
    font-size: 18px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 2px solid rgba(46, 204, 122, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #eee;
    box-sizing: border-box;
    transition: all 0.3s ease;
    text-align: center;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--emerald);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(46, 204, 122, 0.1);
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form button {
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--emerald), #27ae60);
    border: none;
    border-radius: 8px;
    color: var(--bg-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #27ae60, var(--emerald));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 122, 0.3);
}

.newsletter-form button:hover {
    background-color: #23b76c;
}

.newsletter-form button {
    width: 80%;
    padding: 10px 14px;
    background: linear-gradient(135deg, var(--emerald), #27ae60);
    border: none;
    border-radius: 8px;
    color: var(--bg-dark);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 auto;
}

.booking-form .form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.booking-form .form-group {
    flex: 1;
    position: relative;
}

.booking-form .form-group.full {
    flex: 0 0 100%;
}

.booking-form .form-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #00ff90;
}

.booking-form button.full {
    width: 100%;
}

.booking-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.booking-form .form-group {
    flex: 1 1 calc(50% - 0.75rem);
    /* Two columns */
    position: relative;
}

.booking-form .form-group.full-width {
    flex: 1 1 100%;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 2.5rem;
    background-color: #1f2d2b;
    border: 1px solid #00ff90;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffdf7e;
}

.booking-form .form-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #00ff90;
    pointer-events: none;
}

.booking-form button.full-width {
    width: 100%;
    padding: 0.9rem;
    font-size: 1.1rem;
    border-radius: 8px;
    border: none;
    background: #00ff90;
    color: #000;
    cursor: pointer;
    font-weight: bold;
}

.contact-item {
    margin-bottom: 10px;
    /* Reduce spacing */
    padding-bottom: 5px;
    border-bottom: none;
    /* Optional: remove if not needed */
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Controls vertical spacing between items */
}
.nav-logo {
    display: flex;
    align-items: center;
    margin-left: 1px;  /* Adjust spacing from the left */
}

/* Removed conflicting main-logo rule */
.hero-booking-bar .form-group select {
    color: #ffffff !important;
    background-color: rgba(255,255,255,0.1) !important;
    border: 1px solid #00ff99 !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    appearance: auto !important;
}
.hero-booking-bar .form-group select option {
    color: #000000 !important;
    background: #ffffff !important;
}
.social-links {
    width: 500px;     /* Increase width as needed */
    display: flex;
    justify-content: space-between;  /* Equal space between icons */
    gap: 20px;       /* Or use gap to adjust spacing */
}

.social-links a i {
    font-size: 20px;  /* Icon size */
    color: #fff;      /* Icon color */
}
.contact-form .form-group {
    margin-bottom: 1px;    /* Reduce bottom spacing between fields */
}

.contact-form {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    overflow: hidden;
}

.contact-form .form-row {
    margin-bottom: 1px;    /* Reduce spacing between grouped fields */
    width: 100%;
    box-sizing: border-box;
}

.contact-form h3 {
    margin-bottom: 1px;    /* Reduce space below heading */
}

.contact-form .form-group {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.contact-form .btn {
    margin-top: 1px;       /* Reduce space above button */
}
.contact-form textarea {
    height: 100px;      /* Set fixed height */
    resize: vertical;  /* Optional: allow vertical resizing */
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 50px;    /* Adds space between each contact-item */
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-icon {
    font-size: 24px;
    color: #00ff99;
    margin-right: 15px;  /* Space between icon and text */
}

.contact-text h3 {
    margin: 0 0 5px 0;  /* Small space below heading */
}

.contact-text p {
    margin: 0;
}
.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.footer-section:hover {
    transform: translateY(-1px);
}

.footer .my-footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 1.5rem 0;
    padding: 0;
    width: 100%;
}

.footer .main-logo {
    width: 6rem;
    height: auto;
    max-height: 10rem;
    display: block;
    margin: 0;
    padding: 0;
    object-fit: contain;
    transform: scale(1.8);
    transform-origin: center center;
}

.footer .footer-contact {
    margin: 1rem 0;
    padding: 0;
}

.footer .footer-contact p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000000;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer .footer-contact i {
    color: var(--emerald);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.footer .social-links {
    margin-top: 1rem;
    padding: 0;
    justify-content: flex-start;
    gap: 1rem;
}

.footer .social-links a {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin: 0;
}
.hero-features {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.feature-item {
    flex: 1 1 0;            /* Ensures all items have equal width */
    min-width: 250px;       /* Optional: set a minimum width */
    max-width: 250px;       /* Optional: limit the max width */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 10px;
    color: #FFD700;         /* Example icon/text color */
    font-weight: bold;
    text-align: center;
    gap: 8px;
}

.feature-item i {
    font-size: 20px;
}
@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px; /* Ensure enough padding inside the card */
    }

    .testimonial-badge {
        margin-bottom: 10px; /* Space below the badge */
        display: inline-block;
    }

    .testimonial-content p {
        margin-top: 12px; /* Space between badge and text */
        font-size: 14px;  /* Slightly smaller font for mobile */
        line-height: 1.6;
    }

    .testimonial-author {
        margin-top: 15px; /* Space before author section */
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .author-info h4 {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }

    .author-info span {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        line-height: 1.3;
        display: block;
    }

    .author-rating {
        margin-top: 0.3rem;
        flex-wrap: wrap;
    }
}
.cta-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;  /* Wraps for mobile responsiveness */
}

.cta-features .feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #444;
    border-radius: 12px;
    width: 250px;           /* Equal width */
    text-align: center;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-features .feature-item i {
    font-size: 24px;
    color: #00e676; /* Example color */
    margin-bottom: 10px;
}

.cta-features .feature-item span {
    font-weight: bold;
    font-size: 16px;
}
.cta-trust {
    display: flex;
    justify-content: center;
    gap: 40px;           /* Space between items */
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-trust .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;      /* Larger text */
    gap: 8px;
}

.cta-trust .trust-item i {
    font-size: 28px;      /* Enlarged icon */
    color: #ffffff;       /* White color */
}

.cta-trust .trust-item span {
    font-weight: 500;
    color: #ffffff;       /* White color */
}




.experience-section {
    padding: var(--section-padding);
    text-align: center;
  }
  
  .section-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
  }
  
  .cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    padding: 2rem 1.5rem;
    flex: 0 0 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    min-width: 280px;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .card p {
    color: var(--text-muted);
    font-size: 0.95rem;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .card {
      flex: 0 0 calc(50% - 1rem);
      max-width: calc(50% - 1rem);
    }
  }
  
  @media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .section-header h1 {
        font-size: 2rem;
    }

    .card {
        width: 100%;
        max-width: 90%;
        flex: none;
    }
}

/* Simple Slider Navigation */
.simple-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    background: rgba(46, 204, 122, 0.1);
    border: 2px solid var(--lux-gold);
    color: var(--lux-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--lux-gold);
    color: #086a39;
    transform: scale(1.1);
}

.slider-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(46, 204, 122, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--lux-gold);
    border-color: var(--lux-gold);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--lux-gold);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .simple-slider-nav {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}