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

html {
    scroll-behavior: smooth;
}

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

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

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

/* Logo styling */
.nav-logo {
    position: absolute;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d7a2d;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

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

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

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

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

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

/* Language Toggle Navigation Buttons */
.nav-language {
    position: absolute;
    right: 80px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-lang-btn {
    background: transparent;
    border: 2px solid #2d7a2d;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2d7a2d;
    min-width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav-lang-btn:hover {
    background: #2d7a2d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 122, 45, 0.3);
}

.nav-lang-btn.active {
    background: #2d7a2d;
    color: white;
    box-shadow: 0 3px 10px rgba(45, 122, 45, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: absolute;
    right: 2rem;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: url('Images/hero image of monkey.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(45, 122, 45, 0.1) 0%, transparent 80%),
        radial-gradient(circle at 80% 20%, rgba(230, 126, 34, 0.1) 0%, transparent 80%);
    animation: heroShimmer 8s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255, 215, 0, 0.02) 0%, transparent 70%);
    animation: heroGlow 6s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes heroShimmer {
    0%, 100% { 
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05) rotate(1deg);
    }
}

@keyframes heroGlow {
    0% { 
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    100% { 
        opacity: 0.6;
        transform: scale(1.2) rotate(180deg);
    }
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    padding-top: 12vh;
    padding-bottom: 8vh;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 
        3px 3px 6px rgba(0,0,0,0.7),
        0 0 30px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 0, 0, 0.3);
    color: white;
    animation: fadeInUp 1s ease, textShine 3s ease-in-out infinite;
}

@keyframes textShine {
    0%, 100% { 
        text-shadow: 
            3px 3px 6px rgba(0,0,0,0.7),
            0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% { 
        text-shadow: 
            3px 3px 6px rgba(0,0,0,0.7),
            0 0 30px rgba(255, 255, 255, 0.6);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-spacer {
    flex: 1;
    min-height: 25vh;
    position: relative;
}

.hero-spacer::before {
    content: '🌿';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
    font-weight: 600;
    animation: fadeInUp 1s ease 0.5s both;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    padding: 1rem 2rem;
    background: rgba(45, 122, 45, 0.2);
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
    margin-bottom: 2rem;
}

/* Enhanced Button Styles */
.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 50%, #e67e22 100%);
    color: white;
    border-color: #e67e22;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d35400 0%, #e67e22 50%, #d35400 100%);
    border-color: #ffd700;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(230, 126, 34, 0.6);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%);
    color: white;
    border-color: #ffd700;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2d7a2d;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.6);
    border-color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a4d1a; /* Darker green for better contrast */
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555; /* Darker subtitle for better contrast */
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8fdf8;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    color: #2d7a2d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #444; /* Darker text for better readability */
}

/* Bala Tours Team Image Styling */
.about-image {
    text-align: center;
    margin: 3rem 0;
}

.team-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(45, 122, 45, 0.2);
    transition: transform 0.3s ease;
    border: 3px solid rgba(45, 122, 45, 0.1);
}

.team-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(45, 122, 45, 0.3);
}

.image-caption {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(45, 122, 45, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(45, 122, 45, 0.1);
    max-width: 600px;
    margin: 1rem auto 0;
}

.image-caption p {
    color: #2d7a2d;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.image-caption i {
    color: #e67e22;
}

@media (max-width: 768px) {
    .about-image {
        margin: 2rem 0;
    }
    
    .team-image {
        border-radius: 10px;
    }
    
    .image-caption {
        margin: 1rem 1rem 0;
        padding: 0.8rem;
    }
    
    .image-caption p {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.3rem;
    }
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(45, 122, 45, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e8f5e8;
}

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

.feature i {
    font-size: 3rem;
    color: #2d7a2d;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature p {
    color: #444; /* Darker text for better readability */
    line-height: 1.6;
}

.certifications {
    margin-top: 2rem;
    text-align: center;
}

.certifications p {
    display: inline-block;
    margin: 0 1rem 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(45, 122, 45, 0.1);
    border-radius: 20px;
    color: #2d7a2d;
    font-weight: 500;
    border: 1px solid rgba(45, 122, 45, 0.2);
}

.certifications i {
    margin-right: 0.5rem;
    color: #e67e22;
}

/* Trust & Safety Section */
.trust-safety {
    padding: 6rem 0;
    background: white;
}

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

.trust-card {
    background: #f8fdf8;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
    position: relative;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(45, 122, 45, 0.15);
    border-color: #2d7a2d;
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d7a2d 0%, #1a5a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.trust-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d7a2d 0%, #1a5a1a 100%);
    opacity: 0.2;
    transform: scale(1.2);
    z-index: -1;
}

.trust-icon i {
    font-size: 2rem;
    color: white;
    z-index: 1;
}

.trust-card h3 {
    color: #2d7a2d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.trust-card p {
    color: #444; /* Darker text for better readability */
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.trust-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.4;
    border-bottom: 1px solid #e8f5e8;
    font-size: 0.9rem;
}

.trust-list li:last-child {
    border-bottom: none;
}

.trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d7a2d;
    font-weight: bold;
    font-size: 1rem;
}

.guarantee-section {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.guarantee-badge i {
    font-size: 3rem;
    opacity: 0.8;
}

.guarantee-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.guarantee-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d7a2d 0%, #1a5a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

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

/* Destinations Section */
.destinations {
    padding: 6rem 0;
    background: #f8f9fa;
}

.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 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

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

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

.destination-content {
    padding: 2rem;
}

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

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

.destination-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d7a2d;
}

/* Ecolodges Section */
.ecolodges {
    padding: 6rem 0;
    background: white;
}

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

.ecolodge-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 122, 45, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e8f5e8;
}

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

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

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

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

.ecolodge-content {
    padding: 2rem;
}

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

.location {
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 1rem;
}

.location i {
    margin-right: 0.5rem;
}

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

.ecolodge-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.ecolodge-features li {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.9rem;
}

.ecolodge-features i {
    color: #2d7a2d;
    margin-right: 0.5rem;
    width: 16px;
}

/* Wildlife Gallery */
.wildlife-gallery {
    flex: 1;
}

.wildlife-gallery h4 {
    color: #2d7a2d;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: filter 0.3s ease;
}

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

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    font-size: 0.8rem;
    opacity: 0.9;
    margin: 0;
}

/* Wildlife Gallery Section */
.wildlife-gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a5f2f 0%, #2d8f4f 100%);
    color: white;
}

.wildlife-large-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.wildlife-large-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 400px;
}

