:root {
    --primary-color: #0d4f3c;
    --primary-light: #2d8659;
    --secondary-color: #ff6b35;
    --accent-color: #ffd23f;
    --text-dark: #1a1a1a;
    --text-light: #4a5568;
    --light-bg: #ffffff;
    --cream: #fef8f3;
    --dark-green: #0a3d2e;
    --gradient-primary: linear-gradient(
        135deg,
        #0d4f3c 0%,
        #2d8659 50%,
        #4ade80 100%
    );
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #ffd23f 100%);
    --gradient-bg: linear-gradient(
        135deg,
        #fef8f3 0%,
        #f0fdf4 50%,
        #ecfdf5 100%
    );
    --shadow-elegant: 0 20px 60px rgba(13, 79, 60, 0.15);
    --shadow-hover: 0 30px 80px rgba(13, 79, 60, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--gradient-bg);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Enhanced Typography */
.display-font {
    font-family: "Cinzel", serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.script-font {
    font-family: "Dancing Script", cursive;
    font-weight: 600;
}

.elegant-font {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}

/* Enhanced Navbar */
.navbar {
    background: linear-gradient(
        135deg,
        rgba(13, 79, 60, 0.43) 0%,
        rgba(10, 61, 46, 0.59) 100%
    ) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 40px rgba(13, 79, 60, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: linear-gradient(
        135deg,
        rgba(10, 61, 46, 0.98) 0%,
        rgba(13, 79, 60, 0.99) 100%
    ) !important;
    box-shadow: 0 12px 50px rgba(13, 79, 60, 0.3);
}

.navbar-brand {
    font-family: "Cinzel", serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: white !important;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
    height: 55px;
    width: auto;
    margin-right: 18px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 0.8rem;
    position: relative;
    border-radius: 25px;
}

.nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: var(--accent-color) !important;
    background: rgba(255, 255, 255, 0.15);
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 5px;
    left: 50%;
    background: var(--accent-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

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

/* Navbar Toggler Styling */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 210, 63, 0.25);
    border-color: var(--accent-color);
}

.navbar-toggler:hover {
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Book Now Button in Navbar */
.btn-book-now {
    background: var(--gradient-secondary) !important;
    border: none;
    color: white !important;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    text-decoration: none;
    font-size: 1rem;
    margin-left: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-book-now::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.6s;
}

.btn-book-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    color: white !important;
}

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

/* Enhanced Carousel */
.carousel-item {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.carousel-item img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    transition: transform 10s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item.active img {
    transform: scale(1.15);
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 79, 60, 0.7) 0%,
        rgba(10, 61, 46, 0.5) 50%,
        rgba(45, 134, 89, 0.6) 100%
    );
    z-index: 1;
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 2;
    text-align: center;
    padding: 0 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-caption h5 {
    font-family: "Cinzel", serif;
    font-weight: 900;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7);
    letter-spacing: -2px;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
    background: linear-gradient(135deg, #ffffff 0%, #ffd23f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-caption p {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.carousel-caption .btn {
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.1s both;
}

/* Enhanced Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 1.2rem 3rem;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #2d8659 0%, #4ade80 50%, #10b981 100%);
    color: white;
}

.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.6s;
}

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

/* Section Styling */
.section-title {
    font-family: "Cinzel", serif;
    font-weight: 800;
    font-size: 4rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    text-align: center;
    position: relative;
    letter-spacing: -1px;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--primary-light) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: var(--gradient-secondary);
    border-radius: 3px;
}

.section-subtitle {
    font-family: "Dancing Script", cursive;
    font-size: 2.2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: -2rem;
}

/* Enhanced Accommodations Section */
#accommodations {
    background: linear-gradient(
        135deg,
        #fef8f3 0%,
        #f0fdf4 25%,
        #ecfdf5 50%,
        #f3f4f6 75%,
        #fef8f3 100%
    );
    position: relative;
    overflow: hidden;
}

#accommodations::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 25% 25%,
            rgba(13, 79, 60, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 75% 75%,
            rgba(255, 107, 53, 0.05) 0%,
            transparent 50%
        );
    opacity: 0.8;
}

.accommodations-container {
    position: relative;
    z-index: 2;
}

.accommodation-row {
    margin-bottom: 5rem;
}

