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

/* Base Styles */
body {
    font-family: "Poppins", Arial, sans-serif;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    color: #2b2b2b;
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(30, 58, 95, 0.03) 0%, 
        rgba(45, 134, 89, 0.05) 25%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(20, 184, 166, 0.03) 75%,
        rgba(30, 58, 95, 0.03) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    top: -50%;
    left: -50%;
}

.animated-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%,         rgba(45, 134, 89, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(30, 58, 95, 0.05) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #2d8659, #38a169);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #1e3a5f, #2c5282);
    top: 60%;
    right: -3%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #14b8a6, #2d8659);
    bottom: 20%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Section Background Animations */
section {
    position: relative;
    z-index: 2;
    background-color: inherit;
    padding: 4rem 0;
}

section.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
}

section.bg-white {
    background: #fff !important;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(45, 134, 89, 0.03) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

section:hover::before {
    opacity: 1;
}

/* Hero Slider Enhancements */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-slider .carousel-item {
    position: relative;
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Carousel Caption Animation */
.carousel-caption {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Title Animation - Already updated above */

/* Card Hover Effects - Already updated above */

/* Amenity Card Animation */
.amenity-card {
    position: relative;
    overflow: hidden;
}

.amenity-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(45, 134, 89, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.amenity-card:hover::after {
    width: 300px;
    height: 300px;
}

/* Scroll Animation */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Only apply fade-in effect if JavaScript is enabled */
.js-enabled .fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.js-enabled .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Background Pattern */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 1px 1px, #2d8659 1px, transparent 0);
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Ensure content is always visible */
.container {
    position: relative;
    z-index: 1;
}

.row {
    position: relative;
    z-index: 1;
}

/* Parallax Effect */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    background: linear-gradient(
        90deg,
        #f0f0f0 0px,
        #e0e0e0 40px,
        #f0f0f0 80px
    );
    background-size: 1000px;
    animation: shimmer 2s infinite;
}

/* Header Top Bar - Enhanced */
.header-top-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid rgba(45, 134, 89, 0.15);
    color: #333;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.header-top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent, rgba(45, 134, 89, 0.03), transparent);
    pointer-events: none;
}

.top-bar-info {
    flex: 1;
}

.top-bar-text {
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.top-bar-text i {
    color: #2d8659;
    font-size: 0.75rem;
}

.top-bar-actions {
    gap: 0.5rem;
}

.top-bar-action-btn {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.top-bar-action-btn:hover {
    background: #2d8659;
    color: #fff;
    border-color: #2d8659;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(45, 134, 89, 0.3);
}

.top-bar-action-btn i {
    font-size: 0.8rem;
}

.top-bar-action-btn.book-now-btn {
    background: #2d8659;
    color: #fff;
    border-color: #2d8659;
}

.top-bar-action-btn.book-now-btn:hover {
    background: #256d47;
    border-color: #256d47;
    box-shadow: 0 4px 12px rgba(45, 134, 89, 0.4);
}

.top-bar-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    background: rgba(45, 134, 89, 0.1);
    border: 1px solid rgba(45, 134, 89, 0.2);
}

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

.top-bar-link:hover::before {
    left: 100%;
}

.top-bar-link:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.3), rgba(56, 161, 105, 0.3));
    border-color: rgba(45, 134, 89, 0.5);
    transform: translateX(5px) scale(1.05);
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.top-bar-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d8659, #38a169);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(45, 134, 89, 0.4);
    transition: all 0.3s ease;
}

.top-bar-link:hover .top-bar-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.6);
}

.top-bar-link i {
    color: #fff;
    font-size: 0.85rem;
}