.wildlife-large-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
}

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

.wildlife-large-item:hover img {
    transform: scale(1.1);
}

.wildlife-large-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    transform: translateY(60%);
    transition: transform 0.3s ease;
}

.wildlife-large-item:hover .wildlife-large-overlay {
    transform: translateY(0);
}

.wildlife-large-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.wildlife-large-overlay p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 768px) {
    .wildlife-large-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wildlife-large-item {
        height: 300px;
    }
    
    .wildlife-large-overlay {
        padding: 25px 20px 20px;
        transform: translateY(40%);
    }
    
    .wildlife-large-overlay h3 {
        font-size: 1.3rem;
    }
    
    .wildlife-large-overlay p {
        font-size: 0.9rem;
    }
}

/* Tours Section - Updated */
.tours {
    padding: 6rem 0;
    background: #f8fdf8;
}

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

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(230, 126, 34, 0.3);
}

.tour-badge-inline {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.tour-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.tour-highlights {
    flex: 1;
}

.tour-highlights h4 {
    color: #e67e22;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-highlights h4 i {
    color: #e67e22;
}

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

.tour-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    line-height: 1.4;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.tour-highlights li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.tour-highlights li i {
    color: #2d7a2d;
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

.tour-details {
    background: rgba(45, 122, 45, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(45, 122, 45, 0.1);
    margin: 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #555;
    font-size: 0.95rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    color: #2d7a2d;
    width: 16px;
    flex-shrink: 0;
}

.detail-item strong {
    color: #2d7a2d;
}

/* Enhanced WhatsApp button styling for tours */
.btn-whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    border: 2px solid #25d366;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: auto;
    width: 100%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: linear-gradient(45deg, #128c7e, #25d366);
    border-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    color: white;
    text-decoration: none;
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #f8fdf8;
}

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

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

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

.testimonial-content .stars {
    margin-bottom: 1rem;
}

.testimonial-content .stars i {
    color: #e67e22;
    font-size: 1rem;
    margin-right: 0.2rem;
}

.testimonial-content p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #e8f5e8;
    padding-top: 1rem;
}

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

.country-flag {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #2d7a2d;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a5f1a 0%, #2d8f2d 100%);
    color: white;
}

.contact h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: white;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ffd700;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-item h3 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    color: #ffd700;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-container h3 {
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
}

.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.map-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 0.9rem;
}

.map-info i {
    color: #ffd700;
}

