:root {
    /* Updated Color Scheme */
    --primary: #5D8736;
    --primary-light: #809D3C;
    --primary-dark: #4A6C2C;
    --white: #ffffff;
    --black: #212529;
    
    /* Updated Neutral Colors */
    --neutral-100: #ffffff;
    --neutral-200: #f8f9fa;
    --neutral-300: #e9ecef;
    --neutral-400: #6c757d;
    --neutral-500: #212529;
    
    /* Accent Colors */
    --accent-gold: #F4FFC3;
    --accent-light: #F4FFC3;
}

body {
    font-family: 'Playfair Display', serif;
    overflow-x: hidden;
    background-color: var(--neutral-200);
    color: var(--neutral-500);
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    color: var(--white);
}

.banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1.2s ease, transform 7s ease;
    transform: scale(1.1);
}

.banner-slide.active {
    opacity: 1;
    transform: scale(1);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.811) 0%, rgba(0, 0, 0, 0.559) 100%);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    padding: 30px 0;
}

.banner-content .subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(93, 135, 54, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 1rem;
    color: var(--neutral-100);
    border: 1px solid rgba(93, 135, 54, 0.3);
    animation: fadeInDown 1s ease forwards;
}

.banner-content .title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: white;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    animation: fadeInDown 1s ease 0.3s forwards;
    opacity: 0;
}

.banner-content .highlight {
    color: var(--accent-gold);
    position: relative;
    display: inline-block;
}

.banner-content .description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0;
    max-width: 90%;
    animation: fadeInDown 1s ease 0.6s forwards;
}

.banner-content .buttons {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInDown 1s ease 0.9s forwards;
}

.hero-btn {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.banner-content .video-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-btn .icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-btn .icon-circle::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid var(--primary-light);
    opacity: 0.5;
    animation: pulse-ring 2s infinite;
}

.video-btn .icon-circle i {
    font-size: 1.5rem;
    margin-left: 5px;
    color: white;
}

.video-btn .text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.video-btn:hover {
    transform: translateY(-3px);
    color: var(--primary-light);
}

.video-btn:hover .icon-circle {
    background: white;
}

.video-btn:hover .icon-circle i {
    color: var(--primary);
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.8;
    }
}

/* Banner Features */
.banner-features {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-banner:hover .banner-features {
    transform: translateY(0);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item:hover {
    background: rgba(9, 93, 64, 0.2);
}

.feature-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item .icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-item .content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
    font-weight: 600;
}

.feature-item .content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Banner Navigation */
.banner-navigation {
    position: absolute;
    right: 30px;
    bottom: 120px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slide-counter {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.slide-counter .divider {
    margin: 0 5px;
    opacity: 0.5;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: white;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, 10px);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
}

.arrows {
    position: relative;
    width: 20px;
    height: 20px;
    margin: 0 auto;
}

.arrow-down {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 0 auto;
    animation: arrowDown 1.5s infinite;
}

.arrow-down:nth-child(2) {
    animation-delay: 0.3s;
    margin-top: -6px;
}

@keyframes arrowDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(10px, 10px);
    }
}

/* Section styling */
.section-header {
    position: relative;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    text-transform: capitalize;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.header-line {
    display: none;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-400);
    margin-top: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Room card styling */
.room-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
    margin-bottom: 4rem;
    border: none;
}

.room-card.show {
    opacity: 1;
    transform: translateY(0);
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.room-images {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.room-card:hover .main-image {
    transform: scale(1.08);
}

.additional-images {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 12px;
    z-index: 2;
}

.additional-images img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    border: 3px solid white;
    cursor: pointer;
    object-fit: cover;
    transition: all 0.4s ease;
}

.additional-images img:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    border-color: var(--accent-gold);
}

.room-details {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 40px !important;
}

.room-title {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.room-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    transition: width 0.4s ease;
}

.room-card:hover .room-title::after {
    width: 100%;
}

.price {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
}