.top-bar-text {
    font-size: 0.85rem;
    color: #38a169;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-text i {
    color: #2d8659;
    font-size: 0.75rem;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

.social-top-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.3), rgba(56, 161, 105, 0.3));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    border: 2px solid rgba(45, 134, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.social-top-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.social-top-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-top-link:hover {
    background: linear-gradient(135deg, #25d366, #20ba5a);
    border-color: #25d366;
    transform: translateY(-5px) scale(1.15) rotate(360deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.social-top-link i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-top-link:hover i {
    transform: scale(1.2);
}

/* Main Header - Attractive Background */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #ffffff 100%) !important;
    background-size: 200% 100%;
    animation: headerGradient 8s ease infinite;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

@keyframes headerGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(45, 134, 89, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(30, 58, 95, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.main-header::after {
    display: none;
}

@keyframes shimmerLine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.main-header .container {
    position: relative;
    z-index: 1;
}

@keyframes shimmerLine {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.header-main-content {
    position: relative;
    padding: 1rem 0;
}

main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body > main {
    margin-top: 0;
    padding-top: 0;
}

/* Logo Section - Enhanced */
.logo-link {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.logo-link:hover {
    background: rgba(45, 134, 89, 0.05);
    transform: translateX(3px);
}

.header-logo {
    height: 50px;
    width: auto;
    max-height: 50px;
    filter: drop-shadow(0 2px 4px rgba(45, 134, 89, 0.2));
    transition: all 0.3s ease;
}

.logo-link:hover .header-logo {
    filter: drop-shadow(0 4px 8px rgba(45, 134, 89, 0.3));
    transform: scale(1.05);
}

.site-title {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3a5f, #2c5282, #1e3a5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.logo-link:hover .site-title {
    background: linear-gradient(135deg, #2d8659, #38a169, #2d8659);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation - Compact Spacing */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    border-radius: 6px;
    background: transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.08), rgba(56, 161, 105, 0.08));
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2d8659, #38a169, #2d8659);
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 2px 6px rgba(45, 134, 89, 0.4);
}

.nav-link:hover {
    color: #2d8659;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover::after {
    width: 70%;
}

/* Mobile Menu Toggle - Enhanced */
.mobile-menu-toggle {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, #2d8659, #38a169);
    border: none;
    border-radius: 12px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.mobile-menu-toggle::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;
}

.mobile-menu-toggle:hover::before {
    left: 100%;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, #256d47, #2d8659);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.4);
}

.mobile-menu-toggle.active {
    background: linear-gradient(135deg, #256d47, #2d8659);
    transform: rotate(180deg);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    width: 24px;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    width: 24px;
}

/* Mobile Navigation - Enhanced */
.mobile-nav {
    display: none;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #ffffff 100%);
    background-size: 200% 100%;
    animation: mobileNavGradient 8s ease infinite;
    border-top: 3px solid rgba(45, 134, 89, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.5s ease;
    position: relative;
}

@keyframes mobileNavGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.mobile-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(45, 134, 89, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(30, 58, 95, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.mobile-nav.open {
    display: block;
    max-height: 700px;
    padding: 2rem 0;
}

.mobile-nav-content {
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #333;
    padding: 1.25rem 1.5rem;
    margin: 0.5rem 0;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 134, 89, 0.1), transparent);
    transition: left 0.5s;
}

.mobile-nav-link:hover::before,
.mobile-nav-link:active::before {
    left: 100%;
}

.mobile-nav-link i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d8659;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(45, 134, 89, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
}

.mobile-nav-link span {
    flex: 1;
    position: relative;
    z-index: 1;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.1), rgba(56, 161, 105, 0.1));
    color: #2d8659;
    border-color: rgba(45, 134, 89, 0.3);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.2);
}

.mobile-nav-link:hover i,
.mobile-nav-link:active i {
    background: linear-gradient(135deg, #2d8659, #38a169);
    color: #fff;
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 4px 12px rgba(45, 134, 89, 0.4);
}

.mobile-nav-link.mobile-book-btn {
    background: linear-gradient(135deg, #2d8659, #38a169);
    color: #fff !important;
    border-color: #256d47;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.4);
    font-weight: 700;
}

.mobile-nav-link.mobile-book-btn i {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.mobile-nav-link.mobile-book-btn:hover,
.mobile-nav-link.mobile-book-btn:active {
    background: linear-gradient(135deg, #256d47, #2d8659);
    transform: translateX(10px) scale(1.05);
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.5);
}

.mobile-nav-link.mobile-book-btn:hover i,
.mobile-nav-link.mobile-book-btn:active i {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.3) rotate(15deg);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0 !important;
    margin-bottom: 0;
    padding-top: 0 !important;
    padding-bottom: 0;
    z-index: 0;
}

.slider-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.5s ease;
    mix-blend-mode: overlay;
}

.hero-slider img {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    position: relative;
    z-index: 0;
}

.hero-slider .carousel-item:hover .slider-image-wrapper {
    transform: scale(1.05);
}

.hero-slider .carousel-item:hover img {
    transform: scale(1.05);
}

.hero-slider .carousel-caption {
    position: relative;
    z-index: 2;
}

.hero-slider .carousel-caption {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out;
}

.hero-slider .carousel-caption h5 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-slider .carousel-caption p {
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.placeholder {
    min-height: 300px;
    padding: 2rem 1rem;
}

.placeholder h2 {
    font-size: 1.5rem;
}

/* Typography */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #1e3a5f, #2c5282, #1e3a5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #2d8659, #38a169, #2d8659, transparent);
    border-radius: 2px;
    animation: expandLine 1s ease-out;
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
}

.lead.text-muted {
    color: #6c757d !important;
    font-size: 1rem;
}

/* Responsive Typography */
@media (min-width: 576px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .lead {
        font-size: 1.15rem;
    }
    
    .hero-slider img {
        min-height: 400px;
    }
    
    .hero-slider .carousel-caption h5 {
        font-size: 3rem;
    }
    
    .placeholder {
        min-height: 400px;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
    
    .hero-slider img {
        min-height: 500px;
        max-height: 650px;
    }
    
    .hero-slider .carousel-caption h5 {
        font-size: 3.5rem;
    }
    
    .placeholder {
        min-height: 500px;
    }
}

@media (min-width: 992px) {
    .section-title {
        font-size: 3rem;
    }
    
    .hero-slider img {
        height: 600px;
    }
    
    .hero-slider .carousel-caption {
        padding: 3rem 4rem;
    }
    
    .hero-slider .carousel-caption h5 {
        font-size: 4rem;
    }
    
    .main-nav {
        gap: 0.75rem;
    }
    
    .nav-link {
        padding: 0.875rem 1.25rem;
    }
}

/* Amenities Section - Prevent Overlap */
.amenities-section {
    background: #ffffff !important;
    position: relative;
    z-index: 3;
    margin-top: 0;
}

.amenities-section::before {
    background: #ffffff !important;
    opacity: 1 !important;
}

/* Amenities Cards */
.amenity-card {
    border-radius: 20px;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(45, 134, 89, 0.1);
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 134, 89, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.amenity-card:hover::before {
    opacity: 1;
}

.amenity-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(45, 134, 89, 0.2);
    border-color: rgba(45, 134, 89, 0.3);
}

.amenity-card .display-5 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2d8659, #38a169);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.amenity-card:hover .display-5 {
    transform: scale(1.1) rotate(5deg);
}

.amenity-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #1a1a2e;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.amenity-card:hover h5 {
    color: #2d8659;
}

@media (min-width: 576px) {
    .amenity-card {
        padding: 1.5rem;
    }
    
    .amenity-card h5 {
        font-size: 1.1rem;
    }
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    top: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.floating-btn.whatsapp {
    background: #25d366;
}

.floating-btn.phone {
    background: #1e3a5f;
}

@media (min-width: 768px) {
    .floating-actions {
        top: 50%;
        bottom: auto;
        right: 24px;
        transform: translateY(-50%);
    }
    
    .floating-btn {
        width: 54px;
        height: 54px;
        font-size: 1.4rem;
    }
}

/* Gallery CTA */
.gallery-cta {
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 60px 30px;
    color: #fff;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 0;
}

.gallery-cta > * {
    position: relative;
    z-index: 1;
}

.gallery-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.gallery-cta p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    .gallery-cta {
        padding: 60px 30px;
        min-height: 300px;
    }
    
    .gallery-cta h2 {
        font-size: 1.75rem;
    }
}

@media (min-width: 768px) {
    .gallery-cta {
        padding: 80px 40px;
        min-height: 350px;
    }
    
    .gallery-cta h2 {
        font-size: 2rem;
    }
}

/* Gallery Grid */
.gallery-grid {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: #fff;
}

.gallery-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-grid:hover::before {
    opacity: 1;
}

.gallery-grid img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    height: 250px;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.95);
}

.gallery-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.2);
}

.gallery-grid:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.gallery-grid p {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: #1a1a2e;
    padding: 0 0.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 576px) {
    .gallery-grid img {
        height: 280px;
    }
}

@media (min-width: 768px) {
    .gallery-grid img {
        height: 300px;
    }
}

/* Cards */
.card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none !important;
    background: #fff;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2d8659, #38a169, #2d8659);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(45, 134, 89, 0.2) !important;
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.95);
}

