/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding-top: 13px;
}

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

.nav-logo h2 {
    color: #2c5530;
    font-size: 2rem;
    font-weight: bold;
}

.logo img {
    height: 70px;
    width: 100px;
}
.brand-name {
    font-size: 1.4rem;
    color:#4CAF50;
    font-weight: 800;
    font-family: 'Segoe UI', sans-serif;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2c5530;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2c5530;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Specific style for hero with background image */
.hero[style*="background-image"] {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero[style*="background-image"] .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 3vw + 1rem, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-content h1:hover {
    color: #f0f8f0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-content p {
    font-size: clamp(0.95rem, 1.2vw + 0.6rem, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f5f5f5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-content p:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

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

.hero h1 {
    font-size: clamp(1.8rem, 3vw + 1rem, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.hero p {
    font-size: clamp(0.95rem, 1.2vw + 0.6rem, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f5f5f5;
    transition: all 0.3s ease;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #2c5530;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid #2c5530;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero h1,
    .hero-content h1 { font-size: 3rem; }
    .hero p,
    .hero-content p { font-size: 1.3rem; }
}

@media (max-width: 992px) {
    .hero h1,
    .hero-content h1 { font-size: 2.5rem; }
    .hero p,
    .hero-content p { font-size: 1.15rem; }
}

@media (max-width: 768px) {
    .hero { height: 80vh; min-height: 500px; }
    .hero h1,
    .hero-content h1 { font-size: 2rem; }
    .hero p,
    .hero-content p { font-size: 1rem; margin-bottom: 2rem; }
    .cta-button { padding: 12px 30px; font-size: 0.95rem; }
}

@media (max-width: 576px) {
    .hero { height: 70vh; min-height: 400px; }
    .hero h1,
    .hero-content h1 { font-size: 1.75rem; margin-bottom: 1rem; }
    .hero p,
    .hero-content p { font-size: 0.9rem; margin-bottom: 1.5rem; }
    .cta-button { padding: 10px 25px; font-size: 0.9rem; }
}

/* Ensure video covers the full hero section on all devices */
.hero-video-container,
.hero-video {
    min-width: 100%;
    min-height: 100%;
}

/* Fallback for browsers that don't support object-fit */
@supports not (object-fit: cover) {
    .hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100%;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}
/* -------------------------------------------------
   Hero inner flex container (text + form)
   ------------------------------------------------- */
.hero-inner {
    position: relative;
    z-index: 3;
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;        
}

/* Text side */
.hero-content {
    flex: 1 1 45%;                 /* ~45% on large screens */
    min-width: 300px;
    animation: fadeInUp 1s ease-out;
}

/* Form side */
.hero-form-wrapper {
    flex: 1 1 45%;
    min-width: 300px;
}

/* -------------------------------------------------
   Form styling
   ------------------------------------------------- */
.hero-form {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.form-group {
    margin-bottom: 1rem;
}

.hero-form input,
.hero-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1rem;
    transition: background .3s;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
    color: rgba(255,255,255,.7);
}

.hero-form input:focus,
.hero-form textarea:focus {
    outline: none;
    background: rgba(255,255,255,.3);
}

/* Submit button – reuse .cta-button style */
.hero-form .form-submit {
    width: 100%;
    margin-top: .5rem;
}

/* -------------------------------------------------
   Responsive tweaks
   ------------------------------------------------- */
@media (max-width: 992px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding: 0 15px;
        gap: 2rem;
    }
    .hero-content,
    .hero-form-wrapper {
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
    }
    .hero-form {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 15px 40px;
    }
    
    .hero-inner {
        width: 100%;
        padding: 0 10px;
        gap: 2rem;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-form-wrapper {
        width: 100%;
    }
    
    .hero-form {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-form input,
    .hero-form textarea,
    .hero-form select {
        padding: 0.8rem 1rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .hero-form textarea {
        min-height: 80px;
        resize: vertical;
    }
    
    .submit-btn {
        padding: 12px 24px;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 70px 10px 30px;
        min-height: auto;
        height: auto;
    }
    
    .hero-inner {
        padding: 0 5px;
        gap: 1.5rem;
    }
    
    .hero-form {
        padding: 1.2rem 0.8rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-form {
        padding: 1.2rem 0.8rem;
    }
    
    .hero-form input,
    .hero-form textarea,
    .hero-form select {
        padding: 0.7rem 0.9rem;
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2c5530;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #2c5530;
}

.cta-button:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* Responsive adjustments */
/* Duplicate styles removed - using main responsive styles above */
/* ===========================================
   FIX: Make SELECT fully transparent (like inputs)
   =========================================== */
.hero-form select {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23ffffff' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 0.65rem;
    padding-right: 2.8rem !important;
    cursor: pointer;
}

/* Fix for SELECT options list (dropdown menu) */
.hero-form select option {
    background: rgba(0, 0, 0, 0.9) !important;
    color: #fff !important;
}

/* Hover effect on options */
.hero-form select option:hover {
    background: rgba(44, 85, 48, 0.9) !important; /* Your green color */
}

/* Ensure select dropdown works on mobile */
.hero-form select,
.contact-form select {
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero-form select,
    .contact-form select {
        font-size: 1rem;
        padding: 0.8rem 3rem 0.8rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-form select,
    .contact-form select {
        font-size: 0.95rem;
        padding: 0.7rem 2.5rem 0.7rem 0.9rem;
    }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5530;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #763a16;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
/* ────── ABOUT SECTION LAYOUT ────── */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ────── TEXT ────── */
.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

/* ────── IMAGE CONTAINER (replaces .image-placeholder) ────── */
.about-image {
    position: relative;
    width: 100%;
    height: 450px;                     /* you can change this */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;                /* fills the box, keeps aspect ratio */
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}



/* Caption overlay (optional but nice) */
/* ────── DESIGN 1: Rounded + Shadow + Top Caption ────── */
.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    height: 420px;
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: translateY(-8px);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 0;
}

.about-image .image-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    color: white;
    padding: 1.2rem;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 24px 24px 0 0;
    z-index: 2;
}

/* Hide caption bar if there is no caption text */
.about-image .image-caption:empty {
    display: none;
}
/* Accommodation Section */
.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive styles for accommodation grid */
@media (max-width: 768px) {
    .accommodation-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

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

.accommodation-card:hover {
    transform: translateY(-10px);
}

/* ────── IMAGE LAYOUT (FIXED & RESPONSIVE) ────── */
.card-image {
    height: 500px;
    background: #f8f9fa;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

/* Optional: subtle zoom on hover */
.accommodation-card:hover .card-image img {
    transform: scale(1.05);
}

/* ────── CARD CONTENT ────── */
.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.card-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.card-content ul {
    list-style: none;
}

.card-content li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.card-content li::before {
    content: 'Checkmark';
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

/* Activity Section */
.activity-section {
    background: #f8f9fa;
}

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

.activity-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.activity-icon {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.activity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.activity-card p {
    color: #666;
    line-height: 1.6;
}

/* Subtitle styling (optional but recommended) */
.section-subtitle {
    font-style: normal;
    font-weight: 400;
}

/* Activity list styling */
.activity-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    text-align: left;
}

.activity-list li {
    color: #555;
    font-size: 0.95rem;
    padding: 0.35rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.activity-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.why-card.featured {
    border: 3px solid #763a16;
    transform: scale(1.03);
}

.why-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: #763a16;
    color: white;
    padding: 4px 38px;
    font-size: 0.75rem;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 1;
}

.why-icon {
    font-size: 2.8rem;
    color: #2c5530;
    margin-bottom: 1.2rem;
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c5530;
    font-weight: 600;
}

.why-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Mobile Responsive Styles for Why Section */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .why-card {
        padding: 2rem 1.5rem;
    }
    
    .why-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .why-card {
        padding: 1.8rem 1.5rem;
    }
    
    .why-card.featured {
        transform: none;
        border-width: 2px;
    }
    
    .why-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .why-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .why-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .why-badge {
        top: 10px;
        right: -30px;
        padding: 3px 32px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .why-grid {
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .why-card {
        padding: 1.5rem 1.2rem;
    }
    
    .why-icon {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .why-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }
    
    .why-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .why-badge {
        top: 8px;
        right: -28px;
        padding: 3px 28px;
        font-size: 0.65rem;
    }
}   

/* Contact Section */
.contact-section {
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2c5530;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c5530;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
}

.submit-btn {
    background: #2c5530;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* Status message styling */
.status {
    margin-top: 1rem;
    padding: 0.75rem;
    text-align: center;
    font-size: 0.9rem;
    border-radius: 8px;
    min-height: 20px;
}

@media (max-width: 768px) {
    .status {
        font-size: 0.85rem;
        padding: 0.6rem;
        margin-top: 0.8rem;
    }
}

@media (max-width: 480px) {
    .status {
        font-size: 0.8rem;
        padding: 0.5rem;
        margin-top: 0.6rem;
    }
}

/* Blog Section */
.blog-section {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.blog-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.blog-content p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #2c5530;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #4a7c59;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: #2c5530;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f7d297;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #4a7c59;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a7c59;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .activity-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        padding: 0 1rem;
    }

    .activity-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

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

    .nav-item {
        margin: 16px 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding: 100px 20px 60px;
    }
    
    .hero-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        width: 100%;
    }
    
    .contact-info {
        width: 100%;
        padding: 0;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-info p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        font-size: 1.2rem;
    }
    
    .contact-item h4 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
        margin: 0;
    }

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

    .package-card.featured {
        transform: none;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .accommodation-grid,
    .activity-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 1.2rem 1rem;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
    }
    
    .contact-details {
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* About Section Base */
.about-section {
    background: #fdfefb;
    padding: 6rem 0;
}

.about-header {
    margin-bottom: 4rem;
}

.main-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c5530;
    line-height: 1.2;
}

/* Shared Grid Layout */
.story-grid,
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.story-grid { margin-top: 0; }

/* Text Styling */
.section-subtitle {
    font-size: 1.7rem;
    color: #2c5530;
    margin-bottom: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.lead-paragraph {
    font-size: 1.18rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 1.3rem;
    
}

/* -------------------------------------------------
   NATURE DIVIDER – super attractive version
   ------------------------------------------------- */


/* Animations */
@keyframes leafFloat {
    0%,100% { transform: translateY(-50%) translateX(0); }
    50%     { transform: translateY(-50%) translateX(-8px); }
}
@keyframes pulse {
    0%,100% { transform: scale(1); }
    50%     { transform: scale(1.05); }
}
@keyframes dash {
    to { stroke-dashoffset: -40; }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .nature-divider { height: 110px; margin: 3rem 0; }
    .leaf { width: 36px; height: 36px; }
    .divider-title { font-size: 1.25rem; }
    .icon-zip { width: 28px; height: 28px; }
}
@media (max-width: 480px) {
    .ornament { flex-direction: column; gap: 0.5rem; }
    .divider-title { font-size: 1.1rem; }
}

.story-text p,
.philosophy-text p {
    color: #444;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
}

.story-text strong,
.philosophy-text strong {
    color: #2c5530;
    font-weight: 600;
}

/* Image Placeholder */
.image-placeholder {
    background: #f5f9f5;
    border: 2px dashed #a8c8a8;
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    color: #5a8a5e;
    font-size: 3.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: #ebf4eb;
    border-color: #2c5530;
    transform: scale(1.02);
}

.image-placeholder p {
    margin-top: 1rem;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

/* About - Story Image (About Us) */
.story-image .image-placeholder {
    padding: 0;
    border: none;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
}

.greenery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* About - Philosophy Image (About Us) */
.philosophy-image .image-placeholder {
    padding: 0;
    border: none;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
}

.philosophy-image .image-placeholder img,
.philosophy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .main-heading { font-size: 2.3rem; }
    .section-subtitle { font-size: 1.5rem; }

    .story-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .story-image,
    .philosophy-image {
        order: -1;
    }

    .story-image .image-placeholder {
        height: 320px;
    }
    .philosophy-image .image-placeholder {
        height: 320px;
    }

    .image-placeholder {
        padding: 3rem 1.5rem;
        font-size: 3rem;
    }
}

/* What We Offer Section */
.offer-section {
    background: #f9fcf7;
    padding: 5rem 0;
    border-top: 1px solid #e8f0e8;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.offer-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.offer-card.featured {
    border: 2px solid #763a16;
    background: #f8fbf8;
}

.offer-badge {
    position: absolute;
    top: 12px;
    right: -32px;
    background: #763a16;
    color: white;
    padding: 4px 36px;
    font-size: 0.75rem;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 1;
}

.offer-icon {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1.2rem;
}

.offer-card h3 {
    font-size: 1.35rem;
    color: #2c5530;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.offer-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* Closing Invitation */
.offer-invitation {
    margin-top: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-radius: 18px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.invitation-text {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.invitation-text strong {
    color: #2c5530;
    font-weight: 700;
}

/* Center all buttons in their containers */
.cta-btn-container {
    text-align: center;
    width: 100%;
    margin: 1.5rem 0;
}

.cta-btn {
    display: inline-block;
    background: #763a16;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
    text-align: center;
    margin: 0 auto;
}

.cta-btn:hover {
    background: #1e3a21;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
    .invitation-text {
        font-size: 1.1rem;
    }
}

/* GLASS MORPHISM GALLERY */
.glass-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.glass-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateX(0) rotateY(0);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.glass-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(44,85,48,0.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: perspective(1000px) 
               rotateX(calc(var(--y, 0) * 8deg)) 
               rotateY(calc(var(--x, 0) * -8deg))
               translateZ(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

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

.glass-card:hover .glass-overlay {
    opacity: 1;
    transform: translateY(0);
}
/* activity page  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f7f6;
}

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

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: background 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo h2 {
    color: #2c5530;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #2c5530;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Activities Page */
.activities-page {
    margin-top: 90px;
    padding: 40px 0;
}

.page-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1504280390367-361e6d9f38f4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 20px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.page-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Activity Category */
.activity-category {
    margin-bottom: 50px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.activity-category:hover {
    transform: translateY(-5px);
}

.activity-category h2 {
    font-size: 1.8rem;
    color: #1a5d1a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity-category h2 i {
    color: #4CAF50;
}

.activity-category > p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Activity Grid */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .activity-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.activity-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    padding: 16px;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.activity-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.activity-card .icon {
    font-size: 2rem;
    color: #4CAF50;
    margin: 12px 0;
}

.activity-card h3 {
    font-size: 1.3rem;
    color: #1a5d1a;
    margin: 8px 0;
}

.activity-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Small Cards (Indoor/Outdoor) */
.activity-card.small {
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.activity-card.small img {
    height: 380px;
    width: 300px;
    border-radius: 8px;
}

.activity-card.small i {
    font-size: 1.5rem;
    color: #4CAF50;
}

.activity-card.small {
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        padding: 1rem 0;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-item {
        margin: 0.5rem 0;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

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

    .activity-card img,
    .activity-card.small img {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 40px 15px;
    }
    .page-header h1 {
        font-size: 1.9rem;
    }
    .activity-category {
        padding: 20px;
    }
    .story-image .image-placeholder,
    .philosophy-image .image-placeholder {
        height: 180px;
    }
    .philosophy-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.fab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Call Button - Green */
.call-btn {
    background:rgb(22, 119, 216);
}

.call-btn:hover {
    background: rgb(22, 119, 216);
}

/* WhatsApp Button - Official Green */
.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #1ebe57;
}

/* Responsive: Stack nicely on small screens */
@media (max-width: 480px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    .fab-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info li {
    margin-bottom: 8px;
}
.contact-info a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.contact-info a:hover {
    text-decoration: underline;
}
.contact-info i {
    margin-right: 8px;
    width: 16px;
}
