/* Enhanced Content Sections */
.content-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    /*color: var(--primary-green);*/
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--gold));
    border-radius: 2px;
}

.overview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-section {
        padding: 4rem 1rem;
    }
}

/***************************************************************************************************************************************************/
/* Wildlife Section */
.wildlife-types {
    background: var(--gradient-primary);
    color: var(--text-light);
}

.wildlife-types h2 {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

/* Wildlife Section - Main Feature Card */
.main-wildlife-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.main-wildlife-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main-wildlife-card:hover img {
    transform: scale(1.05);
}

.main-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: var(--text-light);
}

.main-card-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold);
}

.main-card-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Wildlife Stats inside main card */
.wildlife-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Mini Wildlife Cards Grid */
.other-wildlife-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.wildlife-mini-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.wildlife-mini-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.wildlife-mini-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wildlife-mini-card:hover img {
    transform: scale(1.05);
}

.mini-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: var(--text-light);
}

.mini-card-overlay h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.mini-card-overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-wildlife-card {
        height: 40rem;
        margin-bottom: 2rem;
    }

    .main-card-overlay {
        padding: 2rem;
    }

    .main-card-content h3 {
        font-size: 2rem;
    }

    .main-card-content p {
        font-size: 1rem;
    }

    .wildlife-stats {
        gap: 2rem;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .other-wildlife-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .wildlife-mini-card {
        height: 220px;
    }

    .mini-card-overlay {
        padding: 1rem;
    }

    .mini-card-overlay h4 {
        font-size: 1.1rem;
    }

    .mini-card-overlay p {
        font-size: 0.85rem;
    }
}


.type-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.type-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.type-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.type-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
}

.card-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/***************************************************************************************************************************************************/
/* Activities Grid */
.activities {
    background: #f8f9fa;
}

.activities-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.activity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: auto;
    width: auto;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.activity-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.activity-card:hover img {
    transform: scale(1.05);
}

.activity-card .content {
    padding: 1.5rem;
}

.activity-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.activity-card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .activities-content {
        grid-template-columns: 1fr;
    }
}

/***************************************************************************************************************************************************/
/* Experience Section */
.experience {
    background: var(--gradient-primary);
    color: var(--text-light);
}

.experience-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Cultural Section */
.surrounding_cultures {
    background: white;
}

.surrounding_cultures h2:not(:first-child) {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.surrounding_cultures p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.surrounding_cultures li {
    margin: 0 0 0 40px;
}

/* Best Time Section */
.best_time_to_go {
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
}

.best_time_to_go p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/***************************************************************************************************************************************************/
/* Requirements Section */
.requirements_and_preparation {
    background: var(--primary-green);
    color: var(--text-light);
}

.requirements_and_preparation h2:not(:first-child) {
    color: var(--gold);
    font-size: 1.8rem;
    margin-top: 3rem;
}

.requirements_and_preparation p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.requirements_and_preparation h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gold);
}

/***************************************************************************************************************************************************/
/* Package Cards */
.packages {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.card p {
    color: #666;
    margin-bottom: 1rem;
}

.card a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--accent-orange);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.card a:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {

    .packages-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .packages {
        padding: 1rem 1rem;
    }
}

/***************************************************************************************************************************************************/
/* Accommodation Section */
.accommodation {
    padding: 6rem 2rem;
    background: white;
}

.accommodation h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-green);
}

.accommodation h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-green);
}

.accommodation-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.accommodation-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.accommodation-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.accommodation-card-content {
    padding: 1.5rem;
}

.accommodation-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.accommodation-card p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.accommodation-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--accent-orange), var(--gold));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.accommodation-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(210, 105, 30, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {

    .accommodation-content {
        grid-template-columns: 1fr;
    }

    .accommodation {
        padding: 1rem 1rem;
    }
}

/***************************************************************************************************************************************************/
/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #ff6600;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6600;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6600, #ff9900);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        padding: 12px;
    }
}