/* Reset and Base Styles */

/* Hero Sections */
.about-hero,
.rooms-hero,
.packages-hero,
.page-hero {
    height: 600px;
    position: relative;
    overflow: hidden;
}

.about-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.05);
    animation: subtle-zoom 20s infinite alternate ease-in-out;
}

@keyframes subtle-zoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.about-main {
    padding: 120px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* Modern About Section Styles */
.modern-about {
    background-color: #fafafa;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

/* Parallax Elements */
.parallax-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.parallax-leaf {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: url('') no-repeat center/contain;
    opacity: 0.1;
    transform: rotate(15deg);
}

.parallax-circle {
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(46, 125, 50, 0.1);
    opacity: 0.6;
}

.parallax-square {
    position: absolute;
    top: 40%;
    left: 15%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(46, 125, 50, 0.1);
    transform: rotate(45deg);
    opacity: 0.4;
}

.parallax-dot-grid {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(rgba(46, 125, 50, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

/* Modern Intro */

/* Places to Visit Page Styles */
.page-hero {
    height: 500px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-hero .hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.page-hero .hero-quote {
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

/* Places Section */
.places-section {
    padding: 100px 0;
    background-color: #fff;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.place-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.place-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.place-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.place-item:hover .place-image img {
    transform: scale(1.05);
}

.place-price {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #333;
}

.place-content {
    padding: 15px;
}

.place-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    color: #333;
}

.place-category {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.place-rating {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.place-rating .star {
    color: #FFD700;
    margin-right: 5px;
}

.place-location {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #777;
}

.location-icon {
    margin-right: 5px;
}

.place-details {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.place-details li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
}

.place-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2e7d32;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.place-link:hover {
    background-color: #1b5e20;
}

/* Experiences Section */
.experiences-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.experience-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-icon {
    margin-bottom: 20px;
}

.experience-icon img {
    width: 64px;
    height: 64px;
}

.experience-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: #333;
}

.experience-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Travel Tips Section */
.travel-tips {
    padding: 80px 0;
    background-color: #fff;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tip-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tip-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: #333;
}

.tip-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Places CTA Section */
.places-cta {
    padding: 80px 0;
    background-color: #2e7d32;
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #fff;
    color: #2e7d32;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #f5f5f5;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 100px 0;
    background-color: #fff;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background-color: #f9f9f9;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    margin-bottom: 20px;
}

.contact-icon img {
    width: 64px;
    height: 64px;
}

.contact-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: #333;
}

.contact-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 5px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-left {
    padding-right: 20px;
}

.contact-form {
    margin-top: 30px;
}

.contact-submit-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: #1b5e20;
}

.contact-form-right {
    height: 100%;
}

.map-container {
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: #333;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 700;
    color: #2e7d32;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Connect Section */
.connect-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.connect-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.connect-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #333;
}

.connect-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon img {
    width: 48px;
    height: 48px;
}

/* Responsive Styles for Places and Contact Pages */
@media (max-width: 1200px) {
    .places-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .experiences-grid,
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .page-hero .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .places-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-left {
        padding-right: 0;
    }
    
    .map-container {
        height: 400px;
    }
    
    .page-hero {
        height: 400px;
    }
    
    .page-hero .hero-title {
        font-size: 36px;
    }
    
    .page-hero .hero-quote {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .places-grid,
    .experiences-grid,
    .tips-container,
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .place-item {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .page-hero {
        height: 350px;
    }
    
    .page-hero .hero-title {
        font-size: 32px;
    }
    
    .section-header .section-title {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .connect-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .page-hero {
        height: 300px;
    }
    
    .page-hero .hero-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .page-hero .hero-quote {
        font-size: 14px;
    }
    
    .section-header .section-title {
        font-size: 24px;
    }
    
    .section-header .section-subtitle {
        font-size: 14px;
    }
    
    .place-content h3 {
        font-size: 20px;
    }
    
    .place-content p {
        font-size: 14px;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .contact-icon img {
        width: 48px;
        height: 48px;
    }
    
    .contact-card h4 {
        font-size: 18px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon img {
        width: 40px;
        height: 40px;
    }
}
.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.intro-badge {
    display: inline-block;
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.intro-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 600;
}

.intro-text {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Modern Timeline */
.modern-timeline {
    position: relative;
    margin-bottom: 80px;
    padding: 0;
}

.timeline-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
    position: relative;
    align-items: center;
}

.timeline-year {
    font-size: 18px;
    font-weight: 600;
    color: #2e7d32;
    flex: 0 0 100px;
    text-align: center;
    padding: 8px 0;
    border-radius: 4px;
    background-color: rgba(46, 125, 50, 0.1);
    margin-right: 30px;
}

.timeline-content {
    flex: 1;
    padding-right: 30px;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.timeline-image {
    flex: 0 0 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.timeline-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-year {
        margin-bottom: 20px;
        margin-right: 0;
    }
    
    .timeline-content {
        padding-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .timeline-image {
        width: 100%;
        flex: 0 0 auto;
    }
    
    .about-intro {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .intro-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .intro-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .intro-text {
        font-size: 15px;
    }
    
    .timeline-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .mission-statement {
        padding: 30px 20px;
        margin-bottom: 40px;
        min-height: auto;
    }
    
    .mission-content {
        padding: 30px 20px;
    }
    
    .mission-title {
        font-size: 22px;
    }
    
    .mission-text {
        font-size: 15px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-title {
        font-size: 24px;
    }
}

.timeline-curve {
    fill: none;
    stroke: #2e7d32;
    stroke-width: 3;
    stroke-dasharray: 10, 5;
    opacity: 0.5;
}

.timeline-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.marker {
    position: absolute;
    top: 150px;
    transform: translateY(-50%);
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: #2e7d32;
    border-radius: 50%;
    margin: 0 auto 10px;
    box-shadow: 0 0 0 5px rgba(46, 125, 50, 0.2);
}

.marker-year {
    font-weight: 600;
    color: #2e7d32;
    text-align: center;
    font-size: 16px;
}

.timeline-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.story-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .card-media img {
    transform: scale(1.1);
}

.media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 15px;
    color: white;
}

.media-overlay span {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
}

.card-content {
    padding: 25px;
    position: relative;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #1b5e20;
    margin-bottom: 15px;
}

.card-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #2e7d32;
    opacity: 0.7;
}

/* Modern Mission Statement */
.mission-statement {
    position: relative;
    margin-bottom: 80px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background: #fff;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    min-height: 300px;
}

.mission-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1596178065887-1198b6148b2b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1080&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.mission-content {
    position: relative;
    z-index: 1;
    padding: 60px 40px;
    text-align: center;
}

.mission-quote-icon {
    margin-bottom: 20px;
    color: #2e7d32;
    opacity: 0.5;
}

.mission-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.mission-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #2e7d32;
}

.mission-text {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 30px;
}

.mission-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.mission-signature img {
    height: 50px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.mission-signature span {
    font-style: italic;
    color: #888;
    font-size: 14px;
}

/* Modern Core Values Section */
.core-values {
    margin-bottom: 80px;
    padding: 0 20px;
}

.values-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.values-subtitle {
    text-align: center;
    color: #555;
    font-size: 18px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.values-subtitle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2e7d32;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 30px 25px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    z-index: 1;
}

.value-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #2e7d32;
    z-index: 2;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.value-number {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 60px;
    font-weight: 700;
    color: rgba(46, 125, 50, 0.05);
    line-height: 1;
    z-index: 0;
}

.value-icon {
    margin-bottom: 20px;
    background: rgba(46, 125, 50, 0.08);
    width: 60px;
    height: 60px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.value-card:hover .value-icon {
    background: rgba(46, 125, 50, 0.12);
}

.value-icon img {
    width: 30px;
    height: 30px;
}

.value-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    font-weight: 600;
}

.value-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .rooms-main .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .about-parallax {
        height: 400px;
    }
    
    .parallax-element {
        transform: scale(0.8);
    }
    
    .about-intro {
        padding: 60px 40px;
        margin-bottom: 60px;
    }
    
    .intro-title {
        font-size: 36px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .about-story {
        padding: 60px 40px;
    }
    
    .timeline-curve {
        height: 120px;
    }
    
    .timeline-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .story-card {
        max-width: 100%;
    }
    
    .mission-statement {
        margin-bottom: 80px;
    }
    
    .mission-content {
        padding: 60px 40px;
    }
    
    .mission-title {
        font-size: 24px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-parallax {
        height: 300px;
    }
    
    .parallax-element {
        transform: scale(0.6);
    }
    
    .about-intro {
        padding: 50px 20px;
    }
    
    .about-intro h2 {
        font-size: 32px;
    }
    
    .about-intro p {
        font-size: 16px;
    }
    
    .about-story {
        padding: 50px 20px;
    }
    
    .timeline-curve {
        height: 80px;
    }
    
    .mission-content {
        padding: 40px 20px;
    }
    
    .mission-title {
        font-size: 32px;
    }
    
    .mission-text {
        font-size: 16px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .values-title {
        font-size: 32px;
    }
}

/* Amenities Section Styles */
.amenities {
    padding: 100px 0;
    background-color: #f1f8e9;
}

.amenities-grid {
    margin-top: 50px;
}

.amenity-category {
    margin-bottom: 60px;
}

.amenity-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #1b5e20;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.amenity-category-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2e7d32;
}

.amenity-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.amenity-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-icon {
    margin-right: 20px;
}

.amenity-icon img {
    width: 48px;
    height: 48px;
}

.amenity-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #1b5e20;
    margin-bottom: 10px;
}

.amenity-content p {
    color: #555;
    line-height: 1.6;
}

.amenities-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.amenities-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #1b5e20;
    margin-bottom: 15px;
}

.amenities-cta p {
    color: #555;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #2e7d32;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #1b5e20;
    transform: translateY(-3px);
}

/* Team Section Styles */
.team {
    padding: 100px 0;
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: #f8fff8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #1b5e20;
    margin-bottom: 5px;
}

.member-role {
    color: #2e7d32;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: #555;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .about-story {
        flex-direction: column;
        margin-left: 0;
    }
    
    .timeline-marker {
        position: relative;
        margin-bottom: 30px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    
    .timeline-marker span {
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .marker-line {
        width: 50px;
        height: 3px;
    }
    
    .mission-statement {
        flex-direction: column;
    }
    
    .mission-image {
        width: 100%;
        height: 300px;
    }
    
    .approach-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image, .about-text {
        width: 100%;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .values-grid, .amenity-items, .team-grid, .approach-cards {
        grid-template-columns: 1fr;
    }
    
    .about-hero {
        height: 400px;
    }
    
    .mission-content {
        padding: 30px;
    }
    
    .mission-quote h3 {
        font-size: 26px;
    }
    
    .mission-content p {
        font-size: 16px;
    }
    
    .approach-header h3,
    .about-text h3,
    .values-title {
        font-size: 26px;
    }
    
    .approach-header p {
        font-size: 16px;
    }
}

/* Food Section Styles */
.food {
    background-color: #fff;
    position: relative;
}

/* Hero Section */
.food-hero {
    background: url('https://images.unsplash.com/photo-1596797038530-2c107dc1c228?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center;
    background-size: cover;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.food-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 94, 32, 0.7);
    z-index: 1;
}

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

.food-hero .section-header {
    max-width: 800px;
    margin: 0 auto;
}

.food-hero .section-subtitle {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.food-hero .section-title {
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.food-intro {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Food Features */
.food-features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.food-feature {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: #f8fff8;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.food-feature:hover {
    transform: translateY(-10px);
}

.food-feature-icon {
    margin-bottom: 20px;
}

.food-feature-icon img {
    width: 60px;
    height: 60px;
}

.food-feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: #1b5e20;
}

.food-feature p {
    color: #555;
    line-height: 1.6;
}

/* Food Showcase */
.food-showcase {
    margin-bottom: 60px;
}

.food-category {
    margin-bottom: 60px;
}

.food-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1b5e20;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.food-category-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #2e7d32;
}

/* Food Gallery */
.food-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.food-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.food-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.food-item-image {
    width: 100%;
    height: 100%;
}

.food-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.food-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    transition: opacity 0.3s ease;
}

.food-item-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 8px;
}

.food-item-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Food Menu */
.food-menu {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.food-menu-item {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.food-menu-item:hover {
    transform: translateY(-5px);
}

.food-menu-image {
    flex: 0 0 200px;
    height: 200px;
    overflow: hidden;
}

.food-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.food-menu-item:hover .food-menu-image img {
    transform: scale(1.1);
}

.food-menu-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.food-menu-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: #1b5e20;
}

.food-menu-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.food-time {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    align-self: flex-start;
}

/* Food CTA */
.food-cta {
    text-align: center;
    padding: 50px;
    background: #f1f8e9;
    border-radius: 12px;
    margin-top: 60px;
}

.food-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #1b5e20;
    margin-bottom: 15px;
}

.food-cta p {
    color: #555;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.food-cta-button {
    display: inline-block;
    background: #2e7d32;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.food-cta-button:hover {
    background: #1b5e20;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .food-hero {
        height: 400px;
    }
    
    .food-hero .section-title {
        font-size: 36px;
    }
    
    .food-features {
        flex-direction: column;
        align-items: center;
    }
    
    .food-feature {
        width: 100%;
        max-width: 400px;
    }
    
    .rooms-main .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .food-hero {
        height: 350px;
    }
    
    .food-hero .section-title {
        font-size: 32px;
    }
    
    .food-intro {
        font-size: 16px;
    }
    
    .food-menu-item {
        flex-direction: column;
    }
    
    .food-menu-image {
        width: 100%;
        height: 200px;
    }
    
    .food-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .rooms-main .rooms-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
}

/* Booking Form Styles */
.booking {
    padding: 80px 0;
    background-color: #f1f8e9;
    position: relative;
}

.booking-form-container {
    max-width: 900px;
    margin: 40px auto 0;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.form-group {
    flex: 1 0 calc(50% - 30px);
    margin: 0 15px 20px;
}

.form-group.full-width {
    flex: 1 0 calc(100% - 30px);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2e7d32;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #c8e6c9;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.booking-submit-btn {
    background-color: #2e7d32;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    display: block;
    width: 100%;
    margin-top: 10px;
}

.booking-submit-btn:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
}

.booking-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .form-group {
        flex: 1 0 calc(100% - 30px);
    }
    
    .booking-form-container {
        padding: 30px 20px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1b5e20;
    overflow-x: hidden;
    background: #f8fff8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
 .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(232, 245, 233, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #1b5e20;
    text-shadow: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #1b5e20;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #4caf50;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4caf50;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navbar Styles */
/* Mobile Navbar */
@media (max-width: 768px) {
    .nav-center,
    .nav-right {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(232, 245, 233, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(76, 175, 80, 0.3);
        display: none; /* hidden by default */
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .nav-center.active,
    .nav-right.active {
        display: flex; /* show when active */
    }

    .nav-menu {
        flex-direction: column;
        gap: 20px;
    }

    .nav-right {
        margin-top: 20px;
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }

    .mobile-toggle span {
        width: 25px;
        height: 3px;
        background: #1b5e20; /* visible bars */
        border-radius: 2px;
    }
}


/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-quote {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-cta {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.6);
}

.slideshow-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4caf50;
    transform: scale(1.2);
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header.text-center {
    text-align: center;
}

.section-subtitle {
    color: #4caf50;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #2d5016;
    font-weight: 600;
    line-height: 1.2;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #e8f5e8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-features {
    margin: 40px 0;
}

.feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon img {
    width: 48px;
    height: 48px;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.learn-more-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.customer-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-avatars {
    display: flex;
    margin-right: 10px;
}

.customer-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
}

.customer-avatars img:first-child {
    margin-left: 0;
}

.customer-count {
    font-weight: 600;
    color: #2c3e50;
}

.about-cards {
    position: relative;
    height: 500px;
}

.about-card {
    position: absolute;
    width: 280px;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tour-card {
    top: 0;
    right: 0;
    z-index: 2;
}

.hiking-card {
    bottom: 0;
    left: 0;
    z-index: 1;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.card-content p {
    color: #666;
    font-size: 0.9rem;
}

/* Rooms Section */
/* Rooms Section */
.rooms {
    padding: 120px 0;
    background: #f1f8e9;
}

.rooms-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.room-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.room-card.reverse {
    direction: rtl;
}

.room-card.reverse > * {
    direction: ltr;
}

.room-content {
    padding: 40px;
}

.room-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.room-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.room-amenities {
    list-style: none;
    margin-bottom: 30px;
}

.room-amenities li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.room-amenities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.room-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
}

.room-cta {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.room-image {
    height: 400px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.more-rooms {
    text-align: center;
    margin-top: 60px;
}

.more-rooms-btn {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.more-rooms-btn:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

/* Rooms Page Styles */



/* Tag color variations */

/* Packages Section */
.packages {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    overflow: hidden;
}

.packages-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29C47.79,22.29 103.59,10.29 158.49,10.29C213.39,10.29 269.19,22.29 317,46.29C364.81,70.29 420.61,82.29 475.51,82.29C530.41,82.29 586.21,70.29 634,46.29C681.81,22.29 737.61,10.29 792.51,10.29C847.41,10.29 903.21,22.29 951,46.29C998.81,70.29 1054.61,82.29 1109.51,82.29C1164.41,82.29 1220.21,70.29 1268,46.29L1200,0Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.packages .section-subtitle {
    color: #388e3c;
}

.packages .section-title {
    color: #1b5e20;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.package-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.package-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.package-image {
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-content {
    padding: 25px 20px;
    text-align: center;
}

.package-content h4 {
    color: #1b5e20;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.package-card .package-cta {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.package-card .package-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.package-details {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.package-details.active {
    opacity: 1;
    visibility: visible;
}

.package-expanded {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    width: 90%;
    max-width: 900px;
    height: 70vh;
    max-height: 500px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.package-details.active .package-expanded {
    transform: scale(1);
}

.expanded-image {
    height: 100%;
    overflow: hidden;
}

.expanded-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expanded-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(44, 62, 80, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-btn:hover {
    background: rgba(44, 62, 80, 0.2);
    transform: scale(1.1);
}

.expanded-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.package-includes h5 {
    color: #ff6b6b;
    margin-bottom: 15px;
    font-weight: 600;
}

.package-includes ul {
    list-style: none;
    margin-bottom: 30px;
}

.package-includes li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #666;
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.package-cta {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.package-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

/* Places Section */
.places {
    padding: 120px 0;
    background: #f1f8e9;
}

.places-carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

.place-card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    opacity: 0;
    transition: all 1s ease;
    border-radius: 20px;
    overflow: hidden;
}

.place-card.active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.place-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.place-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px;
    color: white;
}

.place-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #f8fff8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.testimonial-info span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
}

.star {
    color: #ffc107;
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: #e8f5e8;
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 20px;
}

.gallery-slide {
    min-width: 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-btn.prev {
    left: 20px;
}

.gallery-btn.next {
    right: 20px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #f8fff8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon img {
    width: 48px;
    height: 48px;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.contact-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-link {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.map-container {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.map-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #2d5016;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #66bb6a;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #66bb6a;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #bdc3c7;
    text-decoration: none;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4caf50;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .package-expanded {
        width: 95%;
        height: 75vh;
    }

    .expanded-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(44, 62, 80, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-center {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .hero-quote {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 10px;
    }

    .about-cards {
        height: 300px;
        margin-top: 40px;
    }

    .about-card {
        position: relative;
        width: 100%;
        margin-bottom: 20px;
    }

    .tour-card {
        position: relative;
        top: 0;
        right: 0;
    }

    .hiking-card {
        position: relative;
        bottom: 0;
        left: 0;
    }

    .room-card {
        grid-template-columns: 1fr;
        text-align: center;
        margin-bottom: 40px;
    }

    .room-card.reverse {
        direction: ltr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-expanded {
        grid-template-columns: 1fr;
        width: 95%;
        height: 80vh;
        max-height: none;
    }
    
    /* Rooms Page Responsive */
    .rooms-main .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-main .room-content {
        padding: 20px;
    }
    
    .rooms-main .room-content h3 {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    /* Packages Page Responsive */
    .packages-main .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-main .package-title {
        font-size: 24px;
    }
    
    .packages-main .package-content {
        padding: 20px;
    }
    
    .package-cta-section .cta-content h2 {
        font-size: 28px;
    }
    
    .package-cta-section .cta-content p {
        font-size: 16px;
    }

    .expanded-content {
        padding: 20px;
    }

    .expanded-image {
        height: 35vh;
        min-height: 200px;
    }

    .close-btn {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-links {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .room-price {
        flex-direction: column;
        gap: 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .place-card {
        width: 95%;
    }

    .place-name {
        font-size: 2rem;
    }
    
    /* Rooms Page Small Screen */
    .rooms-main .room-amenities {
        justify-content: center;
    }
    
    .amenity {
        width: 30%;
    }
    
    .whatsapp-btn {
        width: 100%;
    }
    
    /* Packages Page Small Screen */
    .packages-main .highlights-list {
        justify-content: center;
    }
    
    .highlight {
        width: 45%;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Smooth scrolling for all links */
a[href^="#"] {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #4caf50;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #388e3c;
}