.card:hover .card-img-top {
    transform: scale(1.1);
    filter: brightness(1);
}

@media (min-width: 576px) {
    .card-img-top {
        height: 220px;
    }
}

@media (min-width: 768px) {
    .card-img-top {
        height: 250px;
    }
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card .card-img-top {
    height: 180px;
}

.service-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .service-card .card-img-top {
        height: 220px;
    }
}

/* Forms */
.form-control,
.form-select {
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    background: #fff;
}

.form-control:focus,
.form-select:focus {
    border-color: #2d8659;
    box-shadow: 0 0 0 0.2rem rgba(45, 134, 89, 0.15), 0 4px 12px rgba(45, 134, 89, 0.1);
    transform: translateY(-2px);
    outline: none;
}

.form-control:hover,
.form-select:hover {
    border-color: #2d8659;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.btn {
    border-radius: 12px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2d8659, #38a169);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #256d47, #2d8659);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.4);
}

.btn-outline-primary {
    border: 2px solid #2d8659;
    color: #2d8659;
    background: transparent;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #2d8659, #38a169);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.3);
}

.btn-light {
    background: rgba(255, 255, 255, 0.95);
    color: #2d8659;
    border: 2px solid transparent;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.btn-light:hover {
    background: #fff;
    color: #256d47;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, #2d8659, #38a169);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-success::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-success:hover::before {
    left: 100%;
}

.btn-success:hover {
    background: linear-gradient(135deg, #256d47, #2d8659);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.5);
    color: #fff;
}

#downloadButtonContainer {
    animation: slideDown 0.5s ease-out;
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

@media (max-width: 575px) {
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Carousel */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 134, 89, 0.9);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(45, 134, 89, 1);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.4);
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

@media (min-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 60px;
        height: 60px;
    }
    
    .carousel-control-prev {
        left: 30px;
    }
    
    .carousel-control-next {
        right: 30px;
    }
}

