/* Base Styles */
:root {
    --primary: #75682C;
    --secondary: #e0b354;
    --accent: #d4a762;
    --dark: #1a1a1a;
    --light: #F6F4F2;
    --white:#F6F4F2;
    --text: #444444;
    --heading: 'Mazzard H', 'Futura', 'Trebuchet MS', Arial, sans-serif;
    --body: 'Mazzard H', 'Futura', 'Trebuchet MS', Arial, sans-serif;
}



/* Mazzard H Font Family */
@font-face {
    font-family: 'Mazzard H';
    src: url('fonts/MazzardH-ExtraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mazzard H';
    src: url('fonts/mazzard-h-light.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mazzard H';
    src: url('fonts/mazzard-h-regular.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mazzard H';
    src: url('fonts/MazzardH-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mazzard H';
    src: url('fonts/MazzardH-BoldItalic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Mazzard H';
    src: url('fonts/MazzardH-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mazzard H';
    src: url('fonts/MazzardH-ExtraBoldItalic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Mazzard H';
    src: url('fonts/MazzardH-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mazzard H';
    src: url('fonts/MazzardH-BlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}



/* Set default weight for body text */
body {
    font-weight: 400; /* Using ExtraLight as default */
}

/* Headings with appropriate weights */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading);
    font-weight: 800; /* Using ExtraBold for headings */
}

/* For bold text */
strong, b {
    font-weight: bold; /* Using Bold weight */
}

/* For extra emphasis */
.extra-bold {
    font-weight: 900; /* Using Black weight */
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading);
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(42, 92, 69, 0.3);
}

.btn-primary:hover {
    background-color: #d4a336;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(42, 92, 69, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(224, 179, 84, 0.3);
}

.btn-secondary:hover {
    background-color: #d4a336;
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(224, 179, 84, 0.4);
}




.btn-whatsapp {
    background-color:  #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(42, 92, 69, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20b457;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(42, 92, 69, 0.4);
}

.btn-email {
    background-color: var(--secondary);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(224, 179, 84, 0.3);
}

.btn-email:hover {
    background-color: #d4a336;
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(224, 179, 84, 0.4);
}

.btn-icon {
    font-size: 1.2em; /* Slightly larger icons */
    margin-right: 8px; /* Space between icon and text */
}




.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .subtitle {
    display: block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--text);
    padding: 0 15px;
}


/* Inclusions & Exclusions Section Styles */
.inclusions-exclusions-section {
    padding: 40px 0;
    background-color: var(--light);
}

.inclusions-exclusions-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.inclusions-column, .exclusions-column {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.inclusions-column:hover, .exclusions-column:hover {
    transform: translateY(-5px);
}

.inclusions-header, .exclusions-header {
    padding: 25px 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(117, 104, 44, 0.1);
}

.inclusions-header {
    background: linear-gradient(135deg, rgba(117, 104, 44, 0.05), transparent);
}

.exclusions-header {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.05), transparent);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
}

.inclusions-header .icon-wrapper {
    background: rgba(117, 104, 44, 0.1);
    color: var(--primary);
}

.exclusions-header .icon-wrapper {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.inclusions-header h3, .exclusions-header h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.inclusions-header p, .exclusions-header p {
    color: var(--text);
    font-size: 14px;
    opacity: 0.8;
}

.inclusions-list, .exclusions-list {
    padding: 20px 0;
}

.inclusion-item, .exclusion-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 25px;
    transition: background-color 0.3s ease;
}

.inclusion-item:hover {
    background-color: rgba(117, 104, 44, 0.03);
}

.exclusion-item:hover {
    background-color: rgba(244, 67, 54, 0.03);
}

.inclusion-icon, .exclusion-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}

.inclusion-icon {
    background: rgba(117, 104, 44, 0.1);
    color: var(--primary);
}

.exclusion-icon {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.inclusion-content h4, .exclusion-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.inclusion-content p, .exclusion-content p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
    margin: 0;
}

/* Additional Information */
.additional-info {
    max-width: 800px;
    margin: 0 auto;
}

.info-card {
    display: flex;
    align-items: flex-start;
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(117, 104, 44, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 22px;
    color: var(--primary);
}

.info-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.info-content p {
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .inclusions-exclusions-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .inclusion-item, .exclusion-item {
        padding: 12px 20px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .inclusions-header, .exclusions-header {
        padding: 20px 20px 15px;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .inclusion-icon, .exclusion-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .info-card {
        padding: 20px;
    }
}



   /* Kilimanjaro FAQ Section Styles */
.kilimanjaro-faq-section {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(117, 104, 44, 0.03) 0%, rgba(246, 244, 242, 1) 100%);
}

.kilimanjaro-faq-container {
    max-width: 800px;
    margin: 0 auto 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    overflow: hidden;
}

.kilimanjaro-faq-item {
    border-bottom: 1px solid rgba(117, 104, 44, 0.1);
    transition: all 0.3s ease;
}

.kilimanjaro-faq-item:last-child {
    border-bottom: none;
}

.kilimanjaro-faq-item:hover {
    background-color: rgba(117, 104, 44, 0.02);
}

.kilimanjaro-faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.kilimanjaro-faq-question:hover {
    background-color: rgba(117, 104, 44, 0.03);
}

.kilimanjaro-faq-question h4 {
    font-size: 18px;
    color: var(--dark);
    margin: 0;
    flex: 1;
    padding-right: 20px;
    font-weight: 600;
}

.kilimanjaro-faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.kilimanjaro-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(117, 104, 44, 0.02);
}

.kilimanjaro-faq-answer.active {
    max-height: 500px;
    padding: 0 25px 25px;
}

.kilimanjaro-faq-answer p {
    color: var(--text);
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}

/* Dynamic route name styling */
.route-name {
    color: var(--primary);
    font-weight: 700;
}

.route-duration {
    color: var(--accent);
    font-weight: 600;
}

/* FAQ Contact CTA */
.faq-contact-cta {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary);
}

.cta-content h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
}

.cta-content p {
    color: var(--text);
    margin-bottom: 25px;
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(117, 104, 44, 0.1);
    transform: translateY(-2px);
}

/* Animation for FAQ toggle */
.kilimanjaro-faq-toggle.rotate {
    transform: rotate(45deg);
    background: #d4a336;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .kilimanjaro-faq-question {
        padding: 18px 20px;
    }
    
    .kilimanjaro-faq-question h4 {
        font-size: 16px;
    }
    
    .kilimanjaro-faq-answer.active {
        padding: 0 20px 20px;
    }
    
    .faq-contact-cta {
        padding: 30px 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn, .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .kilimanjaro-faq-question {
        padding: 15px 18px;
    }
    
    .kilimanjaro-faq-question h4 {
        font-size: 15px;
    }
    
    .kilimanjaro-faq-toggle {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }
    
    .faq-contact-cta {
        padding: 25px 20px;
    }
    
    .cta-content h3 {
        font-size: 20px;
    }
}


 /* Kilimanjaro Overview Section - Clean Design */
        .kili-overview-section {
            padding: 50px 0 30px;
            background: var(--kili-light);
        }

        .kili-overview-content {
            background: var(--kili-white);
            border-radius: 12px;
            padding: 40px;
            border: 1px solid rgba(117, 104, 44, 0.1);
        }

        .kili-overview-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(117, 104, 44, 0.1);
            color: var(--kili-dark)
        }

        .kili-overview-header h2 {
            color: var(--kili-dark);
            font-size: 32px;
            margin: 0 0 15px 0;
            font-weight: 700;
        }

        .kili-route-badge {
            display: inline-block;
            background: var(--kili-primary);
            color: var(--kili-white);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .kili-overview-description {
            color: var(--kili-text);
            line-height: 1.7;
            font-size: 16px;
            margin-bottom: 30px;
            text-align: left;
        }

        .kili-facts-simple {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .kili-fact-simple {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: rgba(117, 104, 44, 0.05);
            border-radius: 6px;
            border: 1px solid rgba(117, 104, 44, 0.1);
        }

        .kili-fact-label {
            color: var(--kili-dark);
            font-weight: 500;
            font-size: 14px;
        }

        .kili-fact-value {
            color: var(--kili-primary);
            font-weight: 600;
            font-size: 14px;
        }


        /* Kilimanjaro Overview Section - Clean Design */
    .kilimanjaro-overview-section {
        padding: 50px 0 30px;
        background: var(--light);
    }

    .overview-content {
        background: var(--white);
        border-radius: 12px;
        padding: 40px;
        border: 1px solid rgba(117, 104, 44, 0.1);
    }

    .overview-header {
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid rgba(117, 104, 44, 0.1);
        color: var(--dark)
    }

    .overview-header h2 {
        color: var(--dark);
        font-size: 32px;
        margin: 0 0 15px 0;
        font-weight: 700;
    }

    .route-badge {
        display: inline-block;
        background: var(--primary);
        color: var(--white);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .overview-description {
        color: var(--text);
        line-height: 1.7;
        font-size: 16px;
        margin-bottom: 30px;
        text-align: left;
    }

    .facts-simple {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .fact-simple {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
        background: rgba(117, 104, 44, 0.05);
        border-radius: 6px;
        border: 1px solid rgba(117, 104, 44, 0.1);
    }

    .fact-label {
        color: var(--dark);
        font-weight: 500;
        font-size: 14px;
    }

    .fact-value {
        color: var(--primary);
        font-weight: 600;
        font-size: 14px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .overview-content {
            padding: 30px 25px;
        }

        .overview-header h2 {
            font-size: 28px;
        }

        .facts-simple {
            gap: 15px;
        }

        .fact-simple {
            padding: 8px 15px;
        }
    }

    @media (max-width: 480px) {
        .overview-content {
            padding: 25px 20px;
        }

        .overview-header h2 {
            font-size: 24px;
        }

        .route-badge {
            font-size: 12px;
            padding: 6px 12px;
        }

        .facts-simple {
            flex-direction: column;
            align-items: center;
        }

        .fact-simple {
            width: 100%;
            max-width: 250px;
            justify-content: space-between;
        }
    }

   /* Safari Packages Section */
.safari-packages {
    background-color: var(--light);
    position: relative;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.package-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.package-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.package-badge {
    background: var(--primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark);
}

.package-duration {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.package-description {
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.package-features span {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text);
}

.package-features i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.package-price .from {
    font-size: 12px;
    color: var(--text);
    margin-bottom: 2px;
}

.package-price .amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.package-price .per-person {
    font-size: 12px;
    color: var(--text);
}

.packages-cta {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.packages-cta p {
    margin-bottom: 20px;
    color: var(--text);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .package-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .package-price {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .package-content {
        padding: 20px;
    }
    
    .package-content h3 {
        font-size: 20px;
    }
    
    .package-price .amount {
        font-size: 22px;
    }
}

/* Floating Popup Styles */
.safari-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 280px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(117, 104, 44, 0.1);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.popup-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f6f2;
    position: relative;
}

.popup-header .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    border: 2px solid #75682C;
}

.popup-header .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #4b3e1b;
    margin: 0;
}

.status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #555;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s infinite;
}

.popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    color: #555;
}

.popup-body {
    padding: 15px;
    text-align: center;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    justify-content: center;
}

.tag {
    background: rgba(117, 104, 44, 0.1);
    color: #75682C;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    background: #25D366;
    color: white;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    gap: 6px;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(1deg); }
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

/* Responsive */
@media (max-width: 480px) {
    .safari-popup { width: 90%; right: 5%; bottom: 20px; }
}








/*Frequenlty asked Questions*/

  .safari-faq-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
        }
        
        .safari-section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .safari-subtitle {
            color:  #1a1a1a;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: block;
            margin-bottom: 10px;
        }
        
        .safari-section-title h2 {
            font-size: 2.5rem;
            color:  #1a1a1a;
            margin-bottom: 15px;
        }
        
        .safari-section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .safari-faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .safari-faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            background: #F6F4F2;
            transition: transform 0.3s ease;
        }
        
        .safari-faq-item:hover {
            transform: translateY(-3px);
        }
        
        .safari-faq-question {
            padding: 22px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .safari-faq-question:hover {
            background-color: #f5f9f7;
        }
        
        .safari-faq-question h4 {
            font-size: 18px;
            color: #1a1a1a;
            font-weight: 600;
            margin: 0;
            flex: 1;
            padding-right: 20px;
        }
        
        .safari-faq-toggle {
            font-size: 20px;
            color:  #1a1a1a;
            font-weight: bold;
            transition: transform 0.3s ease;
        }
        
        .safari-faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: #fff;
        }
        
        .safari-faq-answer.active {
            padding: 20px 25px;
            max-height: 300px;
        }
        
        .safari-faq-answer p {
            margin: 0;
            color: #555;
            line-height: 1.7;
        }
        
        .safari-faq-cta {
            text-align: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #e0e6e2;
        }
        
        .safari-faq-cta p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            color:  #1a1a1a;
            font-weight: 500;
        }
        
        .safari-btn-primary {
            display: inline-block;
            padding: 14px 35px;
            background-color:  #75682C;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(58, 106, 76, 0.3);
        }
        
        .safari-btn-primary:hover {
            background-color:  #75682C;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(58, 106, 76, 0.4);
        }
        
        /* Animation for toggle icon */
        .safari-faq-toggle.rotate {
            transform: rotate(45deg);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .safari-section-title h2 {
                font-size: 2rem;
            }
            
            .safari-faq-question {
                padding: 18px 20px;
            }
            
            .safari-faq-question h4 {
                font-size: 16px;
            }
            
            .safari-faq-answer.active {
                padding: 15px 20px;
            }
        }
        
        /* Decorative elements */
        .safari-decoration {
            text-align: center;
            margin: 25px 0;
        }
        
        .safari-decoration i {
            color: #1a1a1a;
            font-size: 24px;
            margin: 0 10px;
        }

/*Frequenlty asked Questions end*/

/* Blog Article Section Styles */
.blog-article-section {
    padding: 100px 0 80px;
    background: var(--white);
}

.article-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.article-category {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-header h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    color: var(--text);
    font-size: 14px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta i {
    color: var(--primary);
}

.featured-image {
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
}

/* Only center headings with lines (h2) */
.article-content h2 {
    font-size: 28px;
    margin: 45px 0 20px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 12px;
    text-align: center;
}

.article-content h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Keep h3 and other headings left aligned */
.article-content h3 {
    font-size: 22px;
    margin: 35px 0 15px;
    color: var(--dark);
}

.article-content p {
    margin-bottom: 20px;
}

.intro-quote {
    margin: 30px 0 40px;
    padding: 30px;
    background: rgba(117, 104, 44, 0.05);
    border-left: 4px solid var(--secondary);
    border-radius: 4px;
}

blockquote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    color: var(--dark);
    margin: 0;
    padding: 0;
    quotes: "“" "”" "‘" "’";
}

blockquote:before {
    content: open-quote;
    font-size: 40px;
    color: var(--secondary);
    line-height: 0;
    margin-right: 10px;
    vertical-align: -0.4em;
}

.highlight-box {
    background: rgba(117, 104, 44, 0.08);
    border-radius: 8px;
    padding: 25px 25px 25px 85px;
    margin: 30px 0;
    position: relative;
}

.highlight-box.secondary {
    background: rgba(224, 179, 84, 0.1);
}

.highlight-icon {
    position: absolute;
    left: 25px;
    top: 25px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.highlight-box p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

.stat-box-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-box {
    background: var(--light);
    padding: 25px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.stat-box h4 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-box p {
    margin: 0;
    font-size: 14px;
    color: var(--text);
}

.image-with-caption {
    margin: 30px 0;
}

.image-with-caption img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-with-caption p {
    text-align: center;
    font-style: italic;
    color: var(--text);
    margin-top: 10px;
    font-size: 14px;
}

.article-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.article-content strong {
    color: var(--dark);
}

.article-cta {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 50px 0 30px;
}

.article-cta h3 {
    margin-top: 0;
    color: var(--primary);
}

.article-cta p {
    margin-bottom: 20px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tags span {
    font-weight: 600;
    color: var(--dark);
}

.tags a {
    background: var(--light);
    color: var(--text);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tags a:hover {
    background: var(--primary);
    color: var(--white);
}

.social-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-share span {
    font-weight: 600;
    color: var(--dark);
}

.social-share a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-share a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .article-header h1 {
        font-size: 32px;
    }
    
    .featured-image img {
        height: 400px;
    }
    
    .stat-box-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-article-section {
        padding: 80px 0 60px;
    }
    
    .article-header h1 {
        font-size: 28px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .featured-image img {
        height: 300px;
    }
    
    .article-content {
        font-size: 16px;
    }
    
    .article-content h2 {
        font-size: 24px;
    }
    
    .article-content h3 {
        font-size: 20px;
    }
    
    .highlight-box {
        padding: 20px 20px 20px 70px;
    }
    
    .highlight-icon {
        left: 15px;
        top: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .stat-box-container {
        grid-template-columns: 1fr;
    }
    
    .image-with-caption img {
        height: 300px;
    }
    
    .article-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .tags {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .article-header h1 {
        font-size: 24px;
    }
    
    .featured-image img {
        height: 250px;
    }
    
    blockquote {
        font-size: 18px;
    }
    
    .article-cta {
        padding: 20px;
    }
}

/*article end*/

:root {
    --primary: #75682C;
    --secondary: #e0b354;
    --accent: #d4a762;
    --dark: #1a1a1a;
    --light: #F6F4F2;
    --white: #F6F4F2;
    --text: #444444;
    --heading: 'Mazzard H', 'Futura', 'Trebuchet MS', Arial, sans-serif;
    --body: 'Mazzard H', 'Futura', 'Trebuchet MS', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--body);
}

body {
    background-color: #f5f5f5;
    color: var(--dark);
    line-height: 1.6;
}

/* Kilimanjaro Expedition Section - UPDATED */
.kilimanjaro-expedition {
    padding: 60px 0;
}

.expedition-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.expedition-content {
    margin-top: 30px;
}

.expedition-summary {
    margin-bottom: 40px;
    text-align: left;
}

.expedition-summary > p {
    max-width: 800px;
    margin: 0 auto 25px;
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
}

.expedition-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.highlight-card {
    padding: 20px 15px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-3px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 12px;
}

.highlight-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--dark);
    font-family: var(--heading);
}

.highlight-card p {
    font-size: 14px;
}

.trekking-schedule {
    border-radius: 10px;
    padding: 30px;
    max-width: 950px;
    margin: 0 auto;
}

.schedule-heading {
    font-size: 30px;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
    font-family: var(--heading);
}

.schedule-heading:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.trek-day {
    margin-bottom: 50px;
    padding-bottom: 30px;
    background-color: #F6F4F2;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(117, 104, 44, 0.05);
}

.trek-day:last-child {
    margin-bottom: 0;
}

.day-header-section {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.day-indicator {
    min-width: 70px;
    height: 35px;
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
    padding: 0 12px;
    font-size: 14px;
}

.day-title-text {
    font-size: 18px;
    color: var(--dark);
    margin: 0;
    font-family: var(--heading);
}

.day-content-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.day-description {
    flex: 1;
    padding-right: 30px;
    position: relative;
}

.day-description:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: var(--accent);
}

.day-description p {
    margin-bottom: 15px;
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

.day-visual {
    flex: 0 0 40%;
    max-width: 40%;
}

.day-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(117, 104, 44, 0.1);
}

.day-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--accent);
    justify-content: center;
}

.day-stats p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

/* MOBILE RESPONSIVE STYLES - UPDATED TO MATCH INCLUSIONS/EXCLUSIONS */
@media (max-width: 768px) {
    .kilimanjaro-expedition {
        padding: 40px 0;
    }

    .expedition-container {
        padding: 0 15px; /* Match inclusions/exclusions container padding */
    }

    .expedition-summary > p {
        text-align: left;
        margin: 20px 20px 20px 20px;
        max-width: 100%;
        font-size: 15px;
        line-height: 1.6;
    }
    
    .expedition-highlights {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 15px;
    }
    
    .trekking-schedule {
        padding: 20px 15px; /* Match inclusions/exclusions padding */
        margin: 0 auto;
    }
    
    .schedule-heading {
        font-size: 24px;
        margin-bottom: 25px;
        padding-bottom: 10px;
    }
    
    .schedule-heading:after {
        width: 35px;
        height: 2px;
        bottom: -6px;
    }
    
   .trek-day {
    margin-bottom: 35px; /* Increased spacing */
    padding: 25px 20px; /* Increased padding */
    padding-bottom: 25px;
    background-color: #F6F4F2;
    border-radius: 10px; /* Slightly larger radius */
    box-shadow: 0 3px 12px rgba(0,0,0,0.08); /* Enhanced shadow */
    border: 1px solid rgba(117, 104, 44, 0.08);
}
    .day-header-section {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 12px;
    }
    
    .day-indicator {
        margin-bottom: 8px;
        margin-right: 0;
        min-width: 65px;
        font-size: 13px;
        padding: 0 10px;
        height: 32px;
    }
    
    .day-content-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .day-description {
        padding-right: 0;
    }
    
    .day-description:after {
        display: none;
    }
    
    .day-description p {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.6;
    }
    
    .day-visual {
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .day-visual img {
        height: 200px;
    }
    
    .day-stats {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        margin-top: 12px;
        padding-top: 12px;
    }
    
    .day-stats p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .trekking-schedule {
        padding: 15px 12px; /* Even more consistent with inclusions/exclusions */
    }
    
    .trek-day {
        padding: 15px 12px;
        margin-bottom: 25px;
    }
    
    .day-indicator {
        min-width: 60px;
        height: 30px;
        font-size: 12px;
        padding: 0 8px;
    }
    
    .day-title-text {
        font-size: 16px;
    }
    
    .day-visual img {
        height: 180px;
    }
    
    .day-stats {
        gap: 6px;
    }
    
    .expedition-container {
        padding: 0 12px;
    }
    
    .schedule-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

/* Small mobile devices */
@media (max-width: 360px) {
    .trekking-schedule {
        padding: 12px 10px;
    }
    
    .trek-day {
        padding: 12px 10px;
        margin-bottom: 20px;
    }
    
    .day-indicator {
        min-width: 55px;
        height: 28px;
        font-size: 11px;
    }
    
    .day-title-text {
        font-size: 15px;
    }
    
    .day-visual img {
        height: 160px;
    }
    
    .day-description p {
        font-size: 13px;
    }
}

    /* About Section Specific Styles - CENTERED VERSION */
    .about-section {
        padding: 100px 0;
        background: var(--white);
        text-align: center;
    }

    .about-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .about-text {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-text h2 {
        color:#1a1a1a;
        font-size: 32px;
        margin-bottom: 20px;
        text-align: center;
    }

    .about-text p {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.8;
        text-align: center;
        max-width: 800px;
    }

    .about-features {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin: 30px 0;
        justify-content: center;
    }

    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        flex: 1;
        min-width: 200px;
        max-width: 250px;
        text-align: center;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        background: var(--primary);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .feature-text h4 {
        font-size: 18px;
        margin-bottom: 5px;
        color: var(--dark);
    }

    .feature-text p {
        font-size: 14px;
        margin: 0;
        color: var(--text);
    }

    /* Responsive adjustments for centered layout */
    @media (max-width: 768px) {
        .about-features {
            flex-direction: column;
            align-items: center;
        }
        
        .feature-item {
            min-width: 100%;
            max-width: 300px;
        }
    }


 /*itinerary starts*/
    .tanzania-itinerary {
        padding: 60px 0;
        background-color: var(--light);
    }
    
    .itinerary-content {
        margin-top: 30px;
    }
    
    .itinerary-overview {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .itinerary-overview > p {
        max-width: 800px;
        margin: 0 auto 25px;
        font-size: 16px;
        color: var(--text);
        line-height: 1.7;
    }
    
    .overview-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        margin-top: 25px;
    }
    
    .feature-box {
        background: var(--white);
        padding: 20px 15px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }
    
    .feature-box:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        background: var(--primary);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin: 0 auto 12px;
    }
    
    .feature-box h4 {
        font-size: 16px;
        margin-bottom: 8px;
        color: var(--dark);
    }
    
    .feature-box p {
        color: var(--text);
        font-size: 14px;
    }
    
    .day-to-day-itinerary {
        background: var(--white);
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        max-width: 950px;
        margin: 0 auto;
    }
    
    .itinerary-heading {
        font-size: 30px;
        color:#1a1a1a;
        margin-bottom: 30px;
        text-align: center;
        position: relative;
        padding-bottom: 12px;
    }

    
    
    .itinerary-heading:after {
        content: '';
        position: absolute;
        width: 40px;
        height: 2px;
        background: var(--secondary);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .itinerary-day {
        margin-bottom: 30px;
    }
    
    .day-header {
        display: flex;
        align-items: center;
        margin-bottom: 14px;
    }
    
    .day-number {
        min-width: 70px;
        height: 35px;
        background: var(--primary);
        color: var(--white);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin-right: 12px;
        flex-shrink: 0;
        padding: 0 12px;
        font-size: 14px;
    }
    
    .day-title {
        font-size: 18px;
        color: var(--dark);
        margin: 0;
    }
    
    .day-content p {
        margin-bottom: 15px;
        color: var(--text);
        line-height: 1.6;
        font-size: 16px;
    }
    
    .day-images {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 20px 0;
    }
    
    .day-images img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .day-details {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px dashed #e0e0e0;
        justify-content: center;
    }
    
    .day-details p {
        margin-bottom: 0;
        font-size: 14px;
        color: var(--primary);
        font-weight: 500;
    }
    
    .itinerary-divider {
        height: 1px;
        background: #eaeaea;
        margin: 30px 0;
    }
    
    @media (max-width: 768px) {
        .tanzania-itinerary {
            padding: 40px 0;
        }

        .itinerary-overview > p {
        text-align: left; /* Left align only the intro paragraph on mobile */
        margin: 3 3 20px 3; /* Remove auto margins for left alignment */
        max-width: 100%; /* Full width on mobile */
    }
        
        .overview-features {
            grid-template-columns: 1fr;
            text-align: left;
        }
        
        .day-header {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .day-number {
            margin-bottom: 8px;
            margin-right: 0;
            min-width: 65px;
            font-size: 13px;
            padding: 0 10px;
        }
        
        .day-images {
            grid-template-columns: 1fr;
            gap: 10px;
        }
        
        .day-images img {
            height: 160px;
        }
        
        .day-details {
            flex-direction: column;
            gap: 8px;
            align-items: flex-start;
        }
        
        .day-to-day-itinerary {
            padding: 20px 15px;
        }
        
        .day-content p {
            font-size: 14px;
        }
    }


/*itinerary ends*/

/*Inclusion and exclusion*/

.inclusion-exclusion-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.inclusion-exclusion-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.inclusion-box, .exclusion-box {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inclusion-box:hover, .exclusion-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ie-header {
    padding: 25px 30px;
    text-align: center;
    background: linear-gradient(to right, rgba(76, 175, 80, 0.05), rgba(76, 175, 80, 0.1));
    border-bottom: 1px solid #f0f0f0;
}

/* === Exclusion box new colors === */
.exclusion-box .ie-header {
    background: linear-gradient(to right, rgba(117, 104, 44, 0.08), rgba(117, 104, 44, 0.08));
}

.ie-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
}

.ie-icon.include {
    background: rgba(76, 175, 80, 0.15);
    color: #75682C;
}

.ie-icon.exclude {
    background: rgba(117, 104, 44, 0.08);
    color: #75682C;
}

.ie-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark);
}

.ie-header p {
    color: var(--text);
    font-size: 15px;
    margin: 0;
}

.ie-content {
    padding: 25px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ie-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.ie-bullet {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.inclusion-box .ie-bullet {
    background: rgba(76, 175, 80, 0.15);
    color: #75682C;
}

.exclusion-box .ie-bullet {
    background: rgba(117, 104, 44, 0.08);
    color: #75682C;
}

.ie-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.ie-text p {
    font-size: 14px;
    color: var(--text);
    margin: 0;
    line-height: 1.5;
}

.ie-note {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px;
    background: rgba(117, 104, 44, 0.08);
    border-radius: 8px;
    text-align: center;
}

.ie-note p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
}

@media (max-width: 992px) {
    .inclusion-exclusion-container {
        grid-template-columns: 1fr;
        max-width: 700px;
    }

    .ie-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .inclusion-exclusion-section {
        padding: 60px 0;
    }

    .ie-header {
        padding: 20px;
    }

    .ie-content {
        padding: 20px;
    }

    .ie-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .ie-header h3 {
        font-size: 22px;
    }

    .ie-item {
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .ie-header {
        padding: 15px;
    }

    .ie-content {
        padding: 15px;
        gap: 15px;
    }

    .ie-item {
        flex-direction: row; /* keep bullet + text side by side */
        text-align: left;   /* align text left */
        gap: 10px;
    }

    .ie-bullet {
        margin: 0; /* remove auto-centering */
    }
}

 /* pop-up-booking form */



        /* Simple number input container */
        .number-input-container {
            display: flex;
            align-items: center;
        }
        
        .number-btn {
            width: 36px;
            height: 36px;
            background: #f0f0f0;
            border: 1px solid #ddd;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .number-btn.minus {
            border-radius: 6px 0 0 6px;
            border-right: none;
        }
        
        .number-btn.plus {
            border-radius: 0 6px 6px 0;
            border-left: none;
        }
        
        .number-input {
            width: 60px;
            height: 36px;
            border: 1px solid #ddd;
            text-align: center;
            font-size: 16px;
            padding: 0;
            margin: 0;
        }

    /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 1000;
            transition: all 0.3s ease;
            background-color: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(10px);
        }
        
        header.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 1px;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            color: var(--white);
            font-weight: 500;
            position: relative;
            font-size: 15px;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            color: var(--white);
            cursor: pointer;
            z-index: 1001;
        }
 

/*packages and blogs hero section*/


/* Hero Section - ALTERNATE */
.hero-altoo {
    height:90vh;
    min-height: 100px;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-altoo-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-altoo-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-altoo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
}

.hero-altoo-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-altoo h1 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    line-height: 1.3;
}

.hero-altoo p {
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
    color: rgba(255,255,255,0.9);
}

.hero-altoo-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

/* Hero Section - ALTERNATE */
.hero-alt {
    height: 120vh;
    min-height: 100px;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-alt-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-alt-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-alt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
}

.hero-alt-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-alt h1 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    line-height: 1.3;
}

.hero-alt p {
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
    color: rgba(255,255,255,0.9);
}

.hero-alt-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    flex-wrap: wrap;
}






/* Hero Section - UPDATED */
.hero {
    height: 120vh;
    min-height: 100px;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}


.hero-pages{
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    line-height: 1.3;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
    color: rgba(255,255,255,0.9);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    background-color: var(--white);
    position: relative;
    z-index: 1;
}

.features:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--light);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: rgba(42, 92, 69, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--secondary);
    color: var(--dark);
    transform: rotateY(180deg);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.feature-card p {
    color: var(--text);
    font-size: 14px;
}

/* Destinations Section */
.destinations {
    background-color: #f8f8f8;
    position: relative;
    padding: 100px 0;
}

.destinations:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--light);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
    z-index: -1;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.destination-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.destination-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.destination-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover .image-container img {
    transform: scale(1.08);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 25px;
    color: var(--white);
}

