* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

/* Logo styles from about us page */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo img {
    height: 80px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.8rem;
    color: #d4af37;
}

.logo-tagline {
    font-size: 0.7rem;
    color: #46A655;
    font-weight: normal;
    margin-top: -0.2rem;
    letter-spacing: 0.5px;
}

/* Mobile responsive adjustments for logo */
@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
        gap: 0.3rem;
    }

    .logo img {
        height: 50px;
    }

    .logo-main {
        font-size: 1.4rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
        gap: 0.2rem;
    }

    .logo img {
        height: 40px;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-tagline {
        font-size: 0.5rem;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d4af37;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    top: 100%;
    left: 0;
    min-width: 150px;
    border-radius: 8px;
    z-index: 1001;
    list-style: none;
}

.dropdown-menu li {
    padding: 0.5rem 2rem;
}

.dropdown-menu li a {
    color: white;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #d4af37;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, #F4C430, #F4C430), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="companyTheme" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23F2BE2F;stop-opacity:1" /><stop offset="100%" style="stop-color:%23F2BE2F;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23companyTheme)"/><circle cx="200" cy="150" r="80" fill="%23FFD700" opacity="0.8"/><polygon points="100,600 200,500 300,600" fill="%238B4513"/><polygon points="400,650 500,550 600,650" fill="%23A0522D"/><polygon points="700,600 800,500 900,600" fill="%23D2691E"/><ellipse cx="600" cy="700" rx="100" ry="20" fill="%23228B22"/><ellipse cx="300" cy="720" rx="80" ry="15" fill="%2332CD32"/><ellipse cx="900" cy="710" rx="120" ry="25" fill="%2390EE90"/></svg>');
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-button {
    display: inline-block;
    background: #F4C430;
    color: #333;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(70, 166, 85, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(70, 166, 85, 0.5);
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

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

.about-text h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
}

.about-text h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #46A655, #3d8f4a);
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Story Section */
.story {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-text h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
}

.story-text h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #46A655, #3d8f4a);
}

.story-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-image {
    height: 400px;
    background: #3A7D44;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #6B8E23;
    color: white;
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #46A655;
}

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

.service-card {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover:before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #46A655;
}

.service-card p {
    line-height: 1.8;
    color: #bdc3c7;
}

/* Mission Vision Values */
.mvv {
    padding: 100px 0;
    background: #2c3e50;
    color: white;
}

.mvv h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #46A655;
}

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

.mvv-card {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mvv-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(70, 166, 85, 0.1), transparent);
    transition: left 0.5s ease;
}

.mvv-card:hover:before {
    left: 100%;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(70, 166, 85, 0.2);
}

.mvv-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #46A655;
}

.mvv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #46A655;
}

.mvv-card p {
    line-height: 1.8;
    color: #bdc3c7;
}

/*about us images*/
.about-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
}

/* Destinations Section */
.destinations {
    padding: 100px 0;
    background: #f8f9fa;
}

.destinations h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2c3e50;
}

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

.destination-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.destination-image {
    width: 100%;
    height: 100%;
    background: #F4C430;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-overlay {
    transform: translateY(0);
}

.destination-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #2c3e50;
    color: white;
}

.team h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #46A655;
}

.team-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: #bdc3c7;
}

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

.team-member {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(70, 166, 85, 0.2);
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #46A655, #3d8f4a);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2c3e50;
    font-weight: bold;
}

.member-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #46A655;
}

.member-role {
    color: #bdc3c7;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.member-experience {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #46A655, #3d8f4a);
    color: white;
}

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

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

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #d4af37;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Community Section */
.community {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.community h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    position: relative;
}

.community h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #46A655, #3d8f4a);
}

.community-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: #666;
}

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

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

.community-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(70, 166, 85, 0.2);
}

.community-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #46A655;
}

.community-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.community-card p {
    line-height: 1.8;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #F4C430;
    color: #2c3e50;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.contact p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.contact-button {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.5);
}

/* Footer - using styles from about us page */
footer {
    background: #3A7D44;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

/* Logo section in footer */
.footer-content .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Prevents logo from shrinking */
}

.footer-content .logo img {
    height: 250px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.footer-content .logo:hover img {
    transform: scale(1.1);
}

.footer-content .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-align: center;
}

.footer-content .logo-main {
    font-size: 1.6rem;
    color: #d4af37;
}

.footer-content .logo-tagline {
    font-size: 0.7rem;
    color: #46A655;
    font-weight: normal;
    margin-top: -0.2rem;
    letter-spacing: 0.5px;
}

