/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Base Styles */
:root {
    --primary-color: #3a5a40;
    --secondary-color: #588157;
    --accent-color: #a3b18a;
    --light-color: #dad7cd;
    --dark-color: #344e41;
    --white: #ffffff;
    --black: #000000;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

body {
    font-family: var(--font-primary);
    color: #333;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navigation */
.navbar {
    background-color: rgba(58, 90, 64, 0.9);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(58, 90, 64, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-icon {
    margin-right: 10px;
    font-size: 1.8rem;
    color: var(--light-color);
}

.brand-name {
    color: var(--white);
}

.nav-link {
    color: var(--light-color);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--light-color);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background: url('../img/villa12.jpeg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Section Styling */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Amenities Section */
.amenities-section {
    background-color: var(--white);
    padding: 80px 0;
}

.amenity-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(163, 177, 138, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.amenity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Gallery Preview */
.gallery-preview {
    padding: 80px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.gallery-item img {
    transition: all 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 90, 64, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Booking Section */
.booking-section {
    background: linear-gradient(rgba(58, 90, 64, 0.8), rgba(58, 90, 64, 0.8)), url('../img/villa2.jpeg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 80px 0;
}

.booking-form {
    background-color: var(--white);
    color: var(--dark-color);
}

.booking-form h3 {
    color: var(--primary-color);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background-color: var(--white);
    height: 100%;
}

.rating {
    color: #f8c537;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.guest-info img {
    border: 2px solid var(--accent-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-brand {
    font-size: 1.8rem;
    color: var(--white);
}

.footer-title {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer a {
    color: var(--light-color);
}

.footer a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-5px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Animations */
.animate__animated {
    animation-duration: 1s;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .hero-section {
        min-height: 500px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .amenity-card {
        padding: 20px 15px;
    }
    
    .amenity-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .footer-brand {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


/* About Villa Section */
.about-villa {
    padding: 80px 0;
    position: relative;
}



/* About Hero Section */
.about-hero-section {
    height: 60vh;
    min-height: 500px;
    background: url('../img/villa1.jpeg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    margin-top: 70px;
}

/* Journey Section */
.journey-section {
    position: relative;
}

.journey-image {
    position: relative;
}

.image-caption {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    z-index: 2;
}

.image-caption i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.image-caption p {
    margin: 0;
    font-style: italic;
    color: var(--dark-color);
}

.signature {
    font-family: var(--font-secondary);
    color: var(--primary-color);
}

/* Why Choose Us Section */
.feature-card {
    background: var(--white);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(58, 90, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* Features Section */
.features-image {
    position: relative;
}

.features-image .main-img {
    position: relative;
    z-index: 1;
}

.features-image .overlay-img {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    z-index: 2;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-list .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin: 0;
    background: rgba(58, 90, 64, 0.05);
}

/* Sustainability Section */
.eco-features {
    list-style: none;
    padding: 0;
}

.eco-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.eco-features i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
}

.eco-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-card {
    background: var(--white);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.team-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.team-card .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(58, 90, 64, 0.1);
    border-radius: 50%;
    margin: 0 5px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.team-card .social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(58, 90, 64, 0.9), rgba(58, 90, 64, 0.9)), url('../images/cta-bg.jpg') no-repeat center center;
    background-size: cover;
}


/* Explore Hero Section */
.explore-hero-section {
    height: 60vh;
    min-height: 500px;
    background: url('../images/explore-hero.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    margin-top: 70px;
}

/* Introduction Section */
.intro-section {
    position: relative;
}

.distance-chart ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.distance-chart li {
    background: rgba(58, 90, 64, 0.05);
    padding: 8px 15px;
    border-radius: 5px;
}

.distance-chart li span {
    font-weight: 600;
    color: var(--primary-color);
}

.map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.map-overlay i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Attractions Section */
.attraction-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.attraction-image {
    position: relative;
    height: 100%;
    min-height: 200px;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.distance-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.attraction-details {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.attraction-details h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.rating {
    color: #f8c537;
}

.rating span {
    color: #666;
    font-size: 0.9rem;
    margin-left: 5px;
}

.attraction-meta {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.attraction-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Experiences Section */
.experience-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.experience-image {
    height: 200px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.05);
}

.experience-content {
    padding: 20px;
}

.experience-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.experience-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.experience-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Tips Section */
.tip-card {
    background: var(--white);
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: rgba(58, 90, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.tip-card h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}rimary-color);
    font-size: 1.8rem;
    font-weight: 600;
}

.highlights {
    margin-top: 30px;
}

.highlight-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.highlight-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.main-img {
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.overlay-img {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    z-index: 2;
    border: 5px solid var(--white);
}

/* Rooms Section */
.room-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white);
}

.room-details {
    padding: 20px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.room-features span {
    background: rgba(58, 90, 64, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Instagram Section */
.instagram-section {
    position: relative;
    overflow: hidden;
}

.instagram-handle {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.reel-container {
    position: relative;
    padding-bottom: 125%;
    height: 0;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 10px;
}

.reel-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.btn-instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
    border: none;
}

.btn-instagram:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Booking Section Updates */
.booking-highlights {
    margin-top: 20px;
}

.booking-highlights .highlight-item {
    margin-bottom: 10px;
}

.booking-highlights i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* Scroll Down Button */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down a {
    color: var(--white);
    font-size: 1.5rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Book Now Button in Nav */
.navbar .btn-book {
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.navbar .btn-book:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}


/* About Hero Section */


/* Journey Section */
.journey-section {
    position: relative;
}

.journey-image {
    position: relative;
}

.image-caption {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    z-index: 2;
}

.image-caption i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.image-caption p {
    margin: 0;
    font-style: italic;
    color: var(--dark-color);
}

.signature {
    font-family: var(--font-secondary);
    color: var(--primary-color);
}

/* Why Choose Us Section */
.feature-card {
    background: var(--white);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(58, 90, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* Features Section */
.features-image {
    position: relative;
}

.features-image .main-img {
    position: relative;
    z-index: 1;
}

.features-image .overlay-img {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    z-index: 2;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-list .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin: 0;
    background: rgba(58, 90, 64, 0.05);
}

/* Sustainability Section */
.eco-features {
    list-style: none;
    padding: 0;
}

.eco-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.eco-features i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
}

.eco-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-card {
    background: var(--white);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.team-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.team-card .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(58, 90, 64, 0.1);
    border-radius: 50%;
    margin: 0 5px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.team-card .social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(58, 90, 64, 0.9), rgba(58, 90, 64, 0.9)), url('../images/cta-bg.jpg') no-repeat center center;
    background-size: cover;
}


/* Explore Hero Section */
.explore-hero-section {
    height: 60vh;
    min-height: 500px;
    background: url('../img/vindyachal.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    margin-top: 70px;
}

/* Introduction Section */
.intro-section {
    position: relative;
}

.distance-chart ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.distance-chart li {
    background: rgba(58, 90, 64, 0.05);
    padding: 8px 15px;
    border-radius: 5px;
}

.distance-chart li span {
    font-weight: 600;
    color: var(--primary-color);
}

.map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.map-overlay i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Attractions Section */
.attraction-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.attraction-image {
    position: relative;
    height: 100%;
    min-height: 200px;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.distance-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.attraction-details {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.attraction-details h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.rating {
    color: #f8c537;
}

.rating span {
    color: #666;
    font-size: 0.9rem;
    margin-left: 5px;
}

.attraction-meta {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.attraction-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Experiences Section */
.experience-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.experience-image {
    height: 200px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.05);
}

.experience-content {
    padding: 20px;
}

.experience-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.experience-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.experience-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Tips Section */
.tip-card {
    background: var(--white);
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: rgba(58, 90, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.tip-card h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Gallery Hero Section */
.gallery-hero-section {
    height: 60vh;
    min-height: 500px;
    background: url('../img/villa12.jpeg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
 
}

/* Gallery Filters */
.filter-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Main Gallery */
.gallery-category {
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 90, 64, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* Instagram Section */
.instagram-post {
    position: relative;
    display: block;
    overflow: hidden;
    height: 0;
    padding-bottom: 100%;
}

.instagram-post img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.instagram-post:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* Lightbox Overrides */
.lb-data .lb-caption {
    font-size: 1rem;
    line-height: 1.4;
}

.lb-nav a.lb-prev, 
.lb-nav a.lb-next {
    opacity: 1;
}

.lb-nav a.lb-prev {
    left: -100px;
}

.lb-nav a.lb-next {
    right: -100px;
}

.lb-close {
    top: -80px;
    right: 0;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .filter-nav {
        gap: 5px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .gallery-item img {
        height: 150px;
    }
    
    .lb-nav a.lb-prev {
        left: 0;
    }
    
    .lb-nav a.lb-next {
        right: 0;
    }
    
    .lb-close {
        top: -50px;
    }
}

/* Contact Hero Section */
.contact-hero-section {
    height: 60vh;
    min-height: 500px;
    background: url('../img/nightview.png') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
   
}

/* Contact Info Section */
.info-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: rgba(58, 90, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: var(--primary-color);
}

.info-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.info-card p {
    margin-bottom: 20px;
}

/* Contact Form Section */
.contact-form {
    position: relative;
    z-index: 1;
}

.contact-form:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    border-radius: 15px;
    opacity: 0.1;
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    height: 500px;
    width: 100%;
}

.map-info {
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info h2 {
    color: var(--dark-color);
    margin-bottom: 30px;
}

.transport-option h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.transport-option i {
    width: 30px;
    text-align: center;
}

/* FAQ Section */
.accordion-button {
    font-weight: 600;
    color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(58, 90, 64, 0.05);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(58, 90, 64, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .map-section .row {
        flex-direction: column-reverse;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-info {
        padding: 30px 20px;
    }
}