.destination-overlay h3 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
}

.destination-overlay p {
    color: var(--secondary);
    font-weight: 500;
    margin: 0;
    font-size: 16px;
}

.destination-content {
    padding: 25px;
}

.destination-content p {
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.6;
}

.destination-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.destination-features span {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--primary);
    font-weight: 500;
}

.destination-features i {
    margin-right: 10px;
    color: var(--secondary);
    font-size: 16px;
    width: 20px;
}

/* Safari Types Section */
.safari-types {
    background-color: var(--light);
    position: relative;
}

.safari-types:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    z-index: 1;
}

.safari-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.safari-type-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.safari-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.safari-type-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.safari-type-card:hover .safari-type-img {
    transform: scale(1.05);
}

.safari-type-content {
    padding: 20px;
}

.safari-type-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.safari-type-content p {
    color: var(--text);
    margin-bottom: 15px;
    font-size: 14px;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    gap: 10px;
}

.tour-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        z-index: 999;
        padding-top: 80px;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .features-grid,
    .safari-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .destination-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 700px;
        padding-top: 70px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
        padding: 10px 20px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .section-title .subtitle {
        font-size: 13px;
    }
    
    .features:before,
    .safari-types:before {
        height: 60px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .destination-image {
        height: 320px;
    }
    
    .destinations:before {
        height: 80px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .safari-type-img {
        height: 180px;
    }
    
    .tour-price {
        font-size: 18px;
    }
    
    .btn {
        font-size: 13px;
    }
    
    .destination-image {
        height: 280px;
    }
    
    .destination-overlay {
        padding: 20px;
    }
    
    .destination-content {
        padding: 20px;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .features-grid,
    .safari-types-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2:after {
        width: 40px;
        height: 2px;
        bottom: -6px;
    }
}

/* Tanzania Guide Section */
.tanzania-guide {
    padding: 80px 0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tanzania-guide h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.tanzania-guide .description {
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.options-container {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.option {
    flex: 1;
    max-width: 500px;
}

.option-image {
    height: 300px;
    overflow: hidden;
    margin-bottom: 25px;
}

.option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.option:hover .option-image img {
    transform: scale(1.03);
}

.option h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.option .subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.divider {
    width: 50px;
    height: 1px;
    background: #ddd;
    margin: 0 auto 20px;
}

.cta-button {
    color: #75682C;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
}

.cta-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #2a5c45;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.cta-button:hover::after {
    transform: scaleX(1);
}

/* Tanzania Guide Section */
.tanzania-guide {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.tanzania-guide-header h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.tanzania-guide-header p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.6;
}

.guide-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.guide-card {
    flex: 1;
    min-width: 250px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.card-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.card-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 20px 0;
}

.card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #2a5c45;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.card-button svg {
    transition: transform 0.3s;
}

.card-button:hover {
    color: #d4a336;
}

.card-button:hover svg {
    transform: translateX(3px);
}
/* Instagram Section Styles */
        .instagram-section {
            padding: 60px 0;
            background: #f8f8f8;
            text-align: center;
        }

        .instagram-section h2 {
            font-size: 28px;
            color: #1a1a1a;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .instagram-section h2:after {
            content:  #1a1a1a;
            position: absolute;
            width: 50px;
            height: 2px;
            background: #e0b354;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* NEW: Instagram button styles */
        .instagram-follow-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: white;
            text-decoration: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 3rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(188, 24, 136, 0.4);
        }

        .instagram-follow-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(188, 24, 136, 0.6);
        }

        .instagram-follow-btn i {
            font-size: 1.4rem;
            margin-right: 10px;
        }
        /* END of new button styles */

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .instagram-post {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 1/1;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .insta-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .insta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(42, 92, 69, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .instagram-post:hover .insta-overlay {
            opacity: 1;
        }

        .instagram-post:hover .insta-image {
            transform: scale(1.05);
        }

        .insta-link {
            color: white;
            font-size: 24px;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .insta-link:hover {
            transform: scale(1.2);
        }



        /* Call to Action Styles */
/* Self-contained styles with specific class names */
        .travolo-cta-container {
            width: 100%;
            
            margin-top: 0px;
            text-align: center;
            font-family: 'Mazzard H', 'Futura', 'Trebuchet MS', Arial, sans-serif;
            background-color: #f8f8f8;
        }
        
        /* CTA Section Styles */
        .travolo-cta-section {
            border-radius: 8px;
            padding: 60px 40px;
            position: relative;
        }
        
        
        
        .travolo-cta-title {
            color:  #1a1a1a;
            margin-bottom: 15px;
            font-size: 32px;
            font-weight: 700;
            font-family: 'Mazzard H', 'Futura', 'Trebuchet MS', Arial, sans-serif;
        }
        
        .travolo-cta-subtitle {
            color: #444444;
            margin-bottom: 40px;
            font-size: 18px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-family: 'Mazzard H', 'Futura', 'Trebuchet MS', Arial, sans-serif;
        }
        
        .travolo-cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .travolo-cta-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 18px 25px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            width: 200px;
            text-align: center;
            
            position: relative;
            overflow: hidden;
            font-family: 'Mazzard H', 'Futura', 'Trebuchet MS', Arial, sans-serif;
        }
        
        .travolo-cta-btn:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
          
            z-index: 1;
        }
        
        .travolo-cta-btn i {
            font-size: 28px;
            margin-bottom: 12px;
            z-index: 2;
        }
        
        .travolo-cta-btn span {
            font-size: 16px;
            z-index: 2;
        }
        
        .travolo-cta-btn .travolo-small-text {
            font-size: 12px;
            font-weight: 400;
            margin-top: 5px;
            opacity: 0.9;
        }
        
        .travolo-whatsapp-btn {
            background: #25D366;
            color: #ffffff;
        }
        
        .travolo-whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
        }
        
        .travolo-enquire-btn {
            background: #e0b354;
            color: #1a1a1a;
        }
        
        .travolo-enquire-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(224, 179, 84, 0.25);
        }
        
        .travolo-call-btn {
            background: #e0b354;
            color: #1a1a1a;
        }
        
        .travolo-call-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(42, 92, 69, 0.25);
        }
        
        .travolo-cta-footer {
            margin-top: 30px;
            color: #444444;
            font-size: 14px;
            font-style: italic;
            font-family: 'Mazzard H', 'Futura', 'Trebuchet MS', Arial, sans-serif;
        }
        
        @media (max-width: 768px) {
            .travolo-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .travolo-cta-section {
                padding: 40px 20px;
            }
            
            .travolo-cta-title {
                font-size: 28px;
            }
            
            .travolo-cta-subtitle {
                font-size: 16px;
            }
            
            .travolo-cta-btn {
                width: 100%;
                max-width: 280px;
            }
        }

        /* Blog Section Styles */
