/* ==========================================
   UNVEILED TANZANIA SAFARIS - MAIN STYLES
   ========================================== */

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d6a4f;
    --secondary-color: #40916c;
    --accent-color: #d8f3dc;
    --gold-color: #d4a373;
    --dark-color: #1b4332;
    --text-color: #333;
    --light-text: #fff;
    --bg-light: #f8f9fa;
    --bg-white: #fff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--gold-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--primary-color) !important;
    color: var(--light-text) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px !important;
    transition: var(--transition) !important;
}

.nav-cta:hover {
    background-color: var(--dark-color) !important;
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* ==========================================
   PAGE HERO SECTIONS
   ========================================== */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1547970810-dc1eac37d174?w=1600');
}

.safaris-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1600');
}

.kilimanjaro-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1493246507139-91e8fad9978e?w=1600');
}

.zanzibar-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600');
}

.destinations-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1600');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s backwards;
}

/* ==========================================
   SECTION TITLES
   ========================================== */
.section-title {
    text-align: center;
    margin: 4rem 0 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

/* ==========================================
   BOOKING BAR
   ========================================== */
.booking-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    padding: 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-hover);
}

.booking-form {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--light-text);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group select,
.form-group input {
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.booking-search {
    background-color: var(--gold-color);
    color: var(--text-color);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.booking-search:hover {
    background-color: #c9a069;
    transform: translateY(-2px);
}

/* ==========================================
   HERO SECTION (INDEX)
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920') no-repeat center center/cover;
    background-attachment: fixed;
}

.hero-content {
    text-align: center;
    color: var(--light-text);
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #fff);
    border-radius: 15px;
    transition: var(--transition);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.mv-card {
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-white), var(--accent-color));
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

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

.mv-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mv-card p {
    line-height: 1.8;
    color: #555;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-content h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-price {
    color: var(--gold-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* ==========================================
   PACKAGES SECTION
   ========================================== */
.packages {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.packages-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.package-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--gold-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-content {
    padding: 1.5rem;
}

.package-content h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.package-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.package-details span {
    font-size: 0.9rem;
    color: #666;
}

.package-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
}

.book-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.book-btn:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--light-text);
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-item p {
    opacity: 0.9;
    line-height: 1.8;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--gold-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-weight: 600;
}

.author-info h5 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-item h5 {
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.contact-item span {
    color: #666;
    font-size: 0.95rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    color: var(--light-text);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--gold-color);
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--gold-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--light-text);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--gold-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ==========================================
   WHATSAPP BUTTON
   ========================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: var(--shadow-hover);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */
.our-story {
    padding: 5rem 0;
    background: var(--bg-white);
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.story-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-content .lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-content p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.mvv-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.mvv-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mvv-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.mvv-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mvv-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mvv-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mvv-points {
    list-style: none;
    text-align: left;
}

.mvv-points li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

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

.why-us {
    padding: 5rem 0;
    background: var(--bg-white);
}

.why-us-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-color), #fff);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

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

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-card p {
    color: #666;
    line-height: 1.8;
}

.our-team {
    padding: 5rem 0;
    background: var(--bg-light);
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-photo {
    height: 300px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--gold-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.achievements {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--light-text);
    position: relative;
}

.achievements-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-item {
    text-align: center;
    padding: 1.5rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 1rem;
    opacity: 0.9;
}

.partners {
    padding: 5rem 0;
    background: var(--bg-white);
}

.partners-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.partner-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--accent-color);
    transition: var(--transition);
}

.partner-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.partner-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.partner-item p {
    color: #666;
    font-size: 0.9rem;
}

/* ==========================================
   SAFARIS PAGE STYLES
   ========================================== */
.safari-overview {
    padding: 3rem 0;
    background: var(--bg-light);
}

.safari-types-nav {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.safari-tab {
    padding: 1rem 2rem;
    background: var(--bg-white);
    border: 2px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-color);
}

.safari-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.safari-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-text);
}

.safari-type-section {
    padding: 5rem 0;
    background: var(--bg-white);
    display: none;
}

.safari-type-section.active {
    display: block;
}

.safari-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.safari-header-content {
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-color), #fff);
    border-radius: 15px;
}

