/* Page Headers */
.page-header {
    height: 50vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 40, 24, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 20px;
}

.page-header-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header-content p {
    font-size: 18px;
    opacity: 0.9;
}

.services-header {
    background: linear-gradient(rgba(26, 77, 46, 0.9), rgba(13, 40, 24, 0.95)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%231a4d2e" width="1200" height="400"/></svg>');
}

.about-header {
    background: linear-gradient(rgba(26, 77, 46, 0.9), rgba(13, 40, 24, 0.95)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%231a4d2e" width="1200" height="400"/></svg>');
}

.destinations-header {
    background: linear-gradient(rgba(26, 77, 46, 0.9), rgba(13, 40, 24, 0.95)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%231a4d2e" width="1200" height="400"/></svg>');
}

.contact-header {
    background: linear-gradient(rgba(26, 77, 46, 0.9), rgba(13, 40, 24, 0.95)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%231a4d2e" width="1200" height="400"/></svg>');
}

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.service-detail-icon {
    font-size: 60px;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content > p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 17px;
}

.vehicle-types,
.bus-uses,
.corporate-features,
.airport-services,
.tour-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.vehicle-type h4,
.bus-uses h4,
.corp-feature h4,
.airport-service h4,
.tour-package h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.vehicle-type p,
.corp-feature p,
.airport-service p,
.tour-package p {
    color: var(--gray);
    font-size: 14px;
}

.uses-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.uses-grid span {
    background: var(--light-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-color);
}

.tour-package {
    position: relative;
    background: var(--light-color);
    padding: 15px;
    border-radius: var(--border-radius);
}

.tour-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 10px;
    margin-top: 8px;
}

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

.service-features li {
    color: var(--text-color);
    font-size: 15px;
}

.services-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px;
    border-radius: var(--border-radius);
    text-align: center;
}

.services-cta h2 {
    margin-bottom: 15px;
}

.services-cta p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page */
.story-section {
    padding: 80px 0;
    background: var(--white);
}

.about-story {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.story-image {
    display: flex;
    justify-content: center;
}

.about-img-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    font-weight: 600;
}

.about-story-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.mission-vision {
    padding: 80px 0;
    background: var(--light-color);
}

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

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.mv-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.mv-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.mv-card p {
    color: var(--gray);
    line-height: 1.7;
}

.why-choose-section {
    padding: 80px 0;
    background: var(--white);
}

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

.why-card {
    position: relative;
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
}

.why-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.why-card p {
    color: var(--gray);
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background: var(--light-color);
}

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

.team-member {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.team-avatar {
    font-size: 60px;
    margin-bottom: 20px;
}

.team-member h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.team-member p {
    color: var(--gray);
    font-size: 14px;
}

.stats-section {
    padding: 60px 0;
    background: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--white);
    font-size: 16px;
}

.cta-section {
    padding: 80px 0;
    background: var(--light-color);
    text-align: center;
}

.cta-section h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 18px;
}

/* Destinations Page */
.featured-destination {
    padding: 80px 0;
    background: var(--white);
}

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

.featured-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-text h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.featured-subtitle {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 25px;
}

.featured-text > p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.highlights {
    margin-bottom: 30px;
}

.highlights h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.highlights ul {
    list-style: none;
}

.highlights li {
    color: var(--gray);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.featured-img {
    height: 100%;
}

.destination-placeholder {
    height: 450px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    font-weight: 600;
}

.victoria-falls-large {
    background: linear-gradient(135deg, #4a90a4, #2d5a6b);
}

.destination-featured-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.parks-section {
    padding: 80px 0;
    background: var(--light-color);
}

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

.park-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.park-image {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.luangwa-park {
    background: linear-gradient(135deg, #8b7355, #5d4e37);
}

.kafue-park {
    background: linear-gradient(135deg, #4a7c59, #2d4a35);
}

.lower-zambezi-park {
    background: linear-gradient(135deg, #6b8e23, #4a5d23);
}

.park-content {
    padding: 25px;
}

.park-content h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 5px;
}

.park-location {
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.park-content > p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.park-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.park-highlights span {
    background: var(--light-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    color: var(--primary-color);
}

.cities-section {
    padding: 80px 0;
    background: var(--white);
}

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

.city-card {
    background: var(--light-color);
    padding: 35px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--white);
}

.city-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.city-card h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.city-type {
    color: var(--secondary-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.city-card p {
    color: var(--gray);
    line-height: 1.7;
}

.wonders-section {
    padding: 80px 0;
    background: var(--light-color);
}

.wonders-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.wonder-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.wonder-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.wonder-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.wonder-info p {
    color: var(--gray);
    line-height: 1.7;
}

.destinations-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    text-align: center;
}

.destinations-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.destinations-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    font-size: 18px;
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-section > p {
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-card-icon {
    font-size: 35px;
    flex-shrink: 0;
}

.contact-card-content h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-card-content > p {
    color: var(--text-color);
    font-weight: 500;
}

.contact-detail {
    color: var(--gray);
    font-size: 14px;
    margin-top: 5px;
}

.social-links {
    padding: 30px;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

.social-links h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.social-links > p {
    color: var(--gray);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.form-wrapper {
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
}

.form-wrapper h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-wrapper > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page-form .form-group {
    margin-bottom: 0;
}

.contact-page-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.map-section {
    padding: 80px 0;
    background: var(--light-color);
}

.map-embed {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-embed iframe {
    display: block;
}

.map-info-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 320px;
}

.map-info-content {
    text-align: center;
}

.map-info-content .map-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.map-info-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.map-info-content p {
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 14px;
}

.map-info-content .btn-secondary {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.map-info-content .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.map-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.map-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.map-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.map-content a {
    display: inline-block;
    margin-top: 20px;
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
}

.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: #e8e8e8;
}

.faq-question h4 {
    color: var(--primary-color);
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px;
    color: var(--gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px 25px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Responsive for pages */
@media (max-width: 900px) {
    .contact-layout,
    .featured-content,
    .about-story {
        grid-template-columns: 1fr;
    }

    .service-detail {
        flex-direction: column;
    }

    .service-detail-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }

    .page-header-content h1 {
        font-size: 32px;
    }

    .story-image {
        order: -1;
    }
}

@media (max-width: 600px) {
    .services-cta,
    .form-wrapper {
        padding: 25px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }

    .map-info-overlay {
        position: static;
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin-top: 20px;
    }

    .map-embed iframe {
        height: 300px;
    }
}
}