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

:root {
    --primary-color: #2c5e2e;
    /* Forest Green */
    --secondary-color: #1a3c1b;
    /* Darker Green */
    --text-color: #333;
}

/* Font Awesome Icon Visibility Fixes */
.fas,
.fab,
.far,
.fa {
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure all Font Awesome icons are visible */
[class*="fa-"] {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Specific icon fixes */
.fa-chevron-down,
.fa-share-alt,
.fa-paper-plane,
.fa-envelope,
.fa-phone,
.fa-map-marker-alt,
.fa-instagram,
.fa-facebook-f,
.fa-twitter {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
}

/* Additional icon visibility fixes for live server */
.dropdown-toggle i,
.social-toggle i,
.enquire-button i,
.contact-item i,
.social-link i {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-size: inherit !important;
    width: auto !important;
    height: auto !important;
    line-height: inherit !important;
}

/* Simple Custom Icons - Direct Implementation */
.fa-chevron-down::before,
.dropdown-toggle i::before {
    content: "" !important;
    background-image: url('images/icons/dropdown-arrow.png') !important;
    width: 16px !important;
    height: 16px !important;
    display: inline-block !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.fa-share-alt::before {
    content: "" !important;
    background-image: url('images/icons/share-icon.png') !important;
    width: 16px !important;
    height: 16px !important;
    display: inline-block !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.fa-envelope::before {
    content: "" !important;
    background-image: url('images/icons/email-icon.png') !important;
    width: 16px !important;
    height: 16px !important;
    display: inline-block !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.fa-map-marker-alt::before {
    content: "" !important;
    background-image: url('images/icons/address-icon.png') !important;
    width: 16px !important;
    height: 16px !important;
    display: inline-block !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.fa-facebook-f::before,
.fab.fa-facebook-f::before {
    content: "" !important;
    background-image: url('images/icons/facebook-icon.png') !important;
    width: 16px !important;
    height: 16px !important;
    display: inline-block !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.fa-instagram::before,
.fab.fa-instagram::before {
    content: "" !important;
    background-image: url('images/icons/instagram-icon.png') !important;
    width: 16px !important;
    height: 16px !important;
    display: inline-block !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.fa-twitter::before,
.fab.fa-twitter::before {
    content: "" !important;
    background-image: url('images/icons/twitter-icon.png') !important;
    width: 16px !important;
    height: 16px !important;
    display: inline-block !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.fa-phone::before {
    content: "" !important;
    background-image: url('images/icons/phone-icon.png') !important;
    width: 16px !important;
    height: 16px !important;
    display: inline-block !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.fa-paper-plane::before {
    content: "" !important;
    background-image: url('images/icons/paper-plane-icon.png') !important;
    width: 16px !important;
    height: 16px !important;
    display: inline-block !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    filter: brightness(0) invert(1) !important;
    /* Make white */
}

/* Icon color filters */
.fa-envelope::before,
.fa-map-marker-alt::before,
.fa-phone::before {
    filter: brightness(0) saturate(100%) invert(85%) sepia(20%) saturate(1000%) hue-rotate(180deg) brightness(1.1) contrast(1.1) !important;
    /* Make #afdff2 color */
}

.fa-share-alt::before,
.fa-paper-plane::before {
    filter: brightness(0) invert(1) !important;
    /* Make white */
}

/* Page-specific icon folders */
/* Adventure page icons */
.adventure-page .fa-chevron-down::before,
.adventure-page .dropdown-toggle i::before {
    background-image: url('images/icons/adventure-icons/dropdown-arrow.png') !important;
}

.adventure-page .fa-share-alt::before {
    background-image: url('images/icons/adventure-icons/share-icon.png') !important;
}

.adventure-page .fa-paper-plane::before {
    background-image: url('images/icons/adventure-icons/paper-plane-icon.png') !important;
}

.adventure-page .fa-envelope::before {
    background-image: url('images/icons/adventure-icons/email-icon.png') !important;
}

.adventure-page .fa-map-marker-alt::before {
    background-image: url('images/icons/adventure-icons/address-icon.png') !important;
}

.adventure-page .fa-phone::before {
    background-image: url('images/icons/adventure-icons/phone-icon.png') !important;
}

.adventure-page .fa-facebook-f::before,
.adventure-page .fab.fa-facebook-f::before {
    background-image: url('images/icons/adventure-icons/facebook-icon.png') !important;
}

.adventure-page .fa-instagram::before,
.adventure-page .fab.fa-instagram::before {
    background-image: url('images/icons/adventure-icons/instagram-icon.png') !important;
}

.adventure-page .fa-twitter::before,
.adventure-page .fab.fa-twitter::before {
    background-image: url('images/icons/adventure-icons/twitter-icon.png') !important;
}

/* Conserve page icons */
.conserve-page .fa-chevron-down::before,
.conserve-page .dropdown-toggle i::before {
    background-image: url('images/icons/conserve-icons/dropdown-arrow.png') !important;
}

.conserve-page .fa-share-alt::before {
    background-image: url('images/icons/conserve-icons/share-icon.png') !important;
}

.conserve-page .fa-paper-plane::before {
    background-image: url('images/icons/conserve-icons/paper-plane-icon.png') !important;
}

.conserve-page .fa-envelope::before {
    background-image: url('images/icons/conserve-icons/email-icon.png') !important;
}

.conserve-page .fa-map-marker-alt::before {
    background-image: url('images/icons/conserve-icons/address-icon.png') !important;
}

.conserve-page .fa-phone::before {
    background-image: url('images/icons/conserve-icons/phone-icon.png') !important;
}

.conserve-page .fa-facebook-f::before,
.conserve-page .fab.fa-facebook-f::before {
    background-image: url('images/icons/conserve-icons/facebook-icon.png') !important;
}

.conserve-page .fa-instagram::before,
.conserve-page .fab.fa-instagram::before {
    background-image: url('images/icons/conserve-icons/instagram-icon.png') !important;
}

.conserve-page .fa-twitter::before,
.conserve-page .fab.fa-twitter::before {
    background-image: url('images/icons/conserve-icons/twitter-icon.png') !important;
}

/* Wildlife page icons */
.wildlife-page .fa-chevron-down::before,
.wildlife-page .dropdown-toggle i::before {
    background-image: url('images/icons/wildlife-icons/dropdown-arrow.png') !important;
}

.wildlife-page .fa-share-alt::before {
    background-image: url('images/icons/wildlife-icons/share-icon.png') !important;
}

.wildlife-page .fa-paper-plane::before {
    background-image: url('images/icons/wildlife-icons/paper-plane-icon.png') !important;
}

.wildlife-page .fa-envelope::before {
    background-image: url('images/icons/wildlife-icons/email-icon.png') !important;
}

.wildlife-page .fa-map-marker-alt::before {
    background-image: url('images/icons/wildlife-icons/address-icon.png') !important;
}

.wildlife-page .fa-phone::before {
    background-image: url('images/icons/wildlife-icons/phone-icon.png') !important;
}

.wildlife-page .fa-facebook-f::before,
.wildlife-page .fab.fa-facebook-f::before {
    background-image: url('images/icons/wildlife-icons/facebook-icon.png') !important;
}

.wildlife-page .fa-instagram::before,
.wildlife-page .fab.fa-instagram::before {
    background-image: url('images/icons/wildlife-icons/instagram-icon.png') !important;
}

.wildlife-page .fa-twitter::before,
.wildlife-page .fab.fa-twitter::before {
    background-image: url('images/icons/wildlife-icons/twitter-icon.png') !important;
}

/* Screen reader only text */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Enhanced Mobile-First Responsive Design */

/* Mobile-First Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Touch-friendly button and link styles */
button,
a,
.enquire-button,
.cta-button,
.carousel-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    color: #afdff2;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.map-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #afdff2, #6bc6e3);
}

#map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#india-map {
    width: 100%;
    height: 500px;
    background: #f0f0f0;
    border: 2px solid #ddd;
    position: relative;
}

/* Custom marker styles */
.custom-marker {
    background: none;
    border: none;
}

.custom-marker img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Map controls */
.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.leaflet-control-zoom a {
    background: white !important;
    color: #333 !important;
    border: none !important;
    border-radius: 8px !important;
    margin: 2px !important;
    transition: all 0.3s ease !important;
}

.leaflet-control-zoom a:hover {
    background: #afdff2 !important;
    color: white !important;
}

.leaflet-control-attribution {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Hide all Leaflet attribution elements */
.leaflet-control-attribution,
.leaflet-control-attribution a,
.leaflet-control-attribution.leaflet-control {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Recenter button styles */
.recenter-btn {
    transition: all 0.3s ease !important;
}

.recenter-btn:hover {
    background: #f8f9fa !important;
    border-color: #2c5aa0 !important;
    color: #2c5aa0 !important;
    transform: scale(1.05);
}

/* Map popup styles */
.forest-popup {
    text-align: center;
    padding: 10px;
}

.forest-popup h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.forest-popup p {
    color: #666;
    margin-bottom: 12px;
    font-size: 14px;
}

.remove-marker-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

.remove-marker-btn:hover {
    background: #c82333;
}

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

/* Mobile-optimized container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Enhanced Mobile Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo .logo-image {
    height: 40px;
    width: auto;
}

.nav-logo h2 {
    font-size: 1.2rem;
    color: #333;
    margin-left: 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

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

    .hamburger {
        display: block;
    }
}

/* Universal Hamburger Menu (Desktop & 4K included) */
/* Overriding previous desktop styles to force hamburger */
.nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.4s ease-in-out;
    box-shadow: none;
    padding: 0;
    justify-content: center;
    z-index: 999;
    gap: 2rem;
}

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

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

.nav-link {
    font-size: 1.5rem;
    /* Larger font for menu overlay */
    font-weight: 500;
}

.hamburger {
    display: flex;
    /* Always display hamburger */
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-right: 15px;
    position: relative;
    z-index: 1001;
    /* Ensure above the menu overlay */
    cursor: pointer;
}

/* 4K / Large Screen Optimizations */
@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
        padding: 0 40px;
    }

    body {
        font-size: 1.2rem;
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3rem;
    }

    h3 {
        font-size: 2rem;
    }

    p {
        font-size: 1.2rem;
    }

    .nav-logo .logo-image {
        height: 60px;
        /* Larger logo */
    }

    .nav-link {
        font-size: 2rem;
    }
}

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

.nav-link:hover {
    color: #afdff2;
}

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

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

/* Mobile Menu Styles */
.hamburger {
    /* display: none; Removed to allow universal hamburger */
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

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

.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);
}

@media (max-width: 768px) {

    /* Mobile Image Sizing */
    .destination-image,
    .adventure-image,
    .project-image {
        width: 100% !important;
        height: 250px !important;
    }

    .destination-image img,
    .adventure-image img,
    .project-image img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        margin-right: 15px;
        position: relative;
        z-index: 1001;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* Or 100vh for full screen */
    min-height: -webkit-fill-available;
    /* For iOS 15+ full viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-image: url('images/hero/hero-2.jpg');
    /* Update with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Optional: force hardware acceleration */
    -webkit-transform: translateZ(0);
}

/* Optional: add a dark overlay for readability */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    /* darken as needed */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .hero {
        min-height: 45vh;
    }

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

    .hero-content p {
        font-size: 1rem;
    }
}

/* Mobile-optimized CTA Button */
.cta-button {
    display: inline-block;
    background: #afdff2;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(175, 223, 242, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 45px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #8bcfe8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(175, 223, 242, 0.4);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #afdff2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.about-text p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.about-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    color: #afdff2;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

/* Section Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #b0b0b0, transparent);
    margin: 0;
    border: none;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    color: #afdff2;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-section>.container>p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(175, 223, 242, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(175, 223, 242, 0.3);
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #afdff2;
    flex-shrink: 0;
}

.author-photo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.author-info h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Founders Section */
.founders-section {
    padding: 5rem 0;
    background: white;
}

.founders-section h2 {
    text-align: center;
    color: #afdff2;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.founders-section>.container>p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.founder-card {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(175, 223, 242, 0.1);
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(175, 223, 242, 0.3);
}

.founder-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 4px solid #afdff2;
}

.founder-photo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.founder-card:hover .founder-photo img {
    transform: scale(1.05);
}

.founder-info h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.founder-designation {
    color: #afdff2;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Gallery Hero Section - REMOVED */

/* Floating Particles Animation for Gallery - REMOVED */
.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.floating-particle:nth-child(1) {
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.floating-particle:nth-child(2) {
    left: 20%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.floating-particle:nth-child(3) {
    left: 30%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.floating-particle:nth-child(4) {
    left: 40%;
    animation-duration: 9s;
    animation-delay: 3s;
}

.floating-particle:nth-child(5) {
    left: 50%;
    animation-duration: 5s;
    animation-delay: 4s;
}

.floating-particle:nth-child(6) {
    left: 60%;
    animation-duration: 8s;
    animation-delay: 5s;
}

.floating-particle:nth-child(7) {
    left: 70%;
    animation-duration: 6s;
    animation-delay: 6s;
}

.floating-particle:nth-child(8) {
    left: 80%;
    animation-duration: 7s;
    animation-delay: 7s;
}

/* Wildlife Particles Animation */
.wildlife-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: wildlifeFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.wildlife-particle:nth-child(1) {
    left: 15%;
    animation-duration: 10s;
    animation-delay: 0s;
}

.wildlife-particle:nth-child(2) {
    left: 25%;
    animation-duration: 8s;
    animation-delay: 1.5s;
}

.wildlife-particle:nth-child(3) {
    left: 35%;
    animation-duration: 12s;
    animation-delay: 3s;
}

.wildlife-particle:nth-child(4) {
    left: 45%;
    animation-duration: 9s;
    animation-delay: 4.5s;
}

.wildlife-particle:nth-child(5) {
    left: 55%;
    animation-duration: 11s;
    animation-delay: 6s;
}

.wildlife-particle:nth-child(6) {
    left: 65%;
    animation-duration: 7s;
    animation-delay: 7.5s;
}

/* Conservation Particles Animation */
.conserve-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: conserveFloat 9s ease-in-out infinite;
    pointer-events: none;
}

.conserve-particle:nth-child(1) {
    left: 20%;
    animation-duration: 11s;
    animation-delay: 0s;
}

.conserve-particle:nth-child(2) {
    left: 30%;
    animation-duration: 8s;
    animation-delay: 2s;
}

.conserve-particle:nth-child(3) {
    left: 40%;
    animation-duration: 10s;
    animation-delay: 4s;
}

.conserve-particle:nth-child(4) {
    left: 50%;
    animation-duration: 12s;
    animation-delay: 6s;
}

.conserve-particle:nth-child(5) {
    left: 60%;
    animation-duration: 9s;
    animation-delay: 8s;
}

.conserve-particle:nth-child(6) {
    left: 70%;
    animation-duration: 7s;
    animation-delay: 10s;
}

/* Adventure Particles Animation */
.adventure-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: adventureFloat 7s ease-in-out infinite;
    pointer-events: none;
}

.adventure-particle:nth-child(1) {
    left: 10%;
    animation-duration: 9s;
    animation-delay: 0s;
}

.adventure-particle:nth-child(2) {
    left: 25%;
    animation-duration: 6s;
    animation-delay: 1.5s;
}

.adventure-particle:nth-child(3) {
    left: 40%;
    animation-duration: 8s;
    animation-delay: 3s;
}

.adventure-particle:nth-child(4) {
    left: 55%;
    animation-duration: 10s;
    animation-delay: 4.5s;
}

.adventure-particle:nth-child(5) {
    left: 70%;
    animation-duration: 7s;
    animation-delay: 6s;
}

.adventure-particle:nth-child(6) {
    left: 85%;
    animation-duration: 11s;
    animation-delay: 7.5s;
}

/* Instagram Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: white;
}

.gallery-section h2 {
    text-align: center;
    color: #afdff2;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gallery-section>.container>p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #f8f9fa;
    min-height: 200px;
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #e4405f;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.gallery-loading {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #afdff2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.gallery-error {
    text-align: center;
    padding: 2rem;
    color: #666;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px dashed #ddd;
}

.gallery-error i {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 0;
    background: transparent;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #afdff2;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-item i {
    font-size: 2rem;
    color: #afdff2;
}

.contact-item h4 {
    color: #afdff2;
    margin-bottom: 0.5rem;
}

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

/* Floating Enquire Button */
.floating-enquire {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.enquire-button {
    background: #afdff2;
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(175, 223, 242, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.enquire-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(175, 223, 242, 0.6);
    background: #8bc5d9;
}

/* Floating Social Media Menu */
.floating-social {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-toggle {
    width: 60px;
    height: 60px;
    background: white;
    /* Changed from transparent to white */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-size: 1.2rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    /* Added shadow */
}

.social-toggle i {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 1.2rem;
}

.social-toggle:hover {
    transform: translateY(-5px);
    background: white;
    /* Maintain white on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.social-links {
    position: absolute;
    bottom: 70px;
    right: 0;
    /* Center align relative to toggle? No, right aligned is fine if width matches */
    left: 0;
    /* Let's center it manually or keep it separate. The original was right:0. Let's keep it but ensure generic alignment. */
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    align-items: center;
    /* Ensure icons are centered */
}

.floating-social:hover .social-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
    /* Added background */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    /* Added shadow */
}

.social-text {
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.social-link.instagram {
    background: transparent;
}

.social-link.facebook {
    background: transparent;
}

.social-link.twitter {
    background: transparent;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    background: transparent;
}

/* Modal Styles */


/* Forest Info Modal - REMOVED */

/* Footer */
.footer {
    background: #afdff2;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(175, 223, 242, 0.4);
    }

    50% {
        box-shadow: 0 6px 20px rgba(175, 223, 242, 0.8);
    }

    100% {
        box-shadow: 0 6px 20px rgba(175, 223, 242, 0.4);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }

    50% {
        transform: translateY(-40px) translateX(-5px);
        opacity: 0.8;
    }

    75% {
        transform: translateY(-20px) translateX(15px);
        opacity: 1;
    }
}

@keyframes wildlifeFloat {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.7;
    }

    25% {
        transform: translateY(-25px) translateX(15px) scale(1.2);
        opacity: 1;
    }

    50% {
        transform: translateY(-50px) translateX(-10px) scale(0.8);
        opacity: 0.9;
    }

    75% {
        transform: translateY(-30px) translateX(20px) scale(1.1);
        opacity: 1;
    }
}

@keyframes conserveFloat {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }

    33% {
        transform: translateY(-30px) translateX(10px) rotate(120deg);
        opacity: 1;
    }

    66% {
        transform: translateY(-60px) translateX(-15px) rotate(240deg);
        opacity: 0.8;
    }
}

@keyframes adventureFloat {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.8;
    }

    20% {
        transform: translateY(-15px) translateX(8px);
        opacity: 1;
    }

    40% {
        transform: translateY(-35px) translateX(-12px);
        opacity: 0.9;
    }

    60% {
        transform: translateY(-25px) translateX(18px);
        opacity: 1;
    }

    80% {
        transform: translateY(-45px) translateX(-5px);
        opacity: 0.7;
    }
}

/* Wildlife Page Styles */
.wildlife-hero {
    background: linear-gradient(135deg, rgba(175, 223, 242, 0.8) 0%, rgba(74, 124, 89, 0.8) 100%),
        url('https://images.unsplash.com/photo-1549366021-9f761d450615?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.conserve-hero {
    background: linear-gradient(135deg, rgba(175, 223, 242, 0.8) 0%, rgba(74, 124, 89, 0.8) 100%),
        url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.adventure-hero {
    background: linear-gradient(135deg, rgba(175, 223, 242, 0.8) 0%, rgba(74, 124, 89, 0.8) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Intro Section */
.intro-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.intro-content {
    text-align: center;
}

.intro-text h2 {
    color: #afdff2;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.intro-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 2.5rem;
    color: #afdff2;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Destinations Section */
.destinations-section {
    padding: 4rem 0;
}

.destinations-section h2 {
    text-align: center;
    color: #afdff2;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.destinations-section>.container>p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

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

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.destination-image {
    position: relative;
    width: 600px;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-image img {
    width: 600px;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 100%;
}

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

.destination-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.destination-badge {
    background: rgba(175, 223, 242, 0.9);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.destination-content {
    padding: 2rem;
}

.destination-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.destination-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.detail-item i {
    color: #afdff2;
    font-size: 1rem;
}

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

.wildlife-highlights {
    margin-bottom: 1.5rem;
}

.wildlife-highlights h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.wildlife-highlights ul {
    list-style: none;
    padding: 0;
}

.wildlife-highlights li {
    color: #666;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.wildlife-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #afdff2;
    font-weight: bold;
}

.enquire-btn {
    background: #afdff2;
    color: #333;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.enquire-btn:hover {
    background: #4a7c59;
    color: white;
    transform: translateY(-2px);
}



/* Mission Section */
.mission-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.mission-content {
    text-align: center;
}

.mission-text h2 {
    color: #afdff2;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mission-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}



/* Projects Section */
.projects-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.projects-section h2 {
    text-align: center;
    color: #afdff2;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.projects-section>.container>p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

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

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    width: 600px;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img {
    width: 600px;
    height: 400px;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
}

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-status.ongoing {
    background: rgba(255, 193, 7, 0.9);
    color: #333;
}

.project-status.completed {
    background: rgba(40, 167, 69, 0.9);
    color: white;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.project-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-location i {
    color: #afdff2;
}

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

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.project-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #afdff2;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
}


/* Adventure Page Styles */
.adventures-section {
    padding: 4rem 0;
}

.adventures-section h2 {
    text-align: center;
    color: #afdff2;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.adventures-section>.container>p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

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

.adventure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.adventure-image {
    position: relative;
    width: 600px;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adventure-image img {
    width: 600px;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 100%;
}

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

.adventure-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.adventure-badge {
    background: rgba(175, 223, 242, 0.9);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.adventure-content {
    padding: 2rem;
}

.adventure-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.adventure-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.trek-highlights {
    margin-bottom: 1.5rem;
}

.trek-highlights h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.trek-highlights ul {
    list-style: none;
    padding: 0;
}

.trek-highlights li {
    color: #666;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.trek-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #afdff2;
    font-weight: bold;
}

.adventure-info {
    margin-bottom: 1.5rem;
}

.info-item {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Activities Section */
.activities-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.activities-section h2 {
    text-align: center;
    color: #afdff2;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.activities-section>.container>p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

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

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.activity-icon i {
    font-size: 3rem;
    color: #afdff2;
}

.activity-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.activity-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.activity-details {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
}

.activity-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-details i {
    color: #afdff2;
}



/* Custom Section */
.custom-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.custom-section h2 {
    text-align: center;
    color: #afdff2;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.custom-section>.container>p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

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

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

.custom-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.custom-cta {
    text-align: center;
}

.custom-btn {
    background: #afdff2;
    color: #333;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background: #4a7c59;
    color: white;
    transform: translateY(-2px);
}

/* Navigation Active State */
.nav-link.active {
    color: #afdff2;
}

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

/* Dropdown Menu Styles */
/* Dropdown Nav - Cross Device */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
    color: #333;
    outline: none;
    padding: .5rem 1rem;
    transition: background .2s;
    border-radius: 6px;
    z-index: 10;
}

.dropdown-toggle:focus {
    background: #e3f2fd;
}

.dropdown-toggle i {
    margin-left: .5rem;
    transition: transform .3s;
    font-size: .9rem;
    color: inherit;
}

.dropdown.open .dropdown-toggle i,
/* JS toggles .open on tap */
.dropdown:hover .dropdown-toggle i,
.dropdown-toggle.active i {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: .5rem;
    min-width: 180px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .24s, transform .24s;
    z-index: 100;
    padding: .5rem 0;
}

.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Triangle marker */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 22px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    z-index: 105;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    display: block;
    padding: .67rem 1.4rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: background .18s, color .18s, border-left .15s;
    border-left: 3px solid transparent;
}

.dropdown-link:hover,
.dropdown-link:focus {
    background: #f8f9fa;
    color: #afdff2;
    border-left-color: #afdff2;
}

.dropdown-link.active {
    background: #e3f2fd;
    color: #afdff2;
    border-left-color: #afdff2;
}

/* Touch device fix: prevent submenu closing on tap selection */
@media (hover: none) and (pointer: coarse) {
    .dropdown:hover .dropdown-menu {
        opacity: 0;
        pointer-events: none;
    }
}

/* Mobile-optimized CTA Button */
.cta-button {
    display: inline-block;
    background: #afdff2;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(175, 223, 242, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 50px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #8bcfe8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(175, 223, 242, 0.4);
}

/* Mobile Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
}

/* Mobile Map Section */
.map-section {
    padding: 60px 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    color: #afdff2;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

#map-container {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#india-map {
    width: 100%;
    height: 400px;
    background: #f0f0f0;
    border: 2px solid #ddd;
    position: relative;
}

/* Mobile Floating Elements */
.floating-enquire {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
}

.enquire-button {
    background: #afdff2;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(175, 223, 242, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 50px;
}

.enquire-button:hover {
    background: #8bcfe8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(175, 223, 242, 0.4);
}

.floating-social {
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 1000;
}

.social-toggle {
    background: #afdff2;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(175, 223, 242, 0.3);
    transition: all 0.3s ease;
}

.social-toggle:hover {
    background: #8bcfe8;
    transform: scale(1.1);
}

/* Mobile Grid Layouts */
.testimonials-grid,
.founders-grid,
.destinations-grid,
.adventures-grid,
.activities-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Mobile Cards */
.testimonial-card,
.founder-card,
.destination-card,
.adventure-card,
.activity-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover,
.founder-card:hover,
.destination-card:hover,
.adventure-card:hover,
.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Mobile Images */
.destination-image img,
.adventure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.founder-photo img,
.author-photo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Mobile Typography */
h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #afdff2;
    text-align: center;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

/* Mobile Contact Section */
.contact-section {
    padding: 60px 0;
    background: #ffffff;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #afdff2;
    min-width: 30px;
}



/* Enhanced Mobile Responsive Breakpoints */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        margin-right: 15px;
        position: relative;
        z-index: 1001;
    }


    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s ease-in-out;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .nav-menu.active {
        left: 0;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .nav-link {
        margin: 1rem 0;
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }

    .dropdown {
        position: relative;
        width: 100%;
    }

    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0.5rem 1rem;
        cursor: pointer;
    }

    .dropdown-toggle i {
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
        display: inline-block;
        opacity: 1;
        visibility: visible;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg) !important;
        -webkit-transform: rotate(180deg) !important;
    }

    .dropdown-menu {
        position: static;
        background: #f8f9fa;
        box-shadow: none;
        padding: 0;
        margin: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border-radius: 0;
        border: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 300px;
    }

    .dropdown-menu li {
        margin: 0;
    }

    .dropdown-link {
        padding: 0.75rem 2rem;
        color: #333;
        border: none;
        display: block;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .dropdown-link:hover {
        background-color: #e9ecef;
        color: #afdff2;
    }

    .dropdown-link.active {
        background-color: #afdff2;
        color: white;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 40px;
    }

    .testimonials-grid,
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .destinations-grid,
    .adventures-grid,
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        min-height: 150px;
    }

    .gallery-item img {
        height: 150px;
    }

    .floating-enquire {
        bottom: 20px;
        right: 20px;
        position: fixed;
        z-index: 1000;
    }

    .floating-social {
        bottom: 20px;
        left: 20px;
        position: fixed;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .enquire-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 45px;
    }

    .social-toggle {
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Fix for iOS image display issues */
    .hero-carousel {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .carousel-slide {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .carousel-slide img {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    /* Improve "Our Story" section on mobile */
    .about-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        color: #555;
        line-height: 1.8;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .about-stats {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

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

    .hero {
        min-height: 100vh;
        padding: 60px 0 40px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-height: 35px;
    }

    .enquire-button {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .testimonial-card,
    .founder-card,
    .destination-card,
    .adventure-card {
        padding: 1.5rem;
    }

    .destination-image img,
    .adventure-image img,
    .founder-photo img {
        height: 200px;
    }

    .contact-item {
        padding: 1rem;
        text-align: center;
    }

    .contact-item i {
        font-size: 1.2rem;
        min-width: 25px;
    }

    .floating-enquire {
        bottom: 15px;
        right: 15px;
    }

    .floating-social {
        bottom: 15px;
        left: 15px;
    }

    .social-toggle {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* iOS Safari Specific Fixes */
    .hero {
        min-height: 70vh;
    }

    .enquire-button,
    .cta-button {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 50px;
    }

    /* About section mobile improvements */
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        gap: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-stats {
        gap: 0.75rem;
    }

    .stat-item {
        min-width: 100px;
        padding: 1rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }
}

/* Android Chrome Specific Fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .hero-content {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .hero p {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

    .testimonial-card:hover,
    .founder-card:hover,
    .destination-card:hover,
    .adventure-card:hover,
    .activity-card:hover {
        transform: none;
    }

    .enquire-button:hover,
    .cta-button:hover {
        transform: none;
    }

    .carousel-btn:hover {
        transform: none;
    }

    .social-toggle:hover {
        transform: none;
    }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .destination-image img,
    .adventure-image img,
    .founder-photo img,
    .author-photo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape Mobile Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }


}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .navbar {
        background: rgba(0, 0, 0, 0.95);
    }

    .nav-link {
        color: white;
    }

    .bar {
        background: white;
    }
}

/* Print Styles */
@media print {

    .floating-enquire,
    .floating-social,
    .carousel-controls {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .hero {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }

    .hero-content {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .hero p {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        color: white !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.hero-carousel {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    will-change: opacity;
}

.carousel-slide {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    background-attachment: scroll !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: opacity;
}

.carousel-slide img {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

/* iOS Safari specific fixes for hero images */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-device-width: 1024px) {
    .hero-carousel {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
        will-change: opacity;
    }

    .carousel-slide {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        will-change: opacity;
        opacity: 0;
    }

    .carousel-slide.active {
        opacity: 1 !important;
        z-index: 2;
    }

    .carousel-slide img {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
        object-fit: cover;
        width: 100%;
        height: 100%;
        display: block;
    }
}

/* iOS-specific fixes for mobile menu */
@supports (-webkit-touch-callout: none) {
    .nav-menu {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }

    .dropdown-toggle i {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        display: inline-block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .hamburger {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
}

/* Tablet breakpoint for gallery grid */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* Test rule to verify icon loading */
.fa-chevron-down::before {
    content: "" !important;
    background-image: url('./images/icons/test-icon.png') !important;
    width: 20px !important;
    height: 20px !important;
    display: inline-block !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* Destinations Section */
.destinations-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.destinations-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.destinations-section p {
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    padding: 0 1rem;
}

/* Destination Card Styling */
.destination-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.destination-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

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

.destination-card:hover .destination-image img {
    transform: scale(1.08);
}

.destination-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.destination-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

.destination-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destination-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.destination-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--primary-color);
    width: 16px;
}

.destination-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
}

.wildlife-highlights {
    margin-bottom: 2rem;
    background: #f8fcf8;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.wildlife-highlights h4 {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wildlife-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.wildlife-highlights li {
    font-size: 0.85rem;
    color: #666;
    background: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    border: 1px solid #eee;
}

.enquire-btn {
    margin-top: auto;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(44, 94, 46, 0.2);
    position: relative;
    z-index: 2;
}

.enquire-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(44, 94, 46, 0.3);
}

/* Make entire card clickable */
.destination-card {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.destination-content h3 a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Floating Enquire Button Enhancements */
.floating-enquire {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.enquire-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.enquire-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Floating Social Media */
.floating-social {
    position: fixed;
    bottom: 100px;
    left: 30px;
    z-index: 2000;
}

.social-toggle {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.social-toggle:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

.social-links {
    position: absolute;
    bottom: 60px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-social:hover .social-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateX(5px);
}

.social-link.instagram {
    background: #E1306C;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.twitter {
    background: #1DA1F2;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 94, 46, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(44, 94, 46, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(44, 94, 46, 0);
    }
}

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

    .floating-enquire {
        bottom: 20px;
        right: 20px;
    }

    .enquire-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
}


.wildlife-hero,
.conserve-hero,
.adventure-hero {
    height: 60vh !important;
    min-height: 400px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    will-change: transform;
}

/* Optimization for scrolling performance */
@media (max-width: 768px) {

    .wildlife-particle,
    .conserve-particle,
    .adventure-particle {
        display: none !important;
        /* Hide particles on mobile to reduce lag */
    }
}

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

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #333;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #888;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Article Styles */
.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-meta {
    color: #666;
    margin-top: 1rem;
    font-size: 1rem;
}

.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.article-content img {
    width: 100%;
    border-radius: 8px;
    margin: 2rem 0;
}

.author-bio {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    border-left: 4px solid var(--primary-color);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #333;
}

.author-details p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

/* Founders Grid Responsiveness Fix - Single Instance */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}


/* Dark Mode Support - Enhanced */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #e0e0e0;
        color-scheme: dark;
    }

    body {
        background-color: #121212;
        color: var(--text-color);
    }

    /* Fix for iOS/Android dark mode inputs */
    input,
    textarea,
    select {
        background-color: #2c2c2c;
        color: #ffffff;
        border: 1px solid #444;
    }

    /* Ensure images don't look too bright */
    img {
        filter: brightness(0.9);
    }

    .navbar {
        background: rgba(10, 10, 10, 0.95);
        border-bottom: 1px solid #333;
    }

    .founder-card,
    .testimonial-card,
    .blog-card,
    .destination-card {
        background-color: #1e1e1e;
        border-color: #333;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    .founder-info h3,
    .testimonial-text p,
    .blog-content h3 {
        color: #f0f0f0;
    }

    .founder-description,
    .blog-excerpt {
        color: #aaa;
    }

    .founder-photo {
        border-color: #2c5e2e;
    }
}