.accommodation-row:last-child {
    margin-bottom: 0;
}

/* Enhanced Cards */
.accommodation-card {
    border: none;
    border-radius: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(13, 79, 60, 0.1);
    overflow: hidden;
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(254, 248, 243, 0.95) 100%
    );
    backdrop-filter: blur(15px);
    height: 520px;
    border: 1px solid rgba(13, 79, 60, 0.1);
}

.accommodation-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 40px 100px rgba(13, 79, 60, 0.2);
    border-color: var(--primary-light);
}

.accommodation-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 79, 60, 0.05),
        rgba(255, 107, 53, 0.05)
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

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

.accommodation-card .card-img-top {
    height: 300px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

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

.accommodation-card .card-body {
    padding: 2.8rem 2.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(254, 248, 243, 0.98) 100%
    );
}

.accommodation-card .card-title {
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: -0.5px;
}

.accommodation-card .card-text {
    font-family: "Cormorant Garamond", serif;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    text-align: center;
    line-height: 1.7;
}

.accommodation-card .btn {
    border-radius: 30px;
    font-weight: 700;
    padding: 1rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

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

.accommodation-card .btn-outline-primary:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 79, 60, 0.3);
}

/* Premium Badge Enhanced */
.badge-premium {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #1a1a1a;
    font-weight: 800;
    padding: 1rem 1.8rem;
    border-radius: 30px;
    z-index: 10;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: premium-glow 3s infinite alternate;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

@keyframes premium-glow {
    0% {
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    }
    100% {
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    }
}

.badge-ultimate {
    background: linear-gradient(135deg, #9333ea 0%, #c084fc 50%, #e879f9 100%);
    color: white;
    animation: ultimate-pulse 2.5s infinite;
}

@keyframes ultimate-pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

/* Section Introduction */
.section-intro {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
    padding: 0 1rem;
}

.section-intro p {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Amenities Section */
#amenities {
    background: linear-gradient(
        135deg,
        #f0fdf4 0%,
        #ecfdf5 25%,
        #fef8f3 50%,
        #f3f4f6 75%,
        #f0fdf4 100%
    );
    position: relative;
}

#amenities::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 80%,
            rgba(255, 107, 53, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(13, 79, 60, 0.08) 0%,
            transparent 50%
        );
}

.amenity-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(240, 253, 244, 0.95) 100%
    );
    backdrop-filter: blur(15px);
    border: 2px solid rgba(13, 79, 60, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(13, 79, 60, 0.08);
}

.amenity-card:hover {
    background: linear-gradient(
        135deg,
        rgba(254, 248, 243, 0.98) 0%,
        rgba(255, 255, 255, 0.98) 100%
    );
    border-color: var(--primary-light);
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(13, 79, 60, 0.15);
}

.amenity-icon {
    font-size: 4.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.8rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 8px 20px rgba(13, 79, 60, 0.2));
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.3) rotateY(360deg);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #fef8f3 0%, #f0fdf4 50%, #ecfdf5 100%);
    position: relative;
}

#contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(13, 79, 60, 0.05) 0%,
        transparent 70%
    );
}
.contact-form {
    padding: 2rem !important;
}

.contact-form .form-control {
    padding: 0.6rem 1rem !important;
    font-size: 0.9rem;
    border-radius: 12px;
}

.contact-form .form-label {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.contact-form .form-label i {
    font-size: 0.8rem;
}

.contact-form .mb-3 {
    margin-bottom: 1rem !important;
}

.contact-form .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form .col-md-6 {
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem !important;
    }
}

