/* ========================================
   STANA Safari Website - Modern Professional Styles
   ======================================== */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Bright & Modern Theme */
:root {
    --primary-color: #D4A574;
    --primary-dark: #B8935F;
    --primary-light: #E8C9A0;
    --secondary-color: #3D7C47;
    --secondary-light: #5A9B65;
    --accent-color: #C17A3A;
    --dark-color: #2C2C2C;
    --light-color: #FFFFFF;
    --bg-light: #F9F7F4;
    --bg-cream: #FFF8F0;
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #777777;
    --border-color: #E5E5E5;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 15px 50px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

/* ========================================
   Global Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    background: var(--light-color);
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-color);
}

/* White text for headings on dark backgrounds */
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6,
.text-white .display-1, .text-white .display-2, .text-white .display-3, .text-white .display-4,
.hero-section h1, .hero-section h2, .hero-section h3, .hero-section h4, .hero-section h5, .hero-section h6,
.page-hero h1, .page-hero h2, .page-hero h3, .page-hero h4, .page-hero h5, .page-hero h6,
.full-width-banner h1, .full-width-banner h2, .full-width-banner h3, .full-width-banner h4, .full-width-banner h5, .full-width-banner h6,
.cta-section h1, .cta-section h2, .cta-section h3, .cta-section h4, .cta-section h5, .cta-section h6,
.services-section h1, .services-section h2, .services-section h3, .services-section h4, .services-section h5, .services-section h6 {
    color: white !important;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Background Sections */
.bg-light {
    background: var(--bg-light) !important;
}

.bg-cream {
    background: var(--bg-cream) !important;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    padding: 14px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.navbar-nav .btn-primary {
    padding: 8px 24px;
    margin: 0 !important;
    height: auto;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* Mobile Button Spacing - Prevent buttons from touching when stacked */
@media (max-width: 576px) {
    .btn {
        margin-bottom: 15px;
    }
    
    .btn:last-child {
        margin-bottom: 0;
    }
    
    /* Override Bootstrap's me-3 (margin-end) on mobile */
    .btn.me-3 {
        margin-right: 0 !important;
    }
    
    /* Ensure buttons in hero and CTA sections stack properly */
    .hero-buttons .btn,
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-buttons .btn:last-child,
    .cta-section .btn:last-child {
        margin-bottom: 0;
    }
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    padding: 0.7rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0;
}

.navbar-brand .logo-img {
    height: 40px !important;
    width: auto !important;
    margin-right: 10px !important;
}

.navbar-brand .brand-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.navbar-brand .brand-text {
    display: flex;
    align-items: center;
}

.tagline-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--secondary-light);
    opacity: 0.85;
    letter-spacing: 0.3px;
    margin-top: 0;
    text-transform: none;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 15px;
    padding: 8px 0 !important;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Underline effect for non-dropdown nav links only */
.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

/* Footer Logo Styling */
.footer-logo {
    height: 50px;
    width: auto;
    margin-right: 12px;
}

.footer-header {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1rem;
}

.footer-header-wrapper {
    margin-bottom: 1rem;
}

.footer-header-top {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-tagline {
    display: block;
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar-nav .nav-link:not(.dropdown-toggle).active::after {
    width: 100%;
}

/* Dropdown toggle arrow - VISIBLE DOWN ARROW - FORCED */
.navbar-nav .dropdown-toggle::after {
    display: inline-block !important;
    margin-left: 0.5em !important;
    vertical-align: 0.2em !important;
    content: "" !important;
    border-top: 0.4em solid !important;
    border-right: 0.4em solid transparent !important;
    border-bottom: 0 !important;
    border-left: 0.4em solid transparent !important;
    border-color: inherit transparent transparent transparent !important;
    width: 0 !important;
    height: 0 !important;
    position: relative !important;
    opacity: 1 !important;
    background: transparent !important;
}

.navbar-nav .dropdown-toggle:hover::after,
.navbar-nav .dropdown-toggle:focus::after {
    border-top-color: var(--primary-color) !important;
}

/* Additional specificity for dropdown arrows */
.navbar-nav .nav-item.dropdown .dropdown-toggle::after {
    display: inline-block !important;
    content: "" !important;
    border-style: solid !important;
    border-width: 0.4em 0.4em 0 0.4em !important;
    border-color: currentColor transparent transparent transparent !important;
}

/* Scrolled navbar dropdown arrows */
.navbar.scrolled .dropdown-toggle::after {
    border-top-color: var(--text-dark) !important;
}

/* Ensure dropdown container has proper positioning */
.navbar-nav .nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    background: white;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 1050;
    min-width: 200px;
}

/* Ensure dropdown shows when active */
.dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.dropdown-item {
    padding: 12px 25px;
    color: var(--text-dark);
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--dark-color);
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4A574' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
}

/* Improved overlay for better text visibility */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 44, 44, 0.7) 0%,
        rgba(44, 44, 44, 0.4) 50%,
        rgba(212, 165, 116, 0.3) 100%
    );
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.4);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: white;
    text-shadow: 1px 2px 15px rgba(0,0,0,0.4);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 700px;
}