.whatsapp-booking {
    background: rgba(37, 211, 102, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-booking h3 {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-booking p {
    margin: 0 0 20px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.btn-whatsapp.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border: none;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp.btn-large:hover {
    background: linear-gradient(45deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.btn-whatsapp.btn-large i {
    font-size: 1.3rem;
}

/* Social Media Styles */
.social-media-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.social-media-section h3 {
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    color: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.3);
    border-color: #1877f2;
}

.social-link.tripadvisor:hover {
    background: rgba(0, 204, 102, 0.3);
    border-color: #00cc66;
}

.social-link.whatsapp:hover {
    background: rgba(37, 211, 102, 0.3);
    border-color: #25d366;
}

.social-link i {
    font-size: 1.4rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.social-link.facebook i {
    color: #1877f2;
}

.social-link.tripadvisor i {
    color: #00cc66;
}

.social-link.whatsapp i {
    color: #25d366;
}

.social-link span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a4d1a 0%, #2d7a2d 100%);
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #ffd700;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-credit {
    font-size: 0.85rem !important;
    margin-top: 1rem !important;
}

.footer-credit a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #ffed4e;
    text-decoration: underline;
}

/* Footer Social Media Styles */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: white;
}

.footer-social-link:first-child:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.footer-social-link:nth-child(2):hover {
    background: #00cc66;
    border-color: #00cc66;
}

.footer-social-link:last-child:hover {
    background: #25d366;
    border-color: #25d366;
}

/* Booking Steps Styles */
.booking-steps {
    margin-top: 1.5rem;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
}

.booking-steps h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.booking-steps ol {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    padding-left: 1.2rem;
}

.booking-steps li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: #f8fdf8;
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(45, 122, 45, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e8f5e8;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border: 2px solid #e67e22;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: #2d7a2d;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(45, 122, 45, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(45, 122, 45, 0.1);
}

.duration {
    font-weight: 600;
    color: #2d7a2d;
}

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

.inclusions {
    margin-top: 2rem;
    flex: 1;
}

.inclusions h4 {
    color: #2d7a2d;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inclusions h4 i {
    color: #27ae60;
}

.included-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.included-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.4;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.included-list li:last-child {
    border-bottom: none;
}

.included-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Pricing WhatsApp button styling */
.pricing-whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    border: 2px solid #25d366;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: 2rem;
    width: 100%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.pricing-whatsapp:hover {
    background: linear-gradient(45deg, #128c7e, #25d366);
    border-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    color: white;
    text-decoration: none;
}

.pricing-whatsapp i {
    font-size: 1.2rem;
}

.pricing-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.not-included,
.booking-terms {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e8f5e8;
    box-shadow: 0 5px 15px rgba(45, 122, 45, 0.1);
}

.not-included h4,
.booking-terms h4 {
    color: #2d7a2d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.not-included h4 i {
    color: #e74c3c;
}

.booking-terms h4 i {
    color: #3498db;
}

.not-included ul,
.booking-terms ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.not-included li,
.booking-terms li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.4;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.not-included li:last-child,
.booking-terms li:last-child {
    border-bottom: none;
}

.not-included li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.booking-terms li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* What to Bring Section */
.what-to-bring {
    padding: 6rem 0;
    background: white;
}

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

.bring-category {
    background: #f8fdf8;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
    position: relative;
}

.bring-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(45, 122, 45, 0.15);
    border-color: #2d7a2d;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d7a2d 0%, #1a5a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.category-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d7a2d 0%, #1a5a1a 100%);
    opacity: 0.2;
    transform: scale(1.2);
    z-index: -1;
}

.category-icon i {
    font-size: 2rem;
    color: white;
    z-index: 1;
}

.bring-category h3 {
    color: #2d7a2d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

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

.bring-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.bring-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.4;
    border-bottom: 1px solid #e8f5e8;
    font-size: 0.9rem;
}

.bring-category li:last-child {
    border-bottom: none;
}

.bring-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d7a2d;
    font-weight: bold;
    font-size: 1rem;
}

.bring-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    border-radius: 15px;
    color: white;
}

.bring-note p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.bring-note i {
    color: #ffd700;
    margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header {
        padding: 0.5rem 1rem;
    }
    
    .nav-logo {
        left: 1rem;
    }
    
    .hamburger {
        right: 1rem;
    }
    
    /* Adjust hero content for mobile */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        padding-top: 20vh;
        padding-bottom: 8vh;
    }

    /* Mobile responsive adjustments */
    .section-title {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .ecolodges-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .pricing-card.featured {
        transform: none;
        margin-top: 2rem;
    }

    .pricing-notes {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bring-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .map-container,
    .whatsapp-booking {
        padding: 20px;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .booking-steps {
        text-align: center;
    }
    
    .booking-steps ol {
        text-align: left;
        display: inline-block;
    }

    /* Social media responsive */
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        padding: 12px 15px;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .social-link i {
        font-size: 1.2rem;
        width: 20px;
    }
    
    .social-link span {
        font-size: 0.9rem;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    /* Mobile responsive for tours */
    .destination-image {
        height: 200px;
    }
    
    .destination-content {
        padding: 1.5rem;
        gap: 1.25rem;
    }
    
    .tour-details {
        padding: 1.25rem;
    }
    
    .btn-whatsapp {
        padding: 18px 25px;
        font-size: 1.1rem;
    }
    
    .tour-badge {
        top: 10px;
        right: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Tablet responsive styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 1.5rem;
    }

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

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .bring-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Fix mobile overlay issues */
body.menu-open {
    overflow: hidden;
}

/* Enhanced mobile touch targets */
@media (max-width: 768px) {
    .btn {
        padding: 15px 35px;
        font-size: 1.1rem;
        min-height: 48px;
        min-width: 48px;
    }

    .social-link {
        padding: 18px 20px;
        min-height: 48px;
    }

    .footer-social-link {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

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

/* Improved contrast for better readability */
.about .section-title,
.trust-safety .section-title,
.ecolodges .section-title,
.tours .section-title {
    color: #1a4d1a;
}

.wildlife-gallery-section .section-title,
.wildlife-gallery-section .section-subtitle {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact .section-title,
.contact .section-subtitle {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Enhanced contrast for text */
.about-text p,
.feature p,
.trust-card p,
.ecolodge-content p,
.testimonial-content p {
    color: #444;
}

.section-subtitle {
    color: #555;
}

@media (max-width: 480px) {
    .destination-content {
        padding: 1.25rem;
    }
    
    .tour-highlights li {
        font-size: 0.9rem;
    }
    
    .detail-item {
        font-size: 0.9rem;
    }
}

/* Mobile navigation styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        gap: 0;
        z-index: 1000;
    }

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

    .nav-item {
        margin: 1rem 0;
    }

    .nav-link {
        padding: 1rem;
        display: block;
        font-size: 1.1rem;
        border-radius: 8px;
        margin: 0 2rem;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(45, 122, 45, 0.1);
        color: #2d7a2d;
    }

    /* Mobile Language Toggle */
    .nav-language {
        position: relative;
        right: auto;
        top: 10px;
        order: -1;
        justify-content: center;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(45, 122, 45, 0.2);
    }

    .nav-lang-btn {
        font-size: 12px;
        padding: 6px 10px;
        min-width: 50px;
        height: 36px;
        gap: 3px;
    }

    .hamburger {
        display: flex;
    }

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

/* Mobile-First Responsive Design Enhancements */

/* Base Mobile Styles - 320px and up */
@media (max-width: 480px) {
    /* Mobile-first container */
    .container {
        padding: 0 15px;
    }
    
    /* Hero section mobile optimization */
    .hero {
        background-attachment: scroll; /* Better performance on mobile */
        min-height: 100vh;
        height: auto;
    }
    
    .hero-content {
        padding: 120px 15px 60px;
        justify-content: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 1rem;
        text-align: center;
    }
    
    /* Section spacing mobile optimization */
    .about, .tours, .ecolodges, .testimonials, .trust-safety, .what-to-bring, .pricing {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* About section mobile */
    .about-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .feature i {
        font-size: 2.5rem;
    }
    
    .feature h4 {
        font-size: 1.2rem;
    }
    
    /* Tours section mobile optimization */
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .destination-card {
        margin: 0 5px;
    }
    
    .destination-image {
        height: 200px;
    }
    
    .destination-content {
        padding: 1.2rem;
    }
    
    .destination-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .tour-highlights ul {
        margin: 0;
        padding: 0;
    }
    
    .tour-highlights li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .tour-details {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .detail-item {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .destination-price {
        font-size: 1.1rem;
        margin: 1rem 0;
    }
    
    .btn-whatsapp {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    /* Contact section mobile */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-item {
        padding: 15px;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .contact-item i {
        font-size: 1.2rem;
        margin-top: 0;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .map-container,
    .whatsapp-booking {
        padding: 15px;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        padding: 10px 12px;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .social-link i {
        font-size: 1.1rem;
        width: 18px;
    }
    
    .social-link span {
        font-size: 0.85rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-logo h3 {
        font-size: 1.3rem;
    }
    
    .footer-logo p {
        font-size: 0.85rem;
    }
    
    .footer-social {
        gap: 10px;
        margin-top: 1rem;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* Pricing section mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
        margin: 0 5px;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 1rem;
    }
    
    .featured-badge {
        top: -10px;
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .pricing-header h3 {
        font-size: 1.3rem;
    }
    
    .price-option {
        padding: 0.8rem;
    }
    
    .duration {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .inclusions {
        margin-top: 1.5rem;
    }
    
    .included-list li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .pricing-notes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .not-included,
    .booking-terms {
        padding: 1.5rem;
    }
    
    /* What to bring section mobile */
    .bring-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bring-category {
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .category-icon i {
        font-size: 1.5rem;
    }
    
    .bring-category h3 {
        font-size: 1.2rem;
    }
    
    .bring-category ul {
        margin-top: 1rem;
    }
    
    .bring-category li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .bring-note {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .bring-note p {
        font-size: 1rem;
    }
    
    /* Testimonials mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin: 0 5px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .author-info {
        gap: 0.8rem;
    }
    
    .country-flag {
        font-size: 1.5rem;
    }
    
    /* Wildlife gallery mobile */
    .wildlife-gallery-section {
        padding: 60px 0;
    }
    
    .wildlife-large-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .wildlife-large-item {
        height: 250px;
        margin: 0 5px;
    }
    
    .wildlife-large-overlay {
        padding: 15px;
        transform: translateY(30%);
    }
    
    .wildlife-large-overlay h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .wildlife-large-overlay p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Trust & Safety mobile */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-card {
        padding: 1.5rem;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .trust-icon i {
        font-size: 1.5rem;
    }
    
    .trust-card h3 {
        font-size: 1.2rem;
    }
    
    .trust-list li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .guarantee-section {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .guarantee-badge {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .guarantee-badge i {
        font-size: 2.5rem;
    }
    
    .guarantee-text h3 {
        font-size: 1.4rem;
    }
    
    .guarantee-text p {
        font-size: 1rem;
    }
    
    /* Ecolodges mobile */
    .ecolodges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ecolodge-card {
        margin: 0 5px;
    }
    
    .ecolodge-image {
        height: 200px;
    }
    
    .ecolodge-content {
        padding: 1.5rem;
    }
    
    .ecolodge-content h3 {
        font-size: 1.3rem;
    }
    
    .ecolodge-features {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        margin-top: 1rem;
    }
    
    .ecolodge-features li {
        font-size: 0.85rem;
    }
}

/* Medium Mobile Devices - 481px to 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .wildlife-large-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wildlife-large-item {
        height: 300px;
    }
    
    .bring-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    
    .btn {
        width: auto;
        min-width: 140px;
    }
}

/* Tablet Landscape - 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .wildlife-large-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bring-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 2rem auto 0;
    }
}

/* Mobile Navigation Enhancements */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1002;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        padding: 1.5rem 0;
        gap: 0;
        z-index: 1001;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0.8rem 0;
    }
    
    .nav-link {
        padding: 0.8rem 1.5rem;
        display: block;
        font-size: 1rem;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
        color: #333;
    }
    
    .nav-link:hover {
        background: rgba(45, 122, 45, 0.1);
        color: #2d7a2d;
    }
    
    .nav-language {
        position: relative;
        right: auto;
        order: -1;
        justify-content: center;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(45, 122, 45, 0.2);
    }
    
    .nav-lang-btn {
        font-size: 11px;
        padding: 5px 8px;
        min-width: 45px;
        height: 32px;
        gap: 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);
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

/* Touch-friendly enhancements */
@media (max-width: 768px) {
    /* Ensure all interactive elements are at least 44px */
    .btn, .nav-link, .social-link, .footer-social-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve spacing for touch */
    .hero-buttons .btn {
        margin: 0.5rem 0;
    }
    
    .tour-highlights li,
    .detail-item,
    .trust-list li,
    .included-list li {
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    /* Optimize images for mobile */
    .destination-image img,
    .ecolodge-image img,
    .wildlife-large-item img,
    .team-image {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .hero::before,
    .hero::after {
        animation-duration: 12s;
    }
    
    .hero-title {
        animation-duration: 1.5s;
    }
    
    /* Optimize background attachments */
    .hero,
    .contact,
    .wildlife-gallery-section {
        background-attachment: scroll;
    }
    
    /* Optimize transforms */
    .destination-card:hover,
    .ecolodge-card:hover,
    .testimonial-card:hover,
    .trust-card:hover {
        transform: none;
    }
    
    .destination-card:hover .destination-image img,
    .ecolodge-card:hover .ecolodge-image img,
    .wildlife-large-item:hover img {
        transform: none;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Optimize for retina displays */
    .hero {
        background-image: url('Images/hero image of monkey.jpg');
    }
}

/* Landscape orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        height: auto;
    }
    
    .hero-content {
        padding: 80px 15px 40px;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-spacer {
        min-height: 2vh;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    /* Ensure sufficient color contrast */
    .nav-link,
    .btn,
    .social-link {
        font-weight: 500;
    }
    
    /* Focus states for keyboard navigation */
    .nav-link:focus,
    .btn:focus,
    .social-link:focus {
        outline: 2px solid #2d7a2d;
        outline-offset: 2px;
    }
    
    /* Improve readability */
    .section-subtitle,
    .tour-description,
    .testimonial-content p {
        line-height: 1.6;
    }
}

/* Itineraries Section */
.itineraries {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.itinerary-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.tab-btn {
    background: white;
    border: 2px solid #28a745;
    color: #28a745;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    min-width: 120px;
    text-align: center;
}

.tab-btn:hover {
    background: #28a745;
    color: white;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #28a745;
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.itinerary-content {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-content {
    display: none;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.itinerary-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.itinerary-header h3 {
    color: #2c5530;
    font-size: 28px;
    margin-bottom: 10px;
}

.tour-code {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 15px;
}

.tour-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.tour-features span {
    background: #e8f5e8;
    color: #28a745;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.special-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.special-notice i {
    color: #856404;
    margin-top: 2px;
}

.special-notice span {
    color: #856404;
    font-size: 14px;
    line-height: 1.5;
}

.day-by-day {
    margin-top: 30px;
}

.day-item {
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
    border-left: 5px solid #28a745;
    transition: transform 0.3s ease;
}

.day-item:hover {
    transform: translateX(5px);
}

.day-header {
    background: #28a745;
    color: white;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-header h4 {
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.meals {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.day-content {
    padding: 25px;
}

.day-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #495057;
}

.day-content p:last-child {
    margin-bottom: 0;
}

.day-content strong {
    color: #28a745;
    font-weight: 600;
}

.itinerary-notes {
    margin-top: 50px;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.note-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.note-item h4 {
    color: #2c5530;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.note-item ul {
    list-style: none;
    padding: 0;
}

.note-item li {
    padding: 8px 0;
    color: #495057;
    position: relative;
    padding-left: 20px;
}

.note-item li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .itinerary-tabs {
        gap: 8px;
    }
    
    .tab-btn {
        font-size: 12px;
        padding: 10px 15px;
        min-width: 100px;
    }
    
    .tab-content {
        padding: 25px 20px;
        margin: 0 15px;
    }
    
    .itinerary-header h3 {
        font-size: 22px;
    }
    
    .tour-features {
        gap: 10px;
    }
    
    .tour-features span {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .day-header {
        padding: 12px 20px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .day-header h4 {
        font-size: 16px;
    }
    
    .day-content {
        padding: 20px;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 15px;
    }
    
    .note-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .itinerary-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 200px;
    }
}

/* --- Improved Policies Section Styles --- */
.policies-section.improved {
    background: #217a3b;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px 28px;
    margin-top: 32px;
    margin-bottom: 24px;
    color: #fff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.policies-section .policies-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffe066;
}
.policy-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.policy-icon {
    font-size: 2.2rem;
    color: #ffe066;
    min-width: 40px;
    text-align: center;
    margin-top: 2px;
}
.policy-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffe066;
    letter-spacing: 0.5px;
}
.policy-list {
    margin: 8px 0 0 0;
    padding-left: 18px;
}
.policy-list li {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}
.policy-bullet {
    color: #ffe066;
    font-size: 1.2em;
    margin-right: 6px;
}
@media (max-width: 700px) {
    .policies-section.improved {
        padding: 18px 8px;
        max-width: 98vw;
    }
    .policy-item {
        flex-direction: column;
        gap: 10px;
        padding: 12px 8px;
    }
    .policies-section .policies-title {
        font-size: 1.3rem;
    }
}
/* --- End Improved Policies Section Styles --- */