/* Rooms Carousel */
#roomsCarousel .carousel-item {
    padding: 0 10px;
}

@media (min-width: 768px) {
    #roomsCarousel .carousel-item {
        padding: 0 15px;
    }
}

/* Video Embeds */
.ratio {
    border-radius: 12px;
    overflow: hidden;
}

.ratio iframe {
    border: none;
}

/* Distance Points - Attractive Design */
.distance-point-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(45, 134, 89, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.distance-point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        #2d8659 0%, 
        #38a169 25%, 
        #1e3a5f 50%, 
        #38a169 75%, 
        #2d8659 100%);
    background-size: 200% 100%;
    animation: shimmerGradient 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.distance-point-card:hover::before {
    opacity: 1;
}

.distance-point-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 134, 89, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.distance-point-card:hover::after {
    opacity: 1;
}

.distance-point-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(45, 134, 89, 0.2);
    border-color: rgba(45, 134, 89, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.distance-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2d8659 0%, #38a169 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.distance-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d8659, #38a169, #1e3a5f);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.distance-point-card:hover .distance-icon::before {
    opacity: 0.3;
    animation: pulseRing 2s ease infinite;
}

.distance-icon i {
    font-size: 1.75rem;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.distance-point-card:hover .distance-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.4);
}

.distance-point-card:hover .distance-icon i {
    transform: scale(1.1);
}