/* Footer info section */
.footer-info {
    flex: 1;
    text-align: right;
}

.footer-info p {
    margin-bottom: 1rem;
    color: #bdc3c7;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #0077b5; /* default hover color */
    color: white;
}

.social-links a[title="Facebook"]:hover {
    background: #3b5998;
}

.social-links a[title="Instagram"]:hover {
    background: #e4405f;
}

.social-links a[title="LinkedIn"]:hover {
    background: #0077b5;
}

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

.fade-in {
    animation: fadeInUp 1s ease-out;
}

/* Hamburger button styling */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1100; /* stays above menu */
}

.menu-toggle span {
    display: block;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger animation when opened */
.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Dropdown Indicator */
.dropdown-arrow {
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 0px 15px;
    transition: background 0.3s ease;
}

.dropdown:hover > a {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.95);
    min-width: 180px;
    top: 100%;
    left: 0;
    z-index: 10;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown links */
.dropdown-content li a {
    padding: 10px 15px;
    display: block;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-content li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hide role & experience initially */
.member-role,
.member-experience {
    display: none;
}

/* When .active is added to team-member, show them */
.team-member.active .member-role,
.team-member.active .member-experience {
    display: block;
}

/* Optional smooth reveal */
.member-role,
.member-experience {
    transition: all 0.3s ease;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0,0,0,0.7);
    padding: 20px;
}
.modal-content {
    background: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 900px;
}
.close {
    float: right;
    font-size: 1.8rem;
    cursor: pointer;
}
.modal-body h3 {
    margin-top: 20px;
}

/* ======================= MOBILE RESPONSIVE STYLES ======================= */

/* Tablet styles */
@media (max-width: 1024px) {
    nav {
        padding: 0 1.5rem;
    }

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

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

    .about,
    .story,
    .services,
    .mvv,
    .community,
    .team,
    .destinations,
    .contact {
        padding: 80px 0;
    }

    .about-text h2,
    .story-text h2,
    .services h2,
    .mvv h2,
    .community h2,
    .team h2,
    .destinations h2,
    .contact h2 {
        font-size: 2.5rem;
    }

    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .destination-card {
        height: 350px;
    }

    .story-image {
        height: 350px;
        font-size: 3rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        width: 220px;
        padding: 1rem;
        gap: 1rem;
        border-radius: 0 0 10px 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: right;
    }

    /* Adjust dropdown for mobile */
    .dropdown-menu,
    .dropdown-content {
        position: static;
        background: rgba(255, 255, 255, 0.1);
        min-width: auto;
        width: 100%;
        border-radius: 4px;
        margin-top: 0.5rem;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown:hover .dropdown-content {
        display: block;
    }

    /* Hero section mobile */
    .hero {
        background-attachment: scroll; /* Fix for mobile background */
        min-height: 100vh;
        padding: 0 1rem;
    }

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

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

    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    /* Section padding mobile */
    .about,
    .story,
    .services,
    .mvv,
    .community,
    .team,
    .destinations,
    .stats,
    .contact {
        padding: 60px 0;
    }

    .container {
        padding: 0 1rem;
    }

    /* Grid layouts mobile */
    .about-content,
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .services-grid,
    .mvv-grid,
    .community-grid,
    .destinations-grid,
    .team-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Typography mobile */
    .about-text h2,
    .story-text h2,
    .services h2,
    .mvv h2,
    .community h2,
    .team h2,
    .destinations h2,
    .contact h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-text h2:after,
    .story-text h2:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-text p,
    .story-text p {
        font-size: 1.1rem;
        text-align: center;
    }

    .team-subtitle,
    .community-subtitle {
        font-size: 1.1rem;
    }

    /* Cards mobile adjustments */
    .service-card,
    .mvv-card,
    .community-card {
        padding: 2rem 1.5rem;
    }

    .service-icon,
    .mvv-icon,
    .community-icon {
        font-size: 3rem;
    }

    .service-card h3,
    .mvv-card h3,
    .community-card h3 {
        font-size: 1.5rem;
    }

    /* Destinations mobile */
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        height: 300px;
    }

    .destination-image {
        font-size: 2.5rem;
    }

    .destination-overlay {
        padding: 1.5rem;
    }

    .destination-overlay h3 {
        font-size: 1.5rem;
    }

    /* Story image mobile */
    .story-image {
        height: 250px;
        font-size: 2.5rem;
    }

    .about-image {
        font-size: 2.5rem;
        height: 250px;
    }

    /* Team section mobile */
    .team-member {
        padding: 1.5rem;
    }

    .member-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .member-name {
        font-size: 1.1rem;
    }

    /* Stats mobile */
    .stats {
        padding: 60px 0;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* Contact mobile */
    .contact h2 {
        font-size: 2rem;
    }

    .contact p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .contact-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-content .logo {
        font-size: 1.5rem;
        justify-content: center;
    }

    .footer-content .logo img {
        height: 60px;
    }

    .footer-content .logo-main {
        font-size: 1.3rem;
    }

    .footer-info {
        text-align: center;
    }

    .social-links {
        justify-content: center;
        gap: 15px;
    }

    /* Modal mobile */
    .modal {
        padding: 10px;
    }

    .modal-content {
        padding: 15px;
        margin: 20px auto;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    nav {
        padding: 0 0.5rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

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

    .cta-button {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }

    /* Section adjustments for very small screens */
    .about,
    .story,
    .services,
    .mvv,
    .community,
    .team,
    .destinations,
    .stats,
    .contact {
        padding: 40px 0;
    }

    .container {
        padding: 0 0.5rem;
    }

    /* Typography very small mobile */
    .about-text h2,
    .story-text h2,
    .services h2,
    .mvv h2,
    .community h2,
    .team h2,
    .destinations h2,
    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .about-text p,
    .story-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .team-subtitle,
    .community-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    /* Cards very small mobile */
    .service-card,
    .mvv-card,
    .community-card {
        padding: 1.5rem 1rem;
    }

    .service-icon,
    .mvv-icon,
    .community-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .service-card h3,
    .mvv-card h3,
    .community-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .service-card p,
    .mvv-card p,
    .community-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Destinations very small mobile */
    .destination-card {
        height: 250px;
    }

    .destination-image {
        font-size: 2rem;
    }

    .destination-overlay {
        padding: 1rem;
    }

    .destination-overlay h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    /* Story and about images */
    .story-image,
    .about-image {
        height: 200px;
        font-size: 2rem;
    }

    /* Team very small mobile */
    .team-member {
        padding: 1rem;
    }

    .member-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .member-name {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .member-role {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .member-experience {
        font-size: 0.8rem;
    }

    /* Stats very small mobile */
    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Contact very small mobile */
    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .contact p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-button {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }

    /* Footer very small mobile */
    .footer-content .logo {
        font-size: 1.2rem;
    }

    .footer-content .logo img {
        height: 50px;
    }

    .footer-content .logo-main {
        font-size: 1.1rem;
    }

    .footer-content .logo-tagline {
        font-size: 0.5rem;
    }

    .footer-info p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    /* Navigation adjustments for very small screens */
    .nav-links {
        width: 100%;
        right: 0;
        left: 0;
        border-radius: 0;
    }

    .nav-links li {
        text-align: center;
    }

    /* Modal very small mobile */
    .modal {
        padding: 5px;
    }

    .modal-content {
        padding: 10px;
        margin: 10px auto;
        border-radius: 4px;
    }

    .close {
        font-size: 1.5rem;
    }
}

/* Landscape phone adjustments */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 1rem 50px;
    }

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

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

/* Ensure hover effects work properly on touch devices */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .mvv-card:hover,
    .community-card:hover,
    .team-member:hover,
    .stat-item:hover,
    .destination-card:hover {
        transform: none;
        box-shadow: initial;
    }

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

    .logo:hover img,
    .footer-content .logo:hover img {
        transform: none;
    }

    /* Enable tap highlighting for better UX */
    .service-card,
    .mvv-card,
    .community-card,
    .team-member,
    .destination-card,
    .cta-button,
    .contact-button {
        -webkit-tap-highlight-color: rgba(70, 166, 85, 0.2);
    }
}




     /* Additional styles for itinerary section */
 .itinerary-highlights {
     margin: 1rem 0;
     text-align: left;
 }

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

.itinerary-highlights li {
    margin: 0.5rem 0;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.show-more-btn {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #2c3e50;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Enhanced modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0,0,0,0.8);
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 2% auto;
    padding: 30px;
    border-radius: 15px;
    max-width: 900px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close:hover {
    color: #d4af37;
}

.modal-body h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 3px solid #46A655;
    padding-bottom: 0.5rem;
}

.modal-body h3 {
    color: #46A655;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
}

.modal-body p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #444;
}

.modal-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.modal-body li {
    margin: 0.5rem 0;
    color: #555;
}

.modal-body strong {
    color: #2c3e50;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        padding: 20px;
        max-width: 95%;
    }

    .modal-body h2 {
        font-size: 1.5rem;
    }

    .modal-body h3 {
        font-size: 1.2rem;
    }
}



/* Additional styles for download section */
.download-card {
    position: relative;
}

.duration-badge {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #2c3e50;
    padding: 0.3rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.download-features {
    text-align: left;
    margin: 1.5rem 0;
}

.feature-item {
    color: #95a5a6;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.download-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.preview-btn {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #2c3e50;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.preview-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.download-btn {
    background: linear-gradient(45deg, #46A655, #3d8f4a);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(70, 166, 85, 0.4);
}

.file-info {
    text-align: center;
    margin-top: 1rem;
}

.file-size {
    background: rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.download-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

/* PDF Preview Modal Styles */
#pdfPreviewModal .modal-content {
    background: white;
    margin: 2% auto;
    padding: 20px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .download-actions {
        flex-direction: column;
    }

    .preview-btn,
    .download-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .bulk-download {
        padding: 1.5rem 1rem;
    }

    #pdfPreviewModal .modal-content {
        max-width: 95%;
        padding: 15px;
    }

    #pdfPreviewContent {
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .download-features {
        text-align: center;
    }

    .feature-item {
        font-size: 0.8rem;
    }
}



/* Enhanced Team Member Card Styles */
.team-member {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 320px; /* Default compact size */
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.team-member:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(70, 166, 85, 0.1), transparent);
    transition: left 0.5s ease;
}

.team-member:hover:before {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(70, 166, 85, 0.3);
}

/* Much Larger Avatar/Image */
.member-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #2c3e50;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 4px solid #46A655;
    overflow: hidden;
    position: relative;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* For members without images, use gradient background */
.member-avatar:not(:has(img)) {
    background: linear-gradient(45deg, #46A655, #3d8f4a);
}

.team-member:hover .member-avatar {
    transform: scale(1.05);
    border-color: #d4af37;
}

/* Member Name - Always Visible */
.member-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #46A655;
    font-weight: bold;
    transition: color 0.3s ease;
}

.team-member:hover .member-name {
    color: #d4af37;
}

/* Hidden Details - Initially Hidden with proper height management */
.member-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    width: 100%;
    margin-top: 0;
}

.member-details.active {
    opacity: 1;
    max-height: 400px;
    margin-top: 1rem;
}

.member-role {
    color: #bdc3c7;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.member-education {
    color: #95a5a6;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    font-style: italic;
}

.member-experience {
    color: #95a5a6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-bio {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
    margin-top: 1rem;
}

/* Click Indicator */
.click-indicator {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(70, 166, 85, 0.9);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.team-member.active .click-indicator {
    background: rgba(212, 175, 55, 0.9);
}

.team-member.active .click-indicator:after {
    content: " to close";
}

.click-indicator:after {
    content: " to learn more";
}

.click-indicator:before {
    content: "👆 Click";
}

/* Active state styling - Dynamic height */
.team-member.active {
    background: linear-gradient(135deg, #3d5a75, #34495e);
    border: 2px solid #46A655;
    min-height: auto; /* Larger when expanded */
    height: auto; /* Allow natural height expansion */
}

/* Animation for smooth reveal */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 400px;
    }
}

.member-details.active {
    animation: slideDown 0.5s ease;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .team-member {
        padding: 1.5rem;
        min-height: 300px;
    }

    .team-member.active {
        min-height: 450px;
    }

    .member-avatar {
        width: 240px;
        height: 240px;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .member-name {
        font-size: 1.3rem;
    }

    .member-role {
        font-size: 1rem;
    }

    .member-education,
    .member-experience {
        font-size: 0.85rem;
    }

    .member-bio {
        font-size: 0.85rem;
    }

    .member-details.active {
        max-height: 350px;
    }
}

@media (max-width: 480px) {
    .team-member {
        padding: 1rem;
        min-height: 280px;
    }

    .team-member.active {
        min-height: 400px;
    }

    .member-avatar {
        width: 120px;
        height: 120px;
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .member-name {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .click-indicator {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }

    .member-details.active {
        max-height: 320px;
    }
}

/* Smooth height transitions */
@media (prefers-reduced-motion: no-preference) {
    .team-member {
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
}