.text-primary {
    color: var(--primary-light) !important;
}

.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-nav-btn.active,
.hero-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.3);
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    min-height: 70vh;
    padding: 200px 0 140px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 60px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 44, 44, 0.75) 0%,
        rgba(61, 124, 71, 0.6) 100%
    );
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.3);
}

.page-header p {
    color: white;
    font-size: 1.2rem;
    text-shadow: 1px 2px 10px rgba(0,0,0,0.3);
}

/* ========================================
   Destination Cards
   ======================================== */
.destination-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.destination-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .destination-image img {
    transform: scale(1.08);
}

.destination-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.country-flag {
    font-size: 2rem;
}

.destination-content {
    padding: 30px;
}

.destination-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.destination-capital {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.destination-parks h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.destination-parks ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.destination-parks li {
    padding: 6px 0 6px 24px;
    color: var(--text-medium);
    font-size: 0.9rem;
    position: relative;
}

.destination-parks li:before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ========================================
   Safari Cards
   ======================================== */
.safari-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.safari-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.safari-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.safari-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.safari-card:hover .safari-image img {
    transform: scale(1.08);
}

.safari-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.safari-content {
    padding: 30px;
}

.safari-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.safari-duration {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.safari-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.safari-highlights li {
    padding: 8px 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.safari-highlights i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

/* ========================================
   Service Cards
   ======================================== */
.services-section {
    background: linear-gradient(135deg, rgba(61, 124, 71, 0.85) 0%, rgba(44, 44, 44, 0.85) 100%), 
                url('../../images/wildlife/110928_073130_MPM8318.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.service-card-home {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.service-card-home:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.service-card-home h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card-home p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ========================================
   Feature Boxes
   ======================================== */
.feature-box {
    padding: 35px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.feature-box h5 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.feature-box p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 100px 0;
    background-image: url('../images/trackingguide.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(61, 124, 71, 0.7) 0%,
        rgba(44, 44, 44, 0.7) 100%
    );
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.3);
}

.cta-section p {
    color: white;
    font-size: 1.2rem;
    text-shadow: 1px 2px 10px rgba(0,0,0,0.3);
}

/* ========================================
   About Page Styles
   ======================================== */
.mission-box {
    background: white;
    padding: 45px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 1px solid var(--border-color);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.mission-box h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.mission-box p {
    color: var(--text-medium);
    line-height: 1.8;
}

.stats-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    position: relative;
}

.stat-box {
    padding: 30px;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.value-card h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.certification-list {
    background: white;
    padding: 45px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.certification-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.certification-item:last-child {
    border-bottom: none;
}

.certification-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.certification-item strong {
    color: var(--dark-color);
    font-weight: 600;
}

.team-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    height: 280px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image i {
    font-size: 4rem;
    color: var(--primary-color);
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-content h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.team-content .text-muted {
    color: var(--text-light) !important;
    font-size: 0.9rem;
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-card {
    background: white;
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.contact-card h5 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.contact-card p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--primary-dark);
}

.form-section {
    background: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.form-control,
.form-select {
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.15);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

textarea.form-control {
    min-height: 120px;
}

.emergency-section {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-light);
}

.emergency-section h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.emergency-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.emergency-item:last-child {
    border-bottom: none;
}

.emergency-item strong {
    color: var(--dark-color);
    font-weight: 600;
}

.emergency-item a {
    color: var(--primary-color);
    font-weight: 500;
}

/* ========================================
   Destination Page Styles
   ======================================== */
.country-overview {
    background: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 50px;
    border: 1px solid var(--border-color);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.overview-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.overview-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.overview-item strong {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.overview-item span {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.park-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.park-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.park-image {
    height: 250px;
    overflow: hidden;
}

.park-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.park-card:hover .park-image img {
    transform: scale(1.08);
}

.park-content {
    padding: 30px;
}

.park-content h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.park-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.park-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.park-features li {
    padding: 6px 0;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.park-features i {
    color: var(--secondary-color);
    margin-right: 8px;
    width: 18px;
}

.season-card {
    background: white;
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 1px solid var(--border-color);
}

.season-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.season-card h5 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.season-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.experience-card {
    background: white;
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.experience-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.experience-card h5 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.experience-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ========================================
   Footer
   ======================================== */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-content {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    display: block;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.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: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 12px;
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-design-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-design-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.certification-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.badge-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ========================================
   Back to Top Button
   ======================================== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ========================================
   Floating WhatsApp Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ========================================
   Service Tabs & Tab Navigation
   ======================================== */
.nav-tabs {
    border-bottom: 2px solid var(--border-color);
    justify-content: center;
    gap: 10px;
}

.nav-tabs .nav-link {
    background: transparent;
    border: none;
    color: var(--text-medium);
    font-weight: 500;
    padding: 12px 24px;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    background: transparent;
}

.nav-tabs .nav-link.active {
    background: transparent;
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-tabs .nav-link i {
    margin-right: 6px;
}

/* Tab Content Transitions */
.tab-pane {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background: var(--primary-color) !important;
}

.bg-secondary {
    background: var(--secondary-color) !important;
}

.overlay-dark {
    position: relative;
}

.overlay-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.overlay-dark > * {
    position: relative;
    z-index: 2;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Mobile Menu Improvements */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        margin-top: 15px;
        border-radius: var(--border-radius);
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }
    
    .navbar-nav {
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
        padding: 12px 15px !important;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: var(--primary-light);
        transform: translateX(5px);
    }
    
    .navbar-nav .nav-link.active {
        background: var(--primary-color);
        color: white !important;
    }
    
    /* Mobile Dropdown Styles */
    .navbar-nav .dropdown-menu {
        background: var(--bg-light);
        border: none;
        box-shadow: none;
        margin: 8px 0 8px 20px;
        padding: 8px 0;
        border-radius: 8px;
    }
    
    .navbar-nav .dropdown-item {
        padding: 10px 20px;
        border-radius: 6px;
        margin: 4px 8px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .dropdown-item:hover {
        background: white;
        transform: translateX(5px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    
    /* Mobile Dropdown Toggle Arrow */
    .navbar-nav .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }
    
    /* Mobile Book Now Button */
    .navbar-nav .btn-primary {
        margin: 15px 0 5px 0;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* Navbar Toggler Improvements */
    .navbar-toggler {
        border: 2px solid var(--primary-color);
        padding: 8px 12px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:hover {
        background: var(--primary-light);
        transform: scale(1.05);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(212, 165, 116, 0.25);
    }
    
    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4A574' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .form-section {
        padding: 30px 20px;
    }
    
    .country-overview {
        padding: 30px 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    /* Page Header Mobile Optimization */
    .page-header {
        min-height: 50vh;
        padding: 120px 0 80px;
        margin-bottom: 40px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    /* Full Width Banner Mobile Optimization */
    .full-width-banner {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .full-width-banner h2 {
        font-size: 2rem;
    }
    
    .full-width-banner p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .destination-image,
    .safari-image,
    .park-image {
        height: 220px;
    }
    
    /* Page Header Extra Small Screens */
    .page-header {
        min-height: 40vh;
        padding: 100px 0 60px;
        margin-bottom: 30px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 0.95rem;
    }
    
    /* Full Width Banner Extra Small Screens */
    .full-width-banner {
        padding: 60px 0;
    }
    
    .full-width-banner h2 {
        font-size: 1.75rem;
    }
    
    .full-width-banner p {
        font-size: 0.95rem;
    }
}

/* ========================================
   Gallery Styles
   ======================================== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: white;
}

.gallery-info h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-info p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Full Width Banner */
.full-width-banner {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.full-width-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,44,44,0.4) 0%, rgba(44,44,44,0.25) 100%);
}

.full-width-banner .container {
    position: relative;
    z-index: 2;
}

/* Training Program Cards */
.training-program-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 2px solid var(--border-color);
    position: relative;
}

.training-program-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.training-program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.training-program-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.program-header {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    padding: 30px;
    text-align: center;
    color: white;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.program-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.program-header h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.program-duration {
    font-size: 0.95rem;
    opacity: 0.95;
    margin: 0;
}

.program-content {
    padding: 30px;
}

.program-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.program-content h6 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.program-features li {
    padding: 8px 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.program-price {
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 20px;
}

.program-price strong {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Curriculum Cards */
.curriculum-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.curriculum-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.curriculum-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.curriculum-icon i {
    font-size: 2rem;
    color: white;
}

.curriculum-card h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.curriculum-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* Event Type Cards */
.event-type-card {
    background: white;
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.event-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.event-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.event-icon i {
    font-size: 2.5rem;
    color: white;
}

.event-type-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.event-type-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.event-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.event-features li {
    padding: 8px 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Service Feature Cards */
.service-feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-feature-card h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.service-feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* Wildlife Highlight Cards */
.wildlife-highlight-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.wildlife-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.wildlife-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.wildlife-icon i {
    font-size: 2rem;
    color: white;
}

.wildlife-highlight-card h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.wildlife-highlight-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* Experience Cards */
.experience-card {
    background: white;
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.experience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.experience-icon i {
    font-size: 2.5rem;
    color: white;
}

.experience-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.experience-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.experience-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-features li {
    padding: 8px 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Park Cards with Icon */
.park-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.park-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.park-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.park-icon i {
    font-size: 2rem;
    color: white;
}

.park-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.park-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* Info Box */
.info-box {
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-box strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    color: var(--text-medium);
    font-size: 1rem;
}

/* Benefit Cards */
.benefit-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

/* Safari Card with Image */
.safari-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.safari-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.safari-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #17A2B8 0%, #0D6A7C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.safari-icon i {
    font-size: 2rem;
    color: white;
}

.safari-card > div:first-child {
    padding: 30px;
}

.safari-card h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
}

.safari-card .highlights {
    margin: 15px 0;
}

.safari-card .badge {
    background: #E8F4F8 !important;
    color: #0D6A7C !important;
    font-size: 0.75rem;
    padding: 6px 12px;
    font-weight: 500;
}

/* Conservancy Card with Image */
.conservancy-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.conservancy-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.conservancy-card:hover .conservancy-image {
    transform: scale(1.08);
}

.conservancy-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition);
    position: relative;
}

.conservancy-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    transition: var(--transition);
}

.conservancy-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destination-flag {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
}

.conservancy-card h5 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.conservancy-card .list-unstyled li {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

/* Full Width Image Sections */
.image-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 160px 0;
    position: relative;
    margin: 60px 0;
}

@media (max-width: 768px) {
    .image-section {
        padding: 120px 0;
    }
}

.image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.85) 0%, rgba(61, 124, 71, 0.85) 100%);
    z-index: 1;
}

.image-section-content {
    position: relative;
    z-index: 2;
    color: white;
}

.image-section-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.3);
}

.image-section-content p {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    text-shadow: 1px 2px 10px rgba(0,0,0,0.2);
}

/* Highlight Feature Cards */
.highlight-feature {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.highlight-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.highlight-feature-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
}

.highlight-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.highlight-feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.highlight-feature h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.highlight-feature p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   Service Cards & Destination Cards
   ======================================== */
.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-card ul {
    margin-top: auto;
}

.service-card li {
    color: var(--text-medium);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Destination Cards with Images */
.destination-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.destination-card:hover .destination-image {
    transform: scale(1.1);
}

.destination-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition);
    position: relative;
}

.destination-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.5) 0%, rgba(61, 124, 71, 0.5) 100%);
    transition: var(--transition);
}

.destination-header {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    padding: 25px 25px 20px;
    color: white;
}

.destination-header h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.destination-header h4 span {
    margin-right: 8px;
    font-size: 1.5rem;
}

.destination-body {
    padding: 25px;
    flex-grow: 1;
}

.destination-body p {
    margin-bottom: 12px;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.destination-body p:last-child {
    margin-bottom: 0;
}

.destination-footer {
    padding: 0 25px 25px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* ========================================
   About Section - Image Grid
   ======================================== */
.about-images-grid {
    position: relative;
}

.about-main-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.about-main-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.about-secondary-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.about-secondary-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .about-main-image {
        min-height: 300px;
    }
    
    .about-secondary-image {
        height: 120px;
    }
}

/* ========================================
   Our Pillars Section
   ======================================== */

#pillars {
    position: relative;
    overflow: hidden;
}

.bg-gradient-pillars {
    background: linear-gradient(135deg, #f9f7f4 0%, #fff8f0 50%, #f9f7f4 100%);
}

.pillar-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: currentColor;
    opacity: 0;
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pillar-card:hover::before {
    opacity: 1;
}

/* Pillar Card Color Variants */
.pillar-primary {
    border-color: rgba(212, 165, 116, 0.1);
    color: var(--primary-color);
}

.pillar-primary:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.02) 0%, rgba(232, 201, 160, 0.05) 100%);
}

.pillar-success {
    border-color: rgba(61, 124, 71, 0.1);
    color: var(--secondary-color);
}

.pillar-success:hover {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(61, 124, 71, 0.02) 0%, rgba(90, 155, 101, 0.05) 100%);
}

.pillar-info {
    border-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.pillar-info:hover {
    border-color: #007bff;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.02) 0%, rgba(0, 123, 255, 0.05) 100%);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    color: white;
    transition: var(--transition);
}

.pillar-primary .pillar-icon {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.pillar-success .pillar-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
}

.pillar-info .pillar-icon {
    background: linear-gradient(135deg, #0d6efd 0%, #0d9efd 100%);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotateZ(5deg);
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    text-align: center;
}

.pillar-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.pillar-details {
    flex-grow: 1;
}

.pillar-detail-item {
    margin-bottom: 20px;
}

.pillar-detail-item h6 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}

.pillar-detail-item p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.pillar-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Pillar Button */
.btn-pillar {
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-primary.btn-pillar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
}

.btn-primary.btn-pillar:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.btn-success.btn-pillar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border: none;
    color: white;
}

.btn-success.btn-pillar:hover {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 124, 71, 0.3);
}

.btn-info.btn-pillar {
    background: linear-gradient(135deg, #0d6efd 0%, #0d9efd 100%);
    border: none;
    color: white;
}

.btn-info.btn-pillar:hover {
    background: linear-gradient(135deg, #0d9efd 0%, #0d6efd 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

/* Responsive Pillars */
@media (max-width: 768px) {
    .pillar-card {
        padding: 30px 20px;
    }
    
    .pillar-title {
        font-size: 1.3rem;
    }
    
    .pillar-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .pillar-description {
        font-size: 0.9rem;
    }
}

/* ========================================
   Impact Page - Impact List
   ======================================== */
.impact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

.impact-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.impact-list li strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .navbar,
    .hero-nav,
    #backToTop,
    .whatsapp-float,
    footer {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}