/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #142615;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(20, 38, 21, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo img {
    height: 5rem;
    width: auto;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-logo h2 {
    color: #f1f1f1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #f1f1f1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4F7336;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4F7336;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #A6775B;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 38, 21, 0.4), rgba(65, 89, 54, 0.3));
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
}

.hero-title {
    display: block;
    height: 18rem;
    width: 32rem;
    animation: fadeInUp 1s ease-out;
    padding: 10px;
}

.cta-button {
    background: linear-gradient(135deg, #A6775B, #593122);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(166, 119, 91, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(166, 119, 91, 0.4);
    background: linear-gradient(135deg, #593122, #A6775B);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #415936, #4F7336);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    color: #f1f1f1;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f1f1f1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Updates Section */
.updates {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title{
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #142615;
}

.title-local{
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #142615;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
    margin-bottom: 40px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    width: max-content;
    will-change: transform;
}

.carousel-slide {
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
}

/* Price Bubble Styling */
.price-bubble {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #A6775B, #593122);
    color: white;
    padding: 12px 16px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(166, 119, 91, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.price-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(166, 119, 91, 0.6);
}

.price-amount {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.price-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Destination Image Container */
.destination-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-item:hover .destination-image img {
    transform: scale(1.05);
}

.destination-content {
    padding: 1.5rem;
}

.destination-content h3 {
    color: #142615;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.destination-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.destination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #A6775B, #593122);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(166, 119, 91, 0.2);
}

.destination-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 119, 91, 0.3);
    background: linear-gradient(135deg, #593122, #A6775B);
}

.destination-btn i {
    transition: transform 0.3s ease;
}

.destination-btn:hover i {
    transform: translateX(3px);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #A6775B;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(166, 119, 91, 0.3);
}

.carousel-btn:hover {
    background: #593122;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;

    position: relative;
    overflow: hidden;

}

.bg-image{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;      
    transform: scale(0.9); 
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text p {
    font-weight: 450;
    margin-bottom: 1.5rem;
    color: rgb(0,0,0);
    line-height: 1.8;
}

.learn-more-btn {
    background: linear-gradient(135deg, #A6775B, #593122);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 119, 91, 0.3);
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.image-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-item:nth-child(1) {
    grid-column: 1 / -1;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-item:hover img {
    transform: scale(1.05);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.reviews-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-section .section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.reviews-section .section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.reviews-grid {
    position: relative;
    min-height: 300px;
}

.review-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    transform: translateX(50px);
}

.review-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.review-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.review-content::before {
    content: '"';
    font-size: 4rem;
    color: #3498db;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
    opacity: 0.3;
}

.review-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 25px;
    font-style: italic;
}

.review-author h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.rating{
    color:gold;
}

.review-author span {
    color: #6c757d;
    font-size: 0.95rem;
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.nav-btn {
    background: #3498db;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.nav-btn:hover {
    background: #2980b9;
    transform: scale(1.1);
}

.nav-btn:active {
    transform: scale(0.95);
}

.review-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: #3498db;
    transform: scale(1.2);
}

.indicator.active {
    background: #3498db;
    transform: scale(1.2);
}

/* Responsive grid for reviews */
@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .review-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .review-item {
        padding: 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #142615 0%, #415936 100%);
    color: white;
}

.contact .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #A6775B;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 250px;
    flex: 1;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #A6775B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #A6775B;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
    width: 100%;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #A6775B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #8B5A3C;
    transform: scale(1.1);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A6775B;
}

.submit-btn {
    background: linear-gradient(135deg, #A6775B, #593122);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 119, 91, 0.3);
}

/* Footer */
.footer {
    background: #142615;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #A6775B;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #A6775B;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #A6775B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #593122;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(20, 38, 21, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        height: 10rem;
        width: auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .carousel-container {
        padding: 0 20px;
    }

    .carousel-slide {
        min-width: 250px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        height: 12rem;
        width:auto;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .review-card {
        padding: 2rem 1rem;
    }
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #A6775B;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #593122;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-section .section-header h2 {
        font-size: 2rem;
    }
    
    .reviews-section .section-header p {
        font-size: 1rem;
    }
    
    .review-content {
        padding: 30px 20px;
    }
    
    .review-content p {
        font-size: 1rem;
    }
    
    .reviews-nav {
        margin-top: 30px;
        gap: 15px;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .reviews-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .review-content {
        padding: 25px 15px;
    }
    
    .review-content p {
        font-size: 0.95rem;
    }
    
    .reviews-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-item {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
    
    .contact .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact .section-title {
        font-size: 1.8rem;
    }
}

/* Responsive Design for Price Bubbles */
@media (max-width: 768px) {
    .price-bubble {
        top: 15px;
        right: 15px;
        padding: 10px 14px;
    }
    
    .price-amount {
        font-size: 1.1rem;
    }
    
    .price-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .price-bubble {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
    }
    
    .price-amount {
        font-size: 1rem;
    }
    
    .price-label {
        font-size: 0.7rem;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    z-index: 10000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent;
}
.floating-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.22);
    text-decoration: none !important;
}
.floating-whatsapp:focus { outline: none; }
.floating-whatsapp:focus-visible { outline: 2px solid #128C7E; outline-offset: 3px; }
.floating-whatsapp i {
    font-size: 28px;
    line-height: 1;
    text-decoration: none !important;
}
@media (max-width: 768px) {
    .floating-whatsapp { right: 16px; bottom: 16px; width: 52px; height: 52px; }
    .floating-whatsapp i { font-size: 26px; }
}
@media (max-width: 480px) {
    .floating-whatsapp { right: 12px; bottom: 12px; width: 48px; height: 48px; }
    .floating-whatsapp i { font-size: 24px; }
}

.watermark{
    position: fixed;
    left: 22px;
    bottom: 22px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent;
}

.watermark2{
    height: 20px;
    width: 20px;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.footer-bottom a{
    color : #f1f1f1;
    text-decoration: none;
}