.distance-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.distance-point-card:hover .distance-label {
    color: #2d8659;
}

.distance-value {
    font-size: 1rem;
    color: #38a169;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.distance-value i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.distance-point-card:hover .distance-value {
    color: #1e3a5f;
    font-weight: 600;
}

.distance-point-card:hover .distance-value i {
    opacity: 1;
    transform: translateX(3px);
}

@keyframes shimmerGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulseRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f1f35 100%);
    color: #e0e7ff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2d8659, #38a169, #2d8659);
}

.footer-top {
    background: rgba(30, 58, 95, 0.2);
    position: relative;
}

.footer-widget {
    position: relative;
    z-index: 1;
}

.footer-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #2d8659, transparent);
}

.footer-logo {
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

.footer-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

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

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

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

.footer-links a::before {
    content: '→';
    color: #38a169;
    margin-right: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
    left: -15px;
}

.footer-links a:hover {
    color: #38a169;
    padding-left: 15px;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

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

.footer-contact li {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 20px;
    color: #38a169;
}

.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #38a169;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.social-icon.phone {
    background: #1e3a5f;
}

.social-icon.phone:hover {
    background: #2c5282;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.4);
}

.social-icon.email {
    background: #6c757d;
}

.social-icon.email:hover {
    background: #5a6268;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

.footer-bottom {
    background: rgba(15, 31, 53, 0.6);
    border-top: 1px solid rgba(45, 134, 89, 0.2) !important;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom .text-muted {
    color: #888 !important;
}

.footer-legal-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #2d8659;
    text-decoration: underline;
}

.spectrum-link {
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px dotted transparent;
}

.spectrum-link:hover {
    color: #38a169 !important;
    border-bottom-color: #38a169;
    text-decoration: none !important;
}

/* Footer Enhancements */
.footer-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-title img {
    margin-right: 0 !important;
}

.footer-contact span {
    flex: 1;
    word-break: break-word;
}

.footer-contact a {
    flex: 1;
    word-break: break-word;
}

/* Footer Animation */
@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-widget {
    animation: footerFadeIn 0.6s ease-out;
}

.footer-widget:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-widget:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-widget:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-widget:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive Header */
/* Responsive Header */
@media (max-width: 1200px) {
    .main-nav {
        gap: 0;
    }
    
    .nav-link {
        padding: 0.75rem 0.875rem;
        margin: 0;
        font-size: 0.9rem;
    }
}

@media (max-width: 991px) {
    .top-bar-info {
        display: none !important;
    }
    
    .top-bar-actions {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .site-title {
        font-size: 1.25rem;
    }
    
    .main-nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.75rem 1.25rem;
        margin: 0 0.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .header-top-bar {
        padding: 0.5rem 0;
    }
    
    .top-bar-action-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .top-bar-action-btn span {
        display: none;
    }
    
    .top-bar-action-btn i {
        margin: 0;
    }
    
    .header-logo {
        height: 45px;
    }
    
    .site-title {
        font-size: 1.2rem;
    }
    
    .header-main-content {
        padding: 1rem 0;
    }
    
    .main-header {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
    }
    
    .mobile-nav.open {
        padding: 1.5rem 0;
    }
    
    .mobile-nav-content {
        padding: 0 1rem;
    }
    
    .mobile-nav-link {
        padding: 1rem 1.25rem;
        margin: 0.4rem 0;
        font-size: 0.95rem;
    }
    
    .mobile-nav-link i {
        width: 22px;
        height: 22px;
        font-size: 1rem;
        padding: 0.4rem;
    }
}

@media (max-width: 767px) {
    .header-main-content {
        padding: 0.75rem 0;
    }
    
    .logo-wrapper {
        padding: 0.35rem;
    }
    
    .header-logo {
        height: 40px;
    }
    
    .site-title {
        font-size: 1.25rem;
    }
    
    .site-tagline {
        display: none;
    }
    
    .footer-top {
        padding: 2.5rem 0 !important;
    }
    
    .footer-widget {
        margin-bottom: 2rem;
    }
    
    .footer-widget:last-child {
        margin-bottom: 0;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-links a,
    .footer-contact li {
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding: 1rem 0 !important;
        text-align: center;
    }
    
    .footer-bottom .row > div {
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 768px) {
    .footer-top {
        padding: 4rem 0 !important;
    }
    
    .footer-bottom {
        padding: 1.5rem 0 !important;
    }
}

@media (min-width: 992px) {
    .footer-top {
        padding: 5rem 0 !important;
    }
}

/* Contact Page */
.contact-map {
    margin-top: 1.5rem;
}

.contact-map .ratio {
    min-height: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .contact-map .ratio {
        min-height: 350px;
    }
}

/* Contact Card Enhancement */
.contact-page .card {
    border-left: 4px solid #38a169;
}

.contact-page .card h3 {
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-page .card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2d8659, #38a169);
    border-radius: 2px;
}

/* Book Now Page */
#bookingForm .row {
    margin-bottom: 0;
}

/* Modal */
.modal-content {
    border-radius: 12px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 1.25rem 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid #eee;
    padding: 1.25rem 1.5rem;
}

@media (max-width: 575px) {
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-content {
        border-radius: 8px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
}

/* Tables (Admin) */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .table {
        font-size: 0.85rem;
    }
    
    .table th,
    .table td {
        padding: 0.5rem;
        white-space: nowrap;
    }
}

/* Admin Sidebar Responsive */
@media (max-width: 991px) {
    .sidebar {
        min-height: auto;
        width: 100%;
        position: relative;
    }
    
    .content {
        padding: 1rem;
    }
}

/* Spacing Utilities */
.py-5 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

section.py-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (max-width: 767px) {
    .py-5 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Text Utilities */
.text-uppercase {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: #2d8659 !important;
    text-transform: uppercase;
}

@media (min-width: 576px) {
    .text-uppercase {
        font-size: 0.8rem;
    }
}

/* Image Responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Grid Responsive */
.row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.row > * {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* Alert Messages */
.alert {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
}

@media (min-width: 576px) {
    .alert {
        padding: 1.25rem;
    }
}

/* Price Display */
.price-display {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2d8659, #38a169);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-body .fw-semibold.text-primary {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d8659 !important;
}

/* Override Bootstrap primary colors */
.text-primary {
    color: #2d8659 !important;
}

.bg-primary {
    background-color: #2d8659 !important;
}

.border-primary {
    border-color: #2d8659 !important;
}

@media (min-width: 576px) {
    .price-display {
        font-size: 1.25rem;
    }
}

/* Badge Responsive */
.badge {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
}

@media (min-width: 576px) {
    .badge {
        font-size: 0.8rem;
        padding: 0.4em 0.7em;
    }
}

/* Utility Classes */
.d-grid {
    display: grid;
}

@media (max-width: 575px) {
    .d-grid {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .floating-actions,
    .main-header,
    .mobile-nav,
    .btn {
        display: none !important;
    }
}