.blog-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 32px;
    color: #2a5c45;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: #e0b354;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: #666;
    font-size: 16px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2a5c45;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.blog-date {
    color: #888;
    font-size: 12px;
}

.blog-link {
    color:#75682C;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #e0b354;
}

.blog-cta {
    text-align: center;
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .options-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .tanzania-guide h1 {
        font-size: 28px;
    }
    
    .option h3 {
        font-size: 20px;
    }
    
    .guide-cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .guide-card {
        width: 100%;
        max-width: 350px;
        margin-bottom: 20px;
    }
    
    .tanzania-guide-header h1 {
        font-size: 28px;
    }
    
    .card-image {
        height: 200px;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .instagram-section h2 {
        font-size: 24px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}
/* Responsive Styles for CTA */
     
/* Blog Articles Section */
.blog-articles {
    background-color: #ffff;
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.blog-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.blog-content-overlay {
    color: var(--white);
}

.blog-category {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0;
    color: var(--white);
}

.blog-excerpt {
    padding: 25px;
}

.blog-excerpt p {
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.6;
}

.blog-link {
    color: #75682C;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-link i {
    margin-left: 8px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: var(--secondary);
}

.blog-link:hover i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .blog-image {
        height: 250px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .blog-overlay {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .blog-image {
        height: 220px;
    }
    
    .blog-title {
        font-size: 16px;
    }
    
    .blog-excerpt {
        padding: 20px;
    }
}


/* Blog Articles Section */
.blog-articles {
    background-color: var(--light);
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.blog-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.blog-content-overlay {
    color: var(--white);
}

.blog-category {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0;
    color: var(--white);
}

.blog-excerpt {
    padding: 25px;
}

.blog-excerpt p {
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.6;
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-link i {
    margin-left: 8px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: var(--secondary);
}

.blog-link:hover i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .blog-image {
        height: 250px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .blog-overlay {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .blog-image {
        height: 220px;
    }
    
    .blog-title {
        font-size: 16px;
    }
    
    .blog-excerpt {
        padding: 20px;
    }
}