/* Footer */
.footer {
    background: linear-gradient(
        135deg,
        var(--dark-green) 0%,
        var(--primary-color) 50%,
        #1e40af 100%
    );
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 30% 70%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 30%,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 50%
        );
    opacity: 0.4;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.fade-in-up-delay-1 {
    animation-delay: 0.2s;
}
.fade-in-up-delay-2 {
    animation-delay: 0.4s;
}
.fade-in-up-delay-3 {
    animation-delay: 0.6s;
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .navbar-brand {
        font-size: 1.8rem;
    }

    .navbar-brand img {
        height: 45px;
        margin-right: 12px;
    }

    .accommodation-card {
        height: auto;
        min-height: 480px;
    }

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

@media (max-width: 992px) {
    .carousel-caption h5 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .carousel-caption p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-subtitle {
        font-size: 2rem;
    }

    .accommodation-card {
        margin-bottom: 2rem;
        height: auto;
        min-height: 450px;
    }

    .accommodation-card .card-body {
        padding: 2rem 2rem;
    }

    .amenity-icon {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .navbar-brand img {
        height: 40px;
        margin-right: 10px;
    }

    .btn-book-now {
        margin-left: 0;
        margin-top: 1rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .carousel-item {
        height: 70vh;
    }

    .carousel-item img {
        height: 70vh;
    }

    .carousel-caption {
        padding: 0 1.5rem;
    }

    .carousel-caption h5 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .carousel-caption p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .carousel-caption .btn {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .section-subtitle {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .section-intro p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .accommodation-card {
        height: auto;
        min-height: 400px;
        margin-bottom: 2rem;
    }

    .accommodation-card .card-img-top {
        height: 250px;
    }

    .accommodation-card .card-body {
        padding: 1.5rem 1.5rem;
    }

    .accommodation-card .card-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .accommodation-card .card-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .accommodation-card .btn {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .amenity-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem !important;
    }

    .amenity-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .amenity-card .card-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .amenity-card .card-text {
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.5rem !important;
        margin: 0 0.5rem;
        border-radius: 20px;
    }

    .form-control {
        border-radius: 15px;
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }

    .form-label {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

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

    .badge-premium {
        top: 1rem;
        right: 1rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        margin-top: 1rem;
    }

    .nav-link {
        margin: 0.2rem 0;
        padding: 0.8rem 1rem !important;
        text-align: center;
    }

    .btn-book-now {
        width: 100%;
        margin: 1rem 0 0 0;
    }

    .carousel-item {
        height: 60vh;
    }

    .carousel-item img {
        height: 60vh;
    }

    .carousel-caption {
        padding: 0 1rem;
        top: 45%;
    }

    .carousel-caption h5 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .carousel-caption p {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .carousel-caption .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
        margin-top: -1rem;
    }

    .section-intro {
        padding: 0 0.5rem;
        margin-bottom: 3rem;
    }

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

    .accommodation-row {
        margin-bottom: 3rem;
    }

    .accommodation-card .card-img-top {
        height: 220px;
    }

    .accommodation-card .card-body {
        padding: 1.2rem 1.2rem;
    }

    .accommodation-card .card-title {
        font-size: 1.3rem;
    }

    .accommodation-card .card-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .amenity-card {
        padding: 1.2rem !important;
    }

    .contact-form {
        padding: 1.5rem !important;
        margin: 0 0.5rem;
        border-radius: 20px;
    }

    .form-control {
        border-radius: 15px;
    }

    .contact-info {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .contact-info:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
    }

    .decoration-leaf {
        display: none;
    }

    .badge-premium {
        top: 0.8rem;
        right: 0.8rem;
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }

    .footer .row > div {
        margin-bottom: 2rem;
    }

    .footer h5,
    .footer h6 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

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

    .footer .social-links a {
        margin: 0 0.5rem;
    }

    #backToTop {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 375px) {
    .carousel-caption h5 {
        font-size: 1.7rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .accommodation-card .card-text {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1rem !important;
    }
}

.decoration-leaf {
    position: absolute;
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 10s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    75% {
        transform: translateY(-40px) rotate(270deg);
    }
}

.decoration-leaf:nth-child(2) {
    animation-delay: -2s;
}
.decoration-leaf:nth-child(3) {
    animation-delay: -4s;
}
.decoration-leaf:nth-child(4) {
    animation-delay: -6s;
}
.decoration-leaf:nth-child(5) {
    animation-delay: -8s;
}
/* Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-elegant);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 300px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 79, 60, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    color: white;
    font-size: 3rem;
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    line-height: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

#lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
    transition: opacity 0.15s ease;
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 20px;
}

.lightbox-counter {
    position: absolute;
    top: 30px;
    left: 40px;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 20px;
    cursor: pointer;
    font-size: 2rem;
    transition: all 0.3s ease;
    z-index: 10000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    #lightbox-img {
        max-width: 95%;
        max-height: 70vh;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-counter {
        top: 20px;
        left: 20px;
        font-size: 1rem;
        padding: 8px 15px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }
}
