/* ==== CSS RESET & VARIABLES ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8C6239;
    --secondary: #3D5C33;
    --accent: #E6B325;
    --light: #F8F5F0;
    --dark: #1A1A1A;
    --text: #333333;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    margin-top: 3rem
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary);
    color: white;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-accent {
    background: var(--accent);
    color: var(--dark);
}

.btn-accent:hover {
    background: #d19e1c;
}

.section {
    padding: 3rem 0;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.rounded {
    border-radius: 8px;
}

/* ==== HEADER & NAVIGATION ==== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo span {
    color: var(--primary);
    font-weight: 400;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.main-nav a:hover:after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==== HERO SECTION ==== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('../images/migration.jpg') no-repeat center center / cover;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    margin-top: 80px;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* ==== GRID SYSTEM ==== */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ==== INTRO SECTION ==== */
.intro-content {
    padding-right: 2rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.feature h4 {
    margin-bottom: 0.5rem;
}

/* ==== WILDLIFE HIGHLIGHTS ==== */
.animal-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 50px;
}

.animal-card:hover {
    transform: translateY(-10px);
}

.animal-image {
    height: 250px;
    overflow: hidden;
}

.animal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.animal-card:hover .animal-image img {
    transform: scale(1.1);
}

.animal-info {
    padding: 1.5rem;
}

.animal-info h3 {
    margin-bottom: 0.5rem;
}

.animal-info .btn {
    margin-top: 1rem;
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* ==== PACKAGES SECTION ==== */
.packages {
    background: #f0f0f0;
}

.package-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

th,
td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: var(--secondary);
    color: white;
    font-weight: 500;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background: #f9f9f9;
}

/* ==== TESTIMONIALS ==== */
.testimonials {
    background: url('images/savannah.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    color: white;
    text-align: center;
}

.testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials h2 {
    color: white;
}

.testimonials h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    padding: 2rem;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial p:before,
.testimonial p:after {
    content: '"';
    font-size: 3rem;
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
}

.testimonial p:before {
    top: -20px;
    left: -20px;
}

.testimonial p:after {
    bottom: -40px;
    right: -20px;
}

.author {
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-nav {
    margin-top: 2rem;
}

.testimonial-nav button {
    background: transparent;
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.testimonial-nav button:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* ==== CALL TO ACTION ==== */
.cta {
    background: #8C6239;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ==== FOOTER ==== */
footer {
    background: var(--dark);
    color: #ddd;
    padding: 4rem 1rem 0;
}

footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

footer h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
}

.footer-col {
    margin-bottom: 2rem;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--dark);
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--accent);
    width: 20px;
}

.contact-f {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background: var(--accent);
    color: var(--dark);
    border: none;
    padding: 0 20px;
    font-weight: 600;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #d19e1c;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    margin-top: 2rem;
}



/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}



@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        transition: var(--transition);
        z-index: 999;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 2rem;
    }

    .main-nav li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .testimonials {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }
}


/* ==== ADDITIONAL STYLES FOR NEW PAGES ==== */
/* Page hero sections */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('../images/breadcrumb.avif') no-repeat center center / cover;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

/* Gallery styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 3rem 0;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 280px;
    position: relative;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Contact page styles */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 179, 37, 0.2);
}

textarea.form-control {
    min-height: 180px;
    resize: vertical;
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 1.8rem;
    transition: var(--transition);
    margin-top: 3rem;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box h4 {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
}

.info-box i {
    margin-right: 12px;
    color: var(--accent);
    font-size: 1.4rem;
}

.info-box ul {
    list-style: square;
    padding: 15px;
}

/* Travel info accordion */
.accordion {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.accordion:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.accordion-header {
    padding: 1.5rem;
    background: rgba(61, 92, 51, 0.05);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(61, 92, 51, 0.1);
}

.accordion-header i {
    transition: var(--transition);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.accordion.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion.active .accordion-content {
    padding: 1.5rem;
    max-height: 500px;
}

.map-container {
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2.5rem;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Package cards */
.package-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-header {
    padding: 1.8rem;
    background: var(--secondary);
    color: white;
    text-align: center;
}

.package-body {
    padding: 2rem;
}

.package-features {
    list-style: none;
    margin: 1.5rem 0;
}

.package-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed #eee;
}

.package-features li i {
    color: var(--accent);
    margin-right: 10px;
    width: 20px;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin: 1.5rem 0;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
}

/* Wildlife info cards */
.animal-info-card {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.animal-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.animal-info-img {
    width: 40%;
    overflow: hidden;
}

.animal-info-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.animal-info-card:hover .animal-info-img img {
    transform: scale(1.1);
}

.animal-info-content {
    width: 60%;
    padding: 1.8rem;
}

.animal-stats {
    display: flex;
    margin: 1.2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    margin-bottom: 1rem;
}

.stat-item strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .animal-info-card {
        flex-direction: column;
    }

    .animal-info-img,
    .animal-info-content {
        width: 100%;
    }

    .animal-info-img {
        height: 220px;
    }

    .page-hero {
        height: 40vh;
        min-height: 350px;
    }
}

.support-element {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.custom-request {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

#travel-info ul {
    list-style: square;
    padding: 0 1rem 1rem 2rem;
}

#read ul {
    list-style: square;
    padding: 10px 40px;
}

#read {
    padding: 60px;
}

#read ol {
    list-style: upper-roman;
    padding: 10px 40px;
}

.info-p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.contact-p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.snd-btn {
    width: 100%;
}

.gallery-p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.package-p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.book-btn {
    width: 100%;
    text-align: center;
}

.wild-p {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.footer-col ul {
    list-style: square;
}