 /* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 5%;
}

.logo img {
    height: 50px;
}
 
nav ul {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
    
}

nav ul.active {
    transform: translateY(0);
    opacity: 1;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #e67e22;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

 /* Mobile Menu Styles */
@media (max-width: 768px) {
    /* Menu styles */
    nav ul {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: flex; /* Changed from none to flex */
    }
    
    nav ul li {
     margin-left: 0; 
     padding: 5px 0;
}

    nav ul.active {
        transform: translateX(0);
    }

    /* Mobile button styles */
    .mobile-menu {
        display: flex !important; /* Force show in mobile */
        position: relative;
        z-index: 1001;
        background: none;
        border: none;
        padding: 0;
    }

    /* Icon container */
    .mobile-menu .icon-container {
        position: relative;
        width: 24px;
        height: 24px;
    }

    /* Both icons */
    .mobile-menu .icon-container i {
        position: absolute;
        top: 0;
        left: 0;
        font-size: 1.5rem;
        transition: opacity 0.2s ease;
    }

    /* Initial state */
    .mobile-menu .fa-bars {
        opacity: 1;
    }

    .mobile-menu .fa-times {
        opacity: 0;
    }

    /* Active state */
    .mobile-menu.active .fa-bars {
        opacity: 0;
    }

    .mobile-menu.active .fa-times {
        opacity: 1;
    }

    /* Overlay */
    .menu-overlay {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
   
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background: #d35400;
}

/* Featured Parks */
.featured-parks {
    padding: 5rem 2rem;
    text-align: center;
}

.featured-parks h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.park-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.park-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s;
}

.park-card:hover {
    transform: translateY(-10px);
}

.park-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.park-card h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
}

.park-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Why Choose Us */
.why-us {
    background: #f4f4f4;
    padding: 5rem 2rem;
    text-align: center;
}

.why-us h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.benefit {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit i {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

.benefit h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 3rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-links h3, .footer-social h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #e67e22;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #e67e22;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .park-grid {
        flex-direction: column;
        align-items: center;
    }

    .benefits {
        flex-direction: column;
        align-items: center;
    }
}

/* Park Page Styles */
.park-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
   
}

.park-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.park-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.park-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.park-overview {
    padding: 4rem 2rem;
    text-align: center;
}

.park-overview .container {
    max-width: 1000px;
    margin: 0 auto;
}

.park-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    background: #f4f4f4;
    padding: 1.5rem;
    border-radius: 10px;
    width: 200px;
}

.stat i {
    font-size: 2rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

.park-highlights {
    background: #fff;
    padding: 4rem 2rem;
}

.highlight-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.highlight {
    width: 300px;
    text-align: center;
}

.highlight img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.park-packages {
    background: #f4f4f4;
    padding: 4rem 2rem;
    text-align: center;
}

.package-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.package {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.package img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}







/* Page Hero Styles */
.page-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

/* Safari Packages Page */
.safari-packages {
    padding: 5rem 0;
}

.package-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: #f4f4f4;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active {
    background: #e67e22;
    color: #fff;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.package-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-image {
    position: relative;
    height: 200px;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e67e22;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-details {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-info {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0 1rem;
    font-size: 0.9rem;
    color: #666;
}

.package-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.package-price {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.package-price span {
    font-weight: 700;
    color: #e67e22;
    font-size: 1.2rem;
}

.custom-safari {
    background: #e67e22;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    margin-top: 1rem;
}

.btn-outline:hover {
    background: #fff;
    color: #e67e22;
}

/* Travel Tips Page */
.travel-tips {
    padding: 5rem 0;
}

.tips-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.category-card i {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

.category-card h3 {
    margin-bottom: 1.5rem;
}

.category-card ul {
    text-align: left;
    margin-bottom: 1.5rem;
}

.category-card li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.category-card li::before {
    content: "•";
    color: #e67e22;
    position: absolute;
    left: 0;
}

.btn-text {
    color: #e67e22;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.btn-text:hover {
    color: #d35400;
}

.tip-article {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #eee;
}

.tip-article:last-child {
    border-bottom: none;
}

.tip-highlight {
    background: #f9f9f9;
    padding: 1.5rem;
    border-left: 4px solid #e67e22;
    margin: 1.5rem 0;
}

.packing-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.seasonal-advice {
    background: #f4f4f4;
    padding: 5rem 0;
}

.season-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.season-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.season-card h3 {
    color: #e67e22;
    margin-bottom: 1rem;
}

/* Blog Page */
.blog-section {
    padding: 5rem 0;
    display: flex;
}

.container {
    
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
}

.blog-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    align-content: start;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-image {
    position: relative;
    height: 200px;
}

.blog-card.featured .blog-image {
    height: 100%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #e67e22;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-card.featured .blog-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-card h2, .blog-card h3 {
    margin-bottom: 1rem;
}

.blog-card p {
    margin-bottom: 1.5rem;
    color: #555;
}

.blog-sidebar {
    flex: 1;
}

.sidebar-widget {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f4f4f4;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.category-list a:hover {
    color: #e67e22;
}

.category-list span {
    background: #f4f4f4;
    padding: 0.2rem 0.6rem;
    border-radius: 30px;
    font-size: 0.8rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f4f4f4;
}

.popular-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.popular-post h4 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.popular-post span {
    font-size: 0.8rem;
    color: #666;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* About Us Page */
.about-section {
    padding: 5rem 0;
}

.about-section .container {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.mission, .vision {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #e67e22;
}

.mission i, .vision i {
    color: #e67e22;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.team-section {
    background: #f4f4f4;
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.position {
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.values-section {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-card i {
    font-size: 2rem;
    color: #e67e22;
    margin-bottom: 1.5rem;
}

.testimonials-section {
    background: #f4f4f4;
    padding: 5rem 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #666;
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
}

.contact-section .container {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #e67e22;
    margin-top: 0.3rem;
}

.social-links {
    margin-top: 3rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f4f4f4;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #e67e22;
    color: #fff;
}

.contact-form {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.faq-section {
    padding: 5rem 0;
    background: #f4f4f4;
}

.faq-grid {
    margin-top: 3rem;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.map-section {
    padding: 5rem 0;
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .blog-section .container,
    .about-section .container,
    .contact-section .container {
        flex-direction: column;
    }
    
    .blog-sidebar {
        order: -1;
        margin-bottom: 3rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        height: 40vh;
    }
}