/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Modern Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo h1 {
    color: #1a1a1a;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-text {
    color: #1a1a1a;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-link:hover {
    color: #d35400;
    transform: scale(1.05);
}

.nav-link.active {
    color: #1a1a1a;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d35400;
    border-radius: 1px;
}

/* Hide the checkbox */
.nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 1px;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 88px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    /* Show menu when checkbox is checked */
    .nav-toggle:checked ~ .nav-menu {
        left: 0;
    }
    
    /* Animate hamburger to X when checked */
    .nav-toggle:checked ~ .hamburger .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle:checked ~ .hamburger .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle:checked ~ .hamburger .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Main Content Styles */
main {
    margin-top: 88px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 5rem 0;
    
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('../images/landscape.jpg');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    padding: 0 2rem;
    z-index: 2;
    position: relative;
    text-align: center;
    max-width: 1000px;
}

.hero h1 {
    color: white;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: #d35400;
    display: block;
}

.hero p {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn-primary {
    background-color: #c5440d;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #a63809;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 68, 13, 0.3);
}

.btn-secondary {
    background: white;
    color: #1a1a1a;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    border-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.hero-image {
    position: relative;
    padding: 2rem;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Modern Stats Section */
.stats {
    background: white;
    padding: 5rem 0;
    border-top: 1px solid #f1f5f9;
}

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

.stat-item {
    padding: 2rem 1rem;
}

.stat-item h3 {
    font-size: 3rem;
    color: #d35400;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

/* Make stats section h2 elements orange */
.stats .stat-item h2 {
    color: #bf4718;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: #475569;
    font-weight: 500;
}

/* Featured Experiences */
.featured {
    padding: 6rem 0;
    background: #fafbfc;
}

.featured h2 {
    text-align: center;
    font-size: 4rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.featured .section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.experience-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(230, 126, 34, 0.2);
}

.experience-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.card-content p {
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-link {
    color: #bf4718;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #bf4718;
}

/* Image Credit Styles */
.experience-card figure,
.animal-card figure,
.category-card figure {
    margin: 0;
    position: relative;
    overflow: hidden;
}

.image-credit {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 4px 10px;
    font-size: 0.7rem;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.experience-card:hover .image-credit,
.animal-card:hover .image-credit,
.category-card:hover .image-credit {
    opacity: 1;
}

.image-credit a {
    color: #ffa726;
    text-decoration: none;
    font-weight: 500;
}

.image-credit a:hover {
    text-decoration: underline;
    color: #ffb74d;
}

/* Itinerary card image credits */
.itinerary-card-modern .card-image {
    position: relative;
    overflow: hidden;
}

.itinerary-card-modern:hover .image-credit {
    opacity: 1;
}

/* Adjust badge positioning to avoid overlapping with credit */
.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #bf4718;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 11;
}

/* Destination feature image credits */
.destination-image figure {
    margin: 0;
    position: relative;
    overflow: hidden;
}

.destination-feature:hover .image-credit {
    opacity: 1;
}

/* About page image credits */
.about-image figure {
    margin: 0;
    position: relative;
    overflow: hidden;
}

.about-grid:hover .image-credit {
    opacity: 1;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #d35400 0%, #d35400 100%);
    color: white;
    text-align: center;
    padding: 6rem 0 4rem;
    margin-top: 88px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Content */
.about-content {
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-text h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #64748b;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Contact Section */
.contact-section {
    background: #fafbfc;
    padding: 6rem 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #64748b;
}

/* Form Styles */
.form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    max-width: 100%;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d35400;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

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

fieldset {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

legend {
    font-weight: 600;
    color: #1a1a1a;
    padding: 0 1rem;
    font-size: 1rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"],
.radio-option input[type="radio"] {
    width: auto;
    margin: 0;
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #1a1a1a;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    transition: top 0.3s;
    border-radius: 4px;
    z-index: 2000;
}

.skip-link:focus {
    top: 6px;
}

/* Wildlife Page Styles */
.big-five {
    padding: 6rem 0;
}

.big-five h2 {
    text-align: center;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #2c2c2c;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.animals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.animal-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.animal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

.animal-info {
    padding: 2rem;
}

.animal-info h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.animal-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #64748b;
}

.animal-info strong {
    color: #bf4718;
}

/* Safari Types */
.safari-types {
    padding: 6rem 0;
    background: #fafbfc;
}

.safari-types h2 {
    text-align: center;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 4rem;
    font-weight: 700;
}

.safari-options {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.safari-option {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.safari-option:nth-child(even) {
    direction: rtl;
}

.safari-option:nth-child(even) .option-content {
    direction: ltr;
}

.safari-option img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}

.option-content h3 {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.option-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.option-content ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.option-content li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

/* Conservation Section */
.conservation {
    padding: 6rem 0;
}

.conservation h2 {
    text-align: center;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 4rem;
    font-weight: 700;
}

.conservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.conservation-text h3 {
    color: #1a1a1a;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.conservation-list {
    list-style: none;
    margin: 1rem 0;
}

.conservation-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    color: #64748b;
}

.conservation-list li::before {
    content: "🌿";
    position: absolute;
    left: 0;
}

.conservation-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Destinations Page Styles */
.featured-destinations {
    padding: 6rem 0;
}

.destination-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.destination-feature.reverse {
    direction: rtl;
}

.destination-feature.reverse .destination-content {
    direction: ltr;
}

.destination-content h3 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.destination-tagline {
    color: #bf4718;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.attraction-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.attraction-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #64748b;
}

.attraction-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d35400;
    font-weight: bold;
}

.destination-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Experience Categories */
.experience-types {
    padding: 6rem 0;
    background: #fafbfc;
}

.experience-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

.category-content {
    padding: 2rem;
}

.category-content h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.category-content ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

/* Planning Page Styles */
.planning-checklist {
    padding: 6rem 0;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.checklist-item {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.checklist-item h3 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.checklist-item ul {
    list-style: none;
    padding: 0;
}

.checklist-item li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #d35400;
    position: relative;
    padding-left: 2rem;
}

.checklist-item li::before {
    content: "✓";
    position: absolute;
    left: 0.75rem;
    color: #d35400;
    font-weight: bold;
}

/* Visa Information */
.visa-info {
    background: #fafbfc;
    padding: 6rem 0;
}

.visa-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmin(200px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.visa-list li {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.visa-requirements {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Safety Section */
.safety-section {
    padding: 6rem 0;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.safety-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.safety-item h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* Weather Info */
.weather-info {
    background: #fafbfc;
    padding: 6rem 0;
}

.seasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.season-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.season-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.5rem;
}

/* Footer Styles */
footer {
    background: #1a202c;
    color: #f7fafc;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-brand p {
    color: #f7fafc;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-info {
    color: #f7fafc;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

.footer-section a {
    color: #f7fafc !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-section a:hover {
    color: #ffffff !important;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff !important;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-text {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
}

/* Complete social media icon styles */
.facebook {
    background: #3b5998;
}

.facebook:hover {
    background: #2d4373;
}

.twitter {
    background: #1da1f2;
}

.twitter:hover {
    background: #0c85d0;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram:hover {
    opacity: 0.8;
}

.youtube {
    background: #ff0000;
}

.youtube:hover {
    background: #cc0000;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    text-align: center;
    color: #f7fafc;
    font-size: 1rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: #d35400;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Itineraries Section */
.itineraries-section {
    padding: 6rem 0;
    background: #fafbfc;
}

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

.itinerary-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #d35400;
}

.itinerary-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Packages Section */
.packages-section {
    padding: 6rem 0;
    background: #fafbfc;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.package-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 3px solid #e2e8f0;
}

.package-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.highlight {
    border: 4px solid #d35400;
    transform: scale(1.05);
}

.package-card.highlight:hover {
    transform: translateY(-8px) scale(1.07);
}

.package-card h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-card p {
    color: #bf4718;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.package-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.package-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

/* Customs Section */
.customs-section {
    padding: 6rem 0;
    background: white;
}

.customs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.custom-item {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
}

.custom-item h3 {
    color: #bf4718;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.custom-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Dropdown Navigation */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 1rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 1rem;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #d35400;
    padding-left: 2rem;
}

/* Modern Itinerary Cards */
.itinerary-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.itinerary-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.itinerary-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #d35400;
}

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

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-body {
    padding: 2rem;
}

.card-body h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.duration {
    color: #2d3748;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.rating {
    opacity: 1 !important;
    color: #8B4513 !important;
    background-color: rgb(255, 255, 255) !important;
}

.itinerary-detail {
    color: #2d3748;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.price {
    color: #1a1a1a;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.price strong {
    color: #b23a00 !important;
    font-size: 1.5rem;
    font-weight: 700;
}

.itinerary-detail strong {
    color: #bf4718 !important;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .destination-feature {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .safari-option {
        grid-template-columns: 1fr;
    }
    
    .safari-option:nth-child(even) {
        direction: ltr;
    }
    
    .conservation-grid {
        grid-template-columns: 1fr;
    }
    
    .animals-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        margin-top: 0.5rem;
        border-radius: 0;
    }
    
    .dropdown-menu a {
        padding-left: 2rem;
        font-size: 0.9rem;
    }
}