.price span {
    font-size: 1rem;
    color: var(--neutral-400);
    font-weight: normal;
    margin-left: 8px;
}

.description {
    color: var(--neutral-400);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.booking-section {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

/* Ultra Premium Luxury Button Design */
.book-now {
    position: relative;
    background: linear-gradient(135deg, #5D8736 0%, #4A6C2C 50%, #3E5B24 100%);
    border: none;
    padding: 20px 40px;
    border-radius: 25px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 700;
    letter-spacing: 1.2px;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 
        0 8px 30px rgba(93, 135, 54, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
    text-transform: uppercase;
    min-width: 220px;
    font-family: 'Playfair Display', serif;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
}

.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.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.book-now::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transform: translateY(-50%);
    transition: all 0.4s ease;
    opacity: 0.7;
    z-index: 2;
}

.book-now .btn-icon {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.book-now .btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.book-now:hover {
    background: linear-gradient(135deg, #4A6C2C 0%, #3E5B24 50%, #2F4A1C 100%);
    transform: translateY(-8px) rotateX(10deg);
    box-shadow: 
        0 15px 40px rgba(93, 135, 54, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: white;
}

.book-now:hover::before {
    left: 100%;
}

.book-now:hover::after {
    right: 20px;
    opacity: 1;
    border-left-color: #F4FFC3;
}

.book-now:hover .btn-icon {
    transform: scale(1.1) rotate(5deg);
    color: #F4FFC3;
}

.book-now:hover .btn-text {
    letter-spacing: 1.5px;
}

.book-now:active {
    transform: translateY(-3px) rotateX(5deg);
    box-shadow: 
        0 8px 20px rgba(93, 135, 54, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.1s ease;
}

/* Glowing effect */
.book-now:focus,
.book-now:focus-visible {
    outline: none;
    box-shadow: 
        0 8px 30px rgba(93, 135, 54, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 3px rgba(93, 135, 54, 0.3);
}

/* Loading state animation */
@keyframes pulse-glow {
    0% { box-shadow: 0 8px 30px rgba(93, 135, 54, 0.4); }
    50% { box-shadow: 0 12px 40px rgba(93, 135, 54, 0.6); }
    100% { box-shadow: 0 8px 30px rgba(93, 135, 54, 0.4); }
}

.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.4s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(44, 110, 73, 0.2);
}

/* Testimonials section */
.testimonials-section {
    background-color: var(--accent-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(76, 149, 108, 0.1);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    z-index: 1;
}

.testimonials-section::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(76, 149, 108, 0.1);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    z-index: 1;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    height: 100%;
    z-index: 2;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.quote-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--primary-light);
    opacity: 0.15;
    font-size: 50px;
}

.testimonial-content {
    margin-bottom: 25px;
    font-style: italic;
    color: var(--neutral-400);
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: 700;
}

.rating {
    margin-top: 8px;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(24, 77, 59, 0.85), rgba(24, 77, 59, 0.85));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(255, 255, 255, 0.03) 35px,
        rgba(255, 255, 255, 0.03) 70px
    );
    opacity: 0.5;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-section .btn-primary {
    background-color:#6eae35;
    border-color:#000000;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.cta-section .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background-color: #336f40;
    border-color: #000000;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .banner-content .title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .banner-content {
        max-width: 500px;
    }
    
    .banner-content .title {
        font-size: 3rem;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-item .icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-item .content h4 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 600px;
    }
    
    .banner-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .banner-content .title {
        font-size: 2.5rem;
    }
    
    .banner-content .description {
        max-width: 100%;
    }
    
    .banner-content .buttons {
        justify-content: center;
    }
    
    .banner-features {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .room-images {
        height: 300px;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .banner-content .title {
        font-size: 2rem;
    }
    
    .banner-content .subtitle {
        font-size: 0.9rem;
    }
    
    .banner-navigation {
        right: 20px;
        bottom: 80px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .room-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}