.safari-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gold-color);
    color: var(--text-color);
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.safari-header-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.safari-header-content p {
    line-height: 1.8;
    color: #666;
}

.safari-header-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.safari-features {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.safari-features h4 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(5px);
    background: var(--accent-color);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.safari-packages {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.safari-packages h4 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.packages-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.package-preview-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.package-preview-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-preview-card h5 {
    padding: 1rem 1rem 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.package-preview-card p {
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
}

.package-preview-card .price {
    display: block;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--light-text);
    font-weight: 600;
}

.safari-activities {
    padding: 5rem 0;
    background: var(--bg-light);
}

.activities-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.activity-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.activity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-card h4 {
    padding: 1rem;
    color: var(--primary-color);
}

.activity-card p {
    padding: 0 1rem 1rem;
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--light-text);
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    background-color: var(--light-text);
    color: var(--primary-color);
    border: 2px solid var(--light-text);
}

.cta-buttons .btn-primary:hover,
.cta-buttons .btn-secondary:hover {
    background-color: var(--gold-color);
    border-color: var(--gold-color);
    transform: translateY(-3px);
}

/* ==========================================
   KILIMANJARO PAGE STYLES
   ========================================== */
.kili-overview {
    padding: 3rem 0;
    background: var(--bg-light);
}

.kili-stats {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.kili-stat {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

.kili-intro {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.kili-intro-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.kili-intro-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.kili-intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.kili-features {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.climbing-routes {
    padding: 5rem 0;
    background: var(--bg-white);
}

.routes-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.route-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.route-header {
    position: relative;
    height: 200px;
}

.route-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.route-badge.popular { background: var(--gold-color); color: var(--text-color); }
.route-badge.classic { background: var(--secondary-color); color: var(--light-text); }
.route-badge.scenic { background: var(--primary-color); color: var(--light-text); }
.route-badge.quiet { background: #606c38; color: var(--light-text); }
.route-badge.ultimate { background: #283618; color: var(--light-text); }
.route-badge.challenge { background: #bc4749; color: var(--light-text); }

.route-content {
    padding: 1.5rem;
}

.route-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.route-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.route-details span {
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    border-radius: 15px;
    color: #666;
}

.route-content > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.route-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.route-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.route-content ul li {
    padding: 0.25rem 0 0.25rem 1.5rem;
    position: relative;
    color: #666;
    font-size: 0.9rem;
}

.route-content ul li::before {
    content: '🗹';
    position: absolute;
    left: 0;
}

.route-price {
    display: block;
    padding: 1rem;
    background: var(--accent-color);
    border-radius: 10px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
}

.kili-included {
    padding: 5rem 0;
    background: var(--bg-light);
}

.included-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.included-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.included-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.included-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.included-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.preparation {
    padding: 5rem 0;
    background: var(--bg-white);
}

.prep-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.prep-section {
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-color), #fff);
    border-radius: 15px;
}

.prep-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.prep-section p {
    color: #666;
    line-height: 1.8;
}

.climb-packages {
    padding: 5rem 0;
    background: var(--bg-light);
}

.packages-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.climb-package {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

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

.climb-package.featured {
    border: 3px solid var(--gold-color);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-color);
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
}

.climb-package .package-header h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.climb-package .package-header p {
    color: #666;
    margin-bottom: 1rem;
}

.climb-package .package-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.climb-package .package-details span {
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.climb-package > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.climb-package .package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.climb-package .package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.climb-package .package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.climb-package .package-features li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.success-stories {
    padding: 5rem 0;
    background: var(--bg-white);
}

.stories-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.story-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.story-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-author h5 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.story-author span {
    color: #999;
    font-size: 0.9rem;
}

/* ==========================================
   ZANZIBAR PAGE STYLES
   ========================================== */
.zanzibar-overview {
    padding: 5rem 0;
    background: var(--bg-white);
}

.zanzibar-intro {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.intro-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.intro-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.zanzibar-features {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.beach-destinations {
    padding: 5rem 0;
    background: var(--bg-light);
}

.beaches-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.beach-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.beach-image {
    position: relative;
    height: 200px;
}

.beach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beach-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    background: var(--gold-color);
    color: var(--text-color);
}

.beach-content {
    padding: 1.5rem;
}

.beach-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.beach-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.beach-content ul {
    list-style: none;
    margin-top: 1rem;
}

.beach-content ul li {
    padding: 0.25rem 0 0.25rem 1.5rem;
    position: relative;
    color: #666;
    font-size: 0.9rem;
}

.beach-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.zanzibar-activities {
    padding: 5rem 0;
    background: var(--bg-white);
}

.activities-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.activity-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.activity-item:hover {
    transform: translateY(-5px);
    background: var(--accent-color);
}

.activity-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.activity-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.activity-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.zanzibar-packages {
    padding: 5rem 0;
    background: var(--bg-light);
}

.zanzibar-package {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.zanzibar-package.featured {
    border: 3px solid var(--gold-color);
}

.zanzibar-package .package-header h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.zanzibar-package .package-header p {
    color: #666;
    margin-bottom: 1rem;
}

.package-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.package-details span {
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.zanzibar-package > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.package-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.best-time {
    padding: 5rem 0;
    background: var(--bg-white);
}

.seasons-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.season-card {
    background: linear-gradient(135deg, var(--accent-color), #fff);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

.season-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.season-months {
    color: var(--gold-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.season-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.season-temp {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--light-text);
    border-radius: 20px;
    font-weight: 600;
}

/* ==========================================
   DESTINATIONS PAGE STYLES
   ========================================== */
.destinations-overview {
    padding: 3rem 0;
    background: var(--bg-light);
}

.parks-stats {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.park-stat {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.park-circuit {
    padding: 5rem 0;
}

.circuit-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    margin-bottom: 4rem;
}

.circuit-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.circuit-header p {
    color: #666;
    font-size: 1.1rem;
}

.park-detail {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.park-detail:nth-child(even) {
    direction: rtl;
}

.park-detail:nth-child(even) .park-content {
    direction: ltr;
}

.park-content {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.park-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gold-color);
    color: var(--text-color);
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.park-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.park-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.park-specs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.park-specs span {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 20px;
    color: #666;
}

.park-content > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.park-highlights {
    margin-bottom: 1.5rem;
}

.park-highlights h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.park-highlights ul {
    list-style: none;
}

.park-highlights ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.park-highlights ul li::before {
    content: '🗹';
    position: absolute;
    left: 0;
}

.park-activities {
    margin-bottom: 1.5rem;
}

.park-activities h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.park-activities span {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent-color);
    border-radius: 20px;
    color: var(--primary-color);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.park-best-time {
    margin-bottom: 1.5rem;
}

.park-best-time h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.park-best-time p {
    color: #666;
    line-height: 1.6;
}

.park-images img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-content,
    .story-container,
    .kili-intro,
    .zanzibar-intro,
    .safari-header,
    .park-detail,
    .contact-container,
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mission-vision,
    .mvv-grid,
    .why-us-grid,
    .routes-container,
    .included-grid,
    .packages-grid,
    .packages-preview,
    .activities-grid,
    .beaches-grid,
    .activities-container,
    .seasons-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-image,
    .kili-intro-image,
    .zanzibar-intro .intro-image,
    .safari-header-image,
    .park-images {
        order: -1;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
    }
    
    .about-stats,
    .mission-vision,
    .mvv-grid,
    .why-us-grid,
    .team-grid,
    .achievements-grid,
    .partners-grid,
    .kili-stats,
    .kili-features,
    .routes-container,
    .included-grid,
    .features-grid,
    .services-grid,
    .packages-grid,
    .testimonials-grid,
    .stories-grid,
    .parks-stats,
    .prep-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .packages-preview,
    .activities-grid,
    .beaches-grid,
    .activities-container,
    .seasons-container {
        grid-template-columns: 1fr;
    }
    
    .safari-types-nav {
        flex-direction: column;
    }
    
    .safari-tab {
        width: 100%;
        text-align: center;
    }
    
    .park-detail,
    .park-detail:nth-child(even) {
        direction: ltr;
        grid-template-columns: 1fr;
    }
    
    .park-detail:nth-child(even) .park-content {
        direction: ltr;
    }
    
    .safari-header {
        grid-template-columns: 1fr;
    }
    
    .safari-header-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .kili-stats,
    .parks-stats,
    .achievements-grid {
        grid-template-columns: 1fr 1fr;
    }
}