:root {
    --primary-green: #14452f;
    --hover-green: #27ae60;
    --accent-gold: #a68946;
    --text-dark: #333;
    --bg-light: #f4f4f4;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Arial, sans-serif; }

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

/* Top Bar */
.top-bar { background: #fff; padding: 10px 0; border-bottom: 1px solid #eee; font-size: 13px; color: var(--primary-green); }
.top-bar .container { display: flex; justify-content: space-between; }
.social-right a { margin-left: 15px; color: var(--primary-green); transition: 0.3s; }
.social-right a:hover { color: var(--accent-gold); }

/* Navbar */
.navbar { background: #fff; padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; }
.logo-icon { background: var(--primary-green); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 22px; margin-right: 10px; }
.brand-name { display: block; font-weight: bold; font-size: 20px; color: var(--primary-green); }
.tagline { display: block; font-size: 11px; color: #777; }

/* Nav Links & Dropdowns */
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { position: relative; margin-left: 5px; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 13px; padding: 10px 15px; transition: 0.3s; display: block; }

/* The Green Box Hover effect from your screenshot */
.nav-links a:hover, .highlight-green { background: var(--hover-green) !important; color: white !important; border-radius: 4px; }

.dropdown-content { display: none; position: absolute; background: #fff; min-width: 220px; box-shadow: 0 8px 16px rgba(0,0,0,0.1); top: 100%; left: 0; border-top: 3px solid var(--hover-green); }
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content li { width: 100%; margin: 0; }
.dropdown-content a { color: #555; padding: 12px 20px; border-bottom: 1px solid #f0f0f0; background: none !important; }
.dropdown-content a:hover { color: var(--hover-green) !important; padding-left: 25px; }

.btn-wishlist { border: 1px solid #ddd; border-radius: 4px; }

/* Hero Section */
.hero { height: 75vh; position: relative; background: #222; color: #fff; }
.slide { height: 100%; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; transition: 0.5s; }
.hero-content { text-align: center; max-width: 800px; }
.hero-content h1 { font-size: 45px; margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero-btns { margin-top: 30px; }
.btn-main { background: var(--primary-green); color: white; padding: 15px 30px; text-decoration: none; border-radius: 5px; margin-right: 15px; }
.btn-outline { border: 2px solid #fff; color: white; padding: 13px 30px; text-decoration: none; border-radius: 5px; }

/* Features */
.features { padding: 80px 0; text-align: center; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.feature-card { padding: 40px; border: 1px solid #eee; transition: 0.3s; }
.feature-card:hover { transform: translateY(-10px); border-color: var(--accent-gold); }
.feature-card i { font-size: 40px; color: var(--accent-gold); margin-bottom: 20px; }


/* Destinations Section Styling */
.destinations-section {
    position: relative;
    padding-bottom: 100px; /* Space for the cards to overlap */
}

.destinations-overlay {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1541432901042-2d8bd64b4a9b?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0 180px 0; /* Extra padding at bottom for overlap */
    text-align: center;
    color: white;
}

.dest-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 400;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--hover-green);
    margin: 0 auto 25px auto;
}

.dest-intro p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #f0f0f0;
}

/* Destinations Cards */
.cards-container {
    margin-top: -120px; /* This creates the overlap effect */
}

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

.dest-card {
    width: 260px;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.dest-card:hover {
    transform: translateY(-10px);
}

.card-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-weight: 600;
    font-size: 18px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .dest-card {
        width: 100%; /* Cards stack on small screens */
        height: 300px;
    }
    .destinations-overlay {
        padding: 60px 0 120px 0;
    }
}

/* Travel Inspiration Section */
.travel-inspiration {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.inspiration-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.inspiration-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.inspiration-header p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Grid Layout */
.itinerary-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* 3-column layout on Desktop */
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    margin-bottom: 40px;
}

.itinerary-card {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    text-align: left;
}

.itinerary-card:hover {
    transform: scale(1.02);
}

.itinerary-card.large {
    grid-row: span 2; /* Large card takes up two rows */
}

.itinerary-info h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.itinerary-days {
    color: #ddd;
    font-size: 13px;
    font-weight: 500;
}

/* Button Styling */
.view-all-container { margin-top: 30px; }
.btn-outline-green {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #2ecc71;
    color: #2ecc71;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-outline-green:hover {
    background: #2ecc71;
    color: white;
}

/* Tablet & Phone Mode Fixes */
@media (max-width: 992px) {
    .itinerary-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
        grid-template-rows: auto;
    }
    .itinerary-card.large {
        grid-column: span 2;
        height: 350px;
    }
    .itinerary-card { height: 250px; }
}

@media (max-width: 600px) {
    .itinerary-grid {
        grid-template-columns: 1fr; /* Stacked on phone */
    }
    .itinerary-card.large { grid-column: span 1; }
}

/* Why Book Section */
.why-grid { display: flex; min-height: 500px; flex-wrap: wrap; }
.why-image { flex: 1; min-width: 400px; background-size: cover; display: flex; align-items: center; padding: 60px; color: white; }
.why-features { flex: 1; min-width: 400px; background: white; padding: 60px; display: flex; flex-direction: column; gap: 30px; }

.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.feature-item i { color: #3498db; font-size: 24px; }
.feature-item h3 { margin-bottom: 5px; color: #333; }

/* Testimonials */
.testimonials { padding: 80px 0; background: #fdfdfd; text-align: center; }
.testimonial-card { background: white; padding: 40px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); max-width: 600px; margin: 0 auto; }
.user-img { width: 80px; height: 80px; background: #eee; border-radius: 50%; margin: 0 auto 20px; }
.stars { color: #f1c40f; margin-bottom: 15px; }

/* Footer */
.main-footer { background: #111; color: #ccc; }
.partner-logos { background: #eee; padding: 30px 0; text-align: center; }
.partner-logos img { height: 40px; margin: 0 20px; filter: grayscale(1); opacity: 0.7; }

.footer-bottom { padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer-col h4 { color: white; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; width: 30px; height: 2px; background: #3498db; position: absolute; bottom: 0; left: 0; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #ccc; text-decoration: none; font-size: 14px; }

.btn-footer { display: inline-block; background: #2ecc71; color: white; padding: 10px 20px; text-decoration: none; border-radius: 20px; margin-top: 15px; }

/* Mobile Stack */
@media (max-width: 768px) {
    .why-image, .why-features { min-width: 100%; padding: 30px; }
}

/* About Section Styles */
.about-section {
    background-color: #fff;
    overflow: hidden;
}

.about-flex {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

/* Image Side */
.about-image {
    flex: 1;
    min-width: 50%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    text-align: center;
    color: #fff;
}

.about-image-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.about-image-content p {
    font-size: 18px;
    font-style: italic;
}

/* Text Side */
.about-text {
    flex: 1;
    min-width: 50%;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    background-color: #fcfcfc;
}

.about-inner {
    max-width: 550px;
}

.brand-subtitle {
    color: #27ae60; /* Emerald Green */
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 32px;
    color: #14452f;
    margin-bottom: 15px;
}

.accent-line {
    width: 50px;
    height: 3px;
    background-color: #27ae60;
    margin-bottom: 25px;
}

.lead-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Stats Row */
.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #14452f;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
}

.btn-read-more {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #14452f;
    color: #14452f;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-read-more:hover {
    background-color: #14452f;
    color: #fff;
}

/* Responsive Tablet/Phone Mode */
@media (max-width: 992px) {
    .about-image {
        min-height: 400px;
    }
    .about-text {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    .about-flex {
        flex-direction: column;
    }
    .about-image, .about-text {
        width: 100%;
        min-width: 100%;
    }
    .about-image-content h2 {
        font-size: 28px;
    }
}

/* WHY TRAVEL SECTION */
.why-travel {
    background-color: #fff;
    overflow: hidden;
}

.why-travel-wrapper {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

/* Side A: Image/Promise Styling */
.promise-box {
    flex: 1;
    min-width: 50%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 60px;
    color: white;
}

.promise-content {
    max-width: 500px;
}

.promise-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.promise-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.highlight-text {
    font-weight: 800;
    font-size: 24px;
    color: #2ecc71; /* Emerald Green Accent */
    text-transform: uppercase;
}

/* Side B: Features Styling */
.features-box {
    flex: 1;
    min-width: 50%;
    background-color: #fcfcfc;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon i {
    font-size: 28px;
    color: #2ecc71; /* Emerald Green */
    margin-top: 5px;
}

.feature-info h3 {
    font-size: 20px;
    color: #14452f; /* Deep Brand Green */
    margin-bottom: 8px;
}

.feature-info p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* TABLET & PHONE MODE */
@media (max-width: 992px) {
    .promise-box {
        padding: 60px 30px;
        min-height: 400px;
    }
    .features-box {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .why-travel-wrapper {
        flex-direction: column;
    }
    .promise-box, .features-box {
        width: 100%;
        min-width: 100%;
    }
    .promise-content h2 {
        font-size: 32px;
    }
}

/* OUR STAFF SECTION */
.staff-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.staff-intro {
    color: #666;
    margin-bottom: 50px;
    font-size: 16px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-top: 20px;
}

.staff-card {
    transition: transform 0.3s ease;
}

/* Image Styling */
.staff-img-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #f4f4f4;
    transition: border-color 0.3s;
}

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

/* Hover Social Icons */
.staff-social {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 69, 47, 0.8); /* Deep Brand Green Overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.staff-social a {
    color: white;
    font-size: 18px;
    transition: transform 0.3s;
}

.staff-social a:hover {
    transform: translateY(-5px);
    color: #27ae60;
}

.staff-card:hover .staff-img-container {
    border-color: #27ae60;
}

.staff-card:hover .staff-social {
    opacity: 1;
}

/* Typography */
.staff-info h3 {
    color: #14452f;
    font-size: 20px;
    margin-bottom: 5px;
}

.staff-role {
    color: #27ae60;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Phone Mode Optimization */
@media (max-width: 600px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }
    .staff-img-container {
        width: 180px;
        height: 180px;
    }
}

/* ACCOMMODATION SECTION */
.accommodation-section {
    padding: 80px 0;
    background-color: #fdfdfd;
}

.acc-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.acc-header h2 {
    font-size: 32px;
    color: #14452f; /* Deep Brand Green */
    margin-bottom: 10px;
}

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

/* Card Styling */
.acc-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.acc-card:hover {
    transform: translateY(-10px);
}

.acc-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Label Tag (Luxury, Eco, etc) */
.acc-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #27ae60; /* Emerald Green */
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 20px;
}

.acc-info {
    padding: 25px;
}

.acc-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.acc-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .acc-header {
        padding: 0 20px;
    }
    .acc-grid {
        padding: 0 20px;
    }
}

/* TRANSPORT SECTION STYLES */
.transport-section {
    padding: 80px 0;
    background-color: #fff;
}

.transport-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Air Travel Callout */
.air-travel-box {
    background-color: #f4f7f6;
    border-left: 5px solid #27ae60;
    padding: 30px;
    margin-bottom: 60px;
    border-radius: 0 8px 8px 0;
}

.air-content h3 {
    color: #14452f;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.air-content i {
    color: #27ae60;
}

/* Fleet Grid */
.fleet-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vehicle-card {
    display: flex;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.vehicle-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.vehicle-img {
    flex: 1;
    min-width: 350px;
    background-size: cover;
    background-position: center;
}

.vehicle-info {
    flex: 1.5;
    padding: 40px;
}

.vehicle-tag {
    color: #27ae60;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.vehicle-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.vehicle-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vehicle-specs {
    list-style: none;
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.vehicle-specs li {
    font-size: 14px;
    color: #444;
    font-weight: 600;
}

.vehicle-specs i {
    color: #27ae60;
    margin-right: 8px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .vehicle-card {
        flex-direction: column;
    }
    .vehicle-img {
        height: 250px;
        min-width: 100%;
    }
    .vehicle-info {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .vehicle-specs {
        flex-direction: column;
        gap: 10px;
    }
    .air-travel-box {
        padding: 20px;
    }
}

/* RESPONSIBLE TRAVEL STYLES */
.responsible-travel {
    padding: 80px 0;
    background-color: #fff;
}

.responsible-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.intro-lead {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    font-weight: 500;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.principle-card {
    background: #fcfcfc;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.highlight-border {
    border-top: 4px solid #27ae60; /* Emerald Green */
}

.card-icon {
    font-size: 30px;
    color: #27ae60;
    margin-bottom: 20px;
}

.principle-card h3 {
    color: #14452f; /* Deep Green */
    margin-bottom: 15px;
    font-size: 20px;
}

.principle-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Go Local Callout */
.go-local-box {
    background: #14452f;
    color: white;
    padding: 60px;
    border-radius: 15px;
    margin-top: 40px;
}

.go-local-content h2 {
    color: #27ae60;
    margin-bottom: 20px;
}

.go-local-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

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

.local-tips li {
    font-weight: 600;
}

.local-tips i {
    color: #27ae60;
    margin-right: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .go-local-box {
        padding: 30px;
    }
    .responsible-header h2 {
        font-size: 28px;
    }
}
/* TRAVEL TIPS STYLING */
.travel-tips {
    padding: 80px 0;
    background-color: #f4f7f6;
}

.tips-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.tips-wrapper {
    display: flex;
    gap: 50px;
}

/* Sidebar Nav */
.tips-nav {
    flex: 1;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.tips-nav ul {
    list-style: none;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tips-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

.tips-nav li a.active, .tips-nav li a:hover {
    color: #27ae60;
    padding-left: 20px;
}

/* Content Area */
.tips-content {
    flex: 3;
}

.tip-category {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tip-category h3 {
    color: #14452f;
    font-size: 26px;
    margin-bottom: 25px;
    border-bottom: 2px solid #27ae60;
    display: inline-block;
}

.tip-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tip-card.warning {
    border-left: 4px solid #e74c3c;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    color: #555;
}

.check-list i {
    color: #27ae60;
}

.env-box {
    display: grid;
    gap: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .tips-wrapper {
        flex-direction: column;
    }
    .tips-nav {
        position: static;
    }
    .tips-nav ul {
        display: flex;
        overflow-x: auto;
        gap: 10px;
    }
    .tips-nav li a {
        white-space: nowrap;
        border-bottom: none;
    }
}

/* TERMS SECTION STYLES */
.terms-section {
    padding: 80px 0;
    background-color: #fff;
}

.terms-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-block {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.terms-block h3 {
    color: #14452f; /* Deep Brand Green */
    font-size: 22px;
    margin-bottom: 15px;
}

.terms-block p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 10px;
}

/* Payment Highlight Box */
.payment-highlight {
    background-color: #f4f7f6;
    padding: 25px;
    border-left: 4px solid #27ae60; /* Emerald Green */
    border-radius: 4px;
}

/* Cancellation Table */
.cancellation-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.cancellation-table th, .cancellation-table td {
    text-align: left;
    padding: 12px;
    border: 1px solid #eee;
}

.cancellation-table th {
    background-color: #14452f;
    color: white;
}

.cancellation-table tr:nth-child(even) {
    background-color: #fcfcfc;
}

/* Footer / Action */
.terms-footer {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 10px;
}

.btn-download {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-download:hover {
    background: #1e8449;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-block { padding: 0 20px; }
    .cancellation-table { font-size: 13px; }
}

/* HISTORY SECTION STYLES */
.history-section {
    padding: 80px 0;
    background-color: #fdfdfd;
}

.history-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Row Layout */
.history-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.history-row.reverse {
    flex-direction: row-reverse;
}

/* Text Side */
.history-text {
    flex: 1;
}

.history-date {
    display: inline-block;
    color: #27ae60; /* Emerald Green */
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.history-text h3 {
    font-size: 28px;
    color: #14452f; /* Deep Brand Green */
    margin-bottom: 20px;
}

.history-text p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

/* Image Side */
.history-img {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* RESPONSIVE PHONE MODE */
@media (max-width: 992px) {
    .history-row, .history-row.reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .history-img {
        width: 100%;
        height: 300px;
    }
    
    .history-text {
        padding: 0 20px;
    }
}

/* CULTURE SECTION STYLES */
.culture-section {
    padding: 80px 0;
    background-color: #fff;
}

.culture-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Grid Layout */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.culture-item {
    text-align: center;
    padding: 20px;
    transition: 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-10px);
}

.culture-icon {
    font-size: 40px;
    color: #27ae60; /* Emerald Green */
    margin-bottom: 20px;
}

.culture-item h3 {
    color: #14452f; /* Deep Green */
    font-size: 22px;
    margin-bottom: 15px;
}

.culture-item p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Religion Harmony Box */
.harmony-box {
    background: linear-gradient(rgba(20, 69, 47, 0.9), rgba(20, 69, 47, 0.9)), 
                url('https://images.unsplash.com/photo-1548013146-72479768b921?w=1000');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px;
    border-radius: 15px;
    text-align: center;
}

.harmony-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #27ae60;
}

.harmony-content p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .harmony-box {
        padding: 30px;
    }
    .culture-header h2 {
        font-size: 28px;
    }
}

/* GEOGRAPHY & LOCATIONS STYLES */
.geo-section {
    padding: 80px 0;
    background-color: #fff;
}

.geo-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

/* Geography Detail Cards */
.geo-details {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
}

.geo-card {
    flex: 1;
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.geo-card:hover {
    background: #14452f;
    color: white;
}

.geo-card i {
    font-size: 40px;
    color: #27ae60;
    margin-bottom: 20px;
}

.geo-card:hover i {
    color: white;
}

.geo-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Location Grid (The Gallery) */
.location-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.location-box {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.location-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.location-overlay h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.location-overlay span {
    font-size: 14px;
    opacity: 0.8;
}

/* Hover Zoom Effect */
.location-box:hover img {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .geo-details {
        flex-direction: column;
    }
}



/* UNESCO SECTION STYLES */
.unesco-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.unesco-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Featured Card (Fasil Ghebbi style) */
.featured-site {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    margin-bottom: 60px;
}

.featured-img {
    flex: 1;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.featured-text {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-text h3 {
    color: #14452f;
    font-size: 28px;
    margin-bottom: 20px;
}

.featured-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.find-more {
    color: #27ae60;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Lists Styling */
.unesco-lists {
    display: flex;
    gap: 50px;
}

.list-column {
    flex: 1;
}

.list-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.list-header i {
    color: #27ae60;
    font-size: 24px;
}

.list-header h3 {
    color: #14452f;
    font-size: 22px;
}

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

.unesco-ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #444;
    font-size: 15px;
}

.unesco-ul li span {
    color: #999;
    font-size: 13px;
    margin-left: 10px;
}

.mt-40 { margin-top: 40px; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .featured-site { flex-direction: column; }
    .unesco-lists { flex-direction: column; }
    .featured-text { padding: 30px; }
}

/* GENERAL STYLING */
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f8f9fa; margin: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.info-section { padding: 80px 0; }

.info-header { text-align: center; margin-bottom: 50px; }
.brand-subtitle { color: #27ae60; letter-spacing: 2px; font-size: 14px; margin-bottom: 10px; }
.accent-line { width: 60px; height: 3px; background: #27ae60; margin: 15px auto; }

/* TAB LAYOUT */
.info-wrapper { display: flex; gap: 40px; }

/* Sidebar Nav */
.info-nav { flex: 1; display: flex; flex-direction: column; gap: 5px; }

.tab-link {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tab-link i { color: #27ae60; width: 25px; text-align: center; }

.tab-link:hover, .tab-link.active {
    background-color: #14452f;
    color: white;
    border-color: #14452f;
}

.tab-link.active i { color: #27ae60; }

/* Content Area */
.info-content {
    flex: 3;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    min-height: 500px;
}

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.5s ease; }

.tab-content h3 { color: #14452f; font-size: 28px; margin-bottom: 25px; border-bottom: 2px solid #eee; padding-bottom: 10px; }
.tab-content p { color: #666; line-height: 1.8; font-size: 16px; margin-bottom: 20px; }

.check-list { list-style: none; padding: 0; }
.check-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; color: #555; }
.check-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: #27ae60; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 992px) {
    .info-wrapper { flex-direction: column; }
    .info-nav { flex-direction: row; overflow-x: auto; padding-bottom: 15px; }
    .tab-link { white-space: nowrap; }
}
/* VISA SPECIFIC STYLING */
.content-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.content-header i {
    font-size: 32px;
    color: #27ae60;
}

.info-alert {
    background-color: #fff9e6;
    border-left: 4px solid #f1c40f;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.visa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.visa-option-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 10px;
}

.visa-option-card h5 {
    font-size: 18px;
    color: #14452f;
    margin-bottom: 10px;
}

.fee-table {
    width: 100%;
    margin-top: 15px;
    border-top: 1px solid #eee;
}

.fee-table td {
    padding: 10px 0;
    font-size: 15px;
}

.btn-visa {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #14452f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

.requirements-box {
    margin-top: 40px;
    padding: 30px;
    background: #f4f7f6;
    border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .visa-grid {
        grid-template-columns: 1fr;
    }
}

/* HEALTH & SAFETY STYLING */

/* Grid for Health Cards */
.health-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.info-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
}

.info-card h4 i {
    color: #27ae60;
    margin-right: 10px;
}

/* First Aid Box */
.first-aid-box {
    background: #14452f;
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.kit-lists {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.kit-lists ul {
    list-style: none;
    padding: 0;
}

.kit-lists li {
    margin-bottom: 10px;
    font-size: 14px;
}

.kit-lists li::before {
    content: "+";
    color: #27ae60;
    margin-right: 10px;
    font-weight: bold;
}

/* Safety Alerts */
.safety-alerts {
    margin: 25px 0;
}

.alert-item {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    align-items: flex-start;
}

.alert-item i {
    color: #e67e22; /* Warning Orange */
    font-size: 24px;
}

.safety-policy {
    border-top: 2px solid #27ae60;
    padding-top: 20px;
    margin-top: 40px;
    font-style: italic;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .health-grid, .kit-lists {
        flex-direction: column;
        display: block;
    }
    .info-card { margin-bottom: 15px; }
}

/* MONEY SECTION SPECIFIC STYLES */

.money-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    gap: 15px;
    background: #f4f7f6;
    padding: 20px;
    border-radius: 8px;
    align-items: flex-start;
}

.highlight-item i {
    font-size: 24px;
    color: #27ae60;
}

.highlight-item h4 {
    margin: 0 0 5px 0;
    color: #14452f;
}

.highlight-item p {
    font-size: 14px;
    margin: 0;
}

/* Table Styles */
.table-section {
    margin-top: 40px;
}

.table-section h4 {
    color: #14452f;
    margin-bottom: 10px;
}

.table-note {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    font-style: italic;
}

.money-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.money-table th, .money-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.money-table th {
    background-color: #14452f;
    color: white;
    font-weight: 600;
}

.money-table.tipping th {
    background-color: #27ae60; /* Lighter green for tipping table */
}

.money-table tr:hover {
    background-color: #fcfcfc;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .money-highlights {
        grid-template-columns: 1fr;
    }
    .money-table {
        font-size: 14px;
    }
    .money-table th, .money-table td {
        padding: 10px;
    }
}

/* HOLIDAY SECTION STYLES */

.calendar-intro {
    background: #f4f7f6;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.calendar-alert {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    color: #14452f;
    font-weight: 700;
    border-top: 1px dashed #27ae60;
    padding-top: 15px;
}

.calendar-alert i {
    color: #27ae60;
}

/* Holiday Lists */
.holiday-container {
    display: flex;
    gap: 40px;
}

.holiday-year {
    flex: 1;
}

.holiday-year h4 {
    background: #14452f;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.holiday-list {
    list-style: none;
    padding: 0;
}

.holiday-list li {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.holiday-list li span {
    color: #27ae60;
    font-weight: bold;
    width: 80px;
}

.holiday-list li strong {
    flex: 1;
    color: #444;
}

.movable-note {
    font-size: 13px;
    color: #888;
    margin-top: 30px;
    font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .holiday-container {
        flex-direction: column;
    }
}

/* CONTACT SECTION STYLING */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    background: #fdfdfd;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
}

/* Sidebar Info */
.contact-info {
    flex: 1;
    background: #14452f; /* Deep Brand Green */
    color: white;
    padding: 40px;
    border-radius: 12px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 20px;
    color: #27ae60;
}

.info-item h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.info-item p {
    margin: 0;
    font-size: 15px;
    opacity: 0.8;
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: #27ae60;
}

/* Form Styling */
.contact-form-container {
    flex: 2;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #f9f9f9;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #27ae60;
    background: white;
}

.btn-submit {
    padding: 15px 30px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: #1e8449;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        padding: 20px;
    }
}

/* WISHLIST STYLES */
.wishlist-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.wishlist-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    text-align: center;
}

/* Floating Heart Icon */
.heart-circle {
    width: 100px;
    height: 100px;
    background: #f4f7f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: #27ae60;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.wishlist-content h2 {
    color: #14452f;
    font-size: 28px;
    margin-bottom: 15px;
}

.wishlist-content p {
    color: #777;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Action Button */
.btn-explore {
    display: inline-block;
    padding: 15px 40px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.3);
}

.btn-explore:hover {
    background: #14452f;
    transform: scale(1.05);
}

/* Mini Suggestions */
.suggestion-tray {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.suggestion-tray h5 {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mini-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mini-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #555;
    cursor: pointer;
}

.mini-item i {
    font-size: 18px;
    color: #27ae60;
}

.mini-item:hover {
    color: #14452f;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .wishlist-container { padding: 40px 20px; }
    .mini-grid { flex-wrap: wrap; }
}

.acc-layout {
    display: flex;
    gap: 40px;
    padding: 60px 0;
}

.acc-main { flex: 2; }
.acc-sidebar { flex: 1; }

/* Accordion Styling */
details {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

summary {
    padding: 20px;
    background-color: #fff;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #14452f;
}

details[open] summary {
    border-bottom: 1px solid #eee;
}

.tab-inner { padding: 25px; background: #fff; }

/* Photo Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Sidebar Styling */
.tripadvisor-box img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sidebar-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-outline, .btn-solid {
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
}

.btn-outline {
    border: 2px solid #27ae60;
    color: #14452f;
}

.btn-solid {
    background: #27ae60;
    color: white;
}

.map-container h4 {
    font-size: 14px;
    color: #14452f;
    border-bottom: 2px solid #27ae60;
    display: inline-block;
    margin-bottom: 15px;
}

.map-placeholder img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #eee;
}

/* Responsive */
@media (max-width: 992px) {
    .acc-layout { flex-direction: column; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.acc-layout {
    display: flex;
    gap: 40px;
    padding: 60px 0;
}

.acc-main { flex: 2; }
.acc-sidebar { flex: 1; }

/* Accordion Styling */
details {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

summary {
    padding: 20px;
    background-color: #fff;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #14452f;
}

details[open] summary {
    border-bottom: 1px solid #eee;
}

.tab-inner { padding: 25px; background: #fff; }

/* Photo Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Sidebar Styling */
.tripadvisor-box img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sidebar-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-outline, .btn-solid {
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
}

.btn-outline {
    border: 2px solid #27ae60;
    color: #14452f;
}

.btn-solid {
    background: #27ae60;
    color: white;
}

.map-container h4 {
    font-size: 14px;
    color: #14452f;
    border-bottom: 2px solid #27ae60;
    display: inline-block;
    margin-bottom: 15px;
}

.map-placeholder img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #eee;
}

/* Responsive */
@media (max-width: 992px) {
    .acc-layout { flex-direction: column; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Day Trips Layout */
.day-trips {
    padding: 60px 0;
    background-color: #fff;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 5px;
    color: #333;
}

.section-header p {
    color: #666;
    margin-bottom: 40px;
}

/* Grid System */
.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Card Styling */
.trip-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.trip-image {
    position: relative;
    height: 200px;
    background-color: #eee; /* Placeholder for unloaded images */
}

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

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.3);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

.trip-content {
    padding: 20px;
}

.trip-content h3 {
    font-size: 18px;
    color: #444;
    margin-bottom: 15px;
    height: 50px; /* Ensures alignment if text wraps */
}

/* Dropdown styling based on image */
.details-btn {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid #eee;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    cursor: pointer;
}

/* Primary Action Button */
.view-details-btn {
    display: block;
    text-align: center;
    background-color: #27ae60; /* Matches brand green */
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.view-details-btn:hover {
    background-color: #1e8449;
}

/* Duration Badge Styling */
.trip-image {
    position: relative;
    overflow: hidden;
}

.duration-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(20, 69, 47, 0.9); /* Deep Green */
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Enhancing the Card design */
.trip-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.trip-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trip-content h3 {
    min-height: 54px; /* Fixes alignment for 2-line titles */
}

/* Hover effect for badges */
.trip-card:hover .duration-badge {
    background: #27ae60;
    transition: 0.3s;
}

/* Medium Trips Specific Adjustments */

.medium-trips {
    padding: 80px 0;
    background-color: #fcfcfc;
}

/* Enhancing the duration badge for double-digit numbers */
.duration-badge {
    min-width: 70px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Adjusting Card height for longer titles */
.medium-trips .trip-content h3 {
    font-size: 19px;
    line-height: 1.4;
    min-height: 60px; /* Accommodates 3-line titles on smaller screens */
    margin-bottom: 20px;
    color: #14452f;
}

/* Detail button hover effect */
.details-btn:hover {
    background-color: #f4f4f4;
    border-color: #27ae60;
    color: #27ae60;
}

/* Adding a subtle border-top to separate the interactive area */
.trip-content {
    border-top: 1px solid #f0f0f0;
    padding-top: 25px;
}

/* Long Trips Layout Styling */
.long-trips {
    padding: 100px 0;
    background-color: #f0f4f2; /* Slightly different shade to denote premium status */
}

/* Special styling for the 29-day "Best of Ethiopia" card */
.premium-card {
    border: 2px solid #27ae60;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.duration-badge.gold {
    background: linear-gradient(135deg, #14452f 0%, #27ae60 100%);
    font-weight: 800;
    text-transform: uppercase;
}

/* Grid adjustment: Center the 5th card on desktop if needed */
.long-trips .trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

/* Card Content Emphasis */
.long-trips h3 {
    color: #14452f;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.long-trips .view-details-btn {
    letter-spacing: 1px;
}

/* Expeditions Styling */
.expeditions-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Dark theme for 'Expedition' vibe */
    color: #fff;
}

.expeditions-section .section-header h2 {
    color: #fff;
}

.expeditions-section .section-header p {
    color: #bbb;
}

/* Expedition Specific Card Style */
.expedition-card {
    background: #252525;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.expedition-card .trip-content h3 {
    color: #27ae60; /* High contrast green on dark background */
}

.expedition-card .details-btn {
    border-color: #444;
    color: #bbb;
}

.expedition-card .details-btn:hover {
    background: #333;
    color: #fff;
}

/* Rugged Duration Badge */
.duration-badge.expedition {
    background: #e67e22; /* Adventure Orange for Expeditions */
    font-weight: 700;
}

/* Responsive Grid centering for just two items */
@media (min-width: 992px) {
    .expeditions-section .trips-grid {
        display: flex;
        justify-content: center;
        gap: 30px;
    }
    .expedition-card {
        width: 350px;
    }
}

/* Hiking Section Specific Styles */
.hiking-section {
    padding: 80px 0;
    background-color: #f4f7f6;
}

/* Activity Icons for Hiking Cards */
.activity-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.activity-icons span {
    font-size: 12px;
    color: #27ae60;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.activity-icons i {
    font-size: 14px;
}

/* Card Content Adjustments */
.hiking-section .trip-content h3 {
    margin-bottom: 10px;
    color: #14452f;
    font-size: 20px;
}

/* Ensure the grid looks good with two items */
@media (min-width: 992px) {
    .hiking-section .trips-grid {
        display: flex;
        justify-content: flex-start; /* Aligns to left like your reference image */
        gap: 30px;
    }
    .hiking-section .trip-card {
        width: calc(33.333% - 20px); /* Keeps card size consistent with 3-column grids */
    }
}

/* Regions Header & Sort */
.regions-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    font-size: 14px;
    color: #444;
}

/* Grid Layout */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Region Card Styling */
.region-card {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.region-image-box {
    width: 100%;
    aspect-ratio: 1 / 1; /* Makes it a perfect square like the image */
    background-color: #e8e8e8; /* Gray placeholder */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.region-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.region-info h3 {
    font-size: 18px;
    color: #14452f;
    text-align: center;
    font-weight: 600;
}

.region-info span {
    font-size: 13px;
    color: #888;
    font-weight: 400;
    margin-left: 5px;
}

/* Hover Effects */
.region-card:hover {
    transform: translateY(-5px);
}

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

/* Responsive */
@media (max-width: 992px) {
    .regions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .regions-grid { grid-template-columns: 1fr; }
    .regions-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* Main Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    list-style: none;
    padding: 0;
}

.dropdown-content li {
    position: relative; /* Crucial for submenu positioning */
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: #27ae60;
}

/* Submenu Styling (The second level) */
.submenu {
    display: none;
    position: absolute;
    left: 100%; /* Positions it to the right of the main dropdown */
    top: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 8px 8px 16px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0;
}

/* Show second level on hover of the parent LI */
.has-submenu:hover > .submenu {
    display: block;
}

/* Highlight the active parent when hovering the submenu */
.has-submenu:hover > a {
    background-color: #f9f9f9;
    color: #27ae60;
}

/* Arrow rotation or color change on hover */
.has-submenu:hover .fa-caret-right {
    color: #27ae60;
}
/* Container & General */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Hero Section */
.destination-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('addis-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.destination-hero h1 { font-size: 48px; margin-bottom: 10px; }

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.hotel-highlight {
    background: #f9f9f9;
    padding: 20px;
    border-left: 4px solid #27ae60;
}

/* Gallery Styling */
.gallery-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
}

.gallery-item.large {
    grid-column: span 2;
    height: 400px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
}

.gallery-item:hover img { transform: scale(1.05); }

/* Entoto Card */
.entoto-card {
    background: #14452f;
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.entoto-meta {
    font-size: 24px;
    font-weight: bold;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 15px;
    border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .info-grid, .gallery-layout { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; height: 250px; }
    .entoto-card { flex-direction: column; text-align: center; gap: 20px; }
}

/* Hero Specifics */
.gojjam-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('gojjam-landscape.jpg');
    background-size: cover;
    background-position: center;
}

/* Split Content for Monastery */
.split-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}

.text-block { flex: 1; }
.feature-image { flex: 1; position: relative; }

.feature-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.travel-stat {
    margin-top: 25px;
    padding: 15px;
    background: #f0f7f4;
    border-radius: 8px;
    color: #14452f;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Nature Grid */
.nature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.nature-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
}

.icon-box {
    font-size: 32px;
    color: #27ae60;
    margin-bottom: 15px;
}

/* Accommodation Highlight */
.accommodation-highlight {
    display: flex;
    background: #14452f;
    color: white;
    border-radius: 15px;
    overflow: hidden;
}

.acc-text { padding: 40px; flex: 1; }
.acc-image { flex: 1; }
.acc-image img { width: 100%; height: 100%; object-fit: cover; }

/* Responsive */
@media (max-width: 768px) {
    .split-content, .nature-grid, .accommodation-highlight {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

/* Hero Specifics */
.asmara-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('asmara-road-landscape.jpg');
    background-size: cover;
    background-position: center;
}

/* Feature Card for Ankober */
.feature-card {
    display: flex;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    margin: 50px 0;
}

.card-image { flex: 1; position: relative; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }

.altitude-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #27ae60;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
}

.card-content { flex: 1.2; padding: 40px; }

/* Highlight Box */
.highlight-box {
    background: #fdf8f2;
    border-left: 4px solid #e67e22;
    padding: 20px;
    margin: 20px 0;
}

.travel-tip {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9em;
    color: #666;
}

/* Info Grid for Koremash/Birding */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.info-panel {
    background: #14452f;
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.info-panel i {
    font-size: 40px;
    margin-bottom: 20px;
    color: #27ae60;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-card, .info-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .card-image { height: 300px; }
}/* Hero Specifics */
.asmara-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('asmara-road-landscape.jpg');
    background-size: cover;
    background-position: center;
}

/* Feature Card for Ankober */
.feature-card {
    display: flex;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    margin: 50px 0;
}

.card-image { flex: 1; position: relative; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }

.altitude-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #27ae60;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
}

.card-content { flex: 1.2; padding: 40px; }

/* Highlight Box */
.highlight-box {
    background: #fdf8f2;
    border-left: 4px solid #e67e22;
    padding: 20px;
    margin: 20px 0;
}

.travel-tip {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9em;
    color: #666;
}

/* Info Grid for Koremash/Birding */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.info-panel {
    background: #14452f;
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.info-panel i {
    font-size: 40px;
    margin-bottom: 20px;
    color: #27ae60;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-card, .info-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .card-image { height: 300px; }
}

/* Hero Specifics */
.debre-zeit-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('bishoftu-lake.jpg');
    background-size: cover;
    background-position: center;
}

/* Luxury Spot Highlight */
.luxury-spot {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fdfaf0;
    border: 1px solid #e6ceac;
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
}

.luxury-spot i {
    font-size: 30px;
    color: #b8860b;
}

/* Dark Feature Card for Mount Zequala */
.feature-card.dark {
    display: flex;
    background: #14452f;
    color: white;
    border-radius: 15px;
    overflow: hidden;
    margin: 60px 0;
}

.feature-card.dark .card-content {
    flex: 1;
    padding: 50px;
}

.feature-card.dark .card-image {
    flex: 1;
}

.feature-card.dark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-tags {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.activity-tags span {
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.info-panel {
    padding: 40px;
    border-radius: 15px;
    background: #f9f9f9;
    position: relative;
}

.info-panel.highlighted {
    background: #eef7f2;
    border: 1px solid #27ae60;
}

.dist-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 12px;
    color: #27ae60;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .split-content, .feature-card.dark, .info-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}/* Hero Specifics */
.debre-zeit-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('bishoftu-lake.jpg');
    background-size: cover;
    background-position: center;
}

/* Luxury Spot Highlight */
.luxury-spot {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fdfaf0;
    border: 1px solid #e6ceac;
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
}

.luxury-spot i {
    font-size: 30px;
    color: #b8860b;
}

/* Dark Feature Card for Mount Zequala */
.feature-card.dark {
    display: flex;
    background: #14452f;
    color: white;
    border-radius: 15px;
    overflow: hidden;
    margin: 60px 0;
}

.feature-card.dark .card-content {
    flex: 1;
    padding: 50px;
}

.feature-card.dark .card-image {
    flex: 1;
}

.feature-card.dark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-tags {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.activity-tags span {
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.info-panel {
    padding: 40px;
    border-radius: 15px;
    background: #f9f9f9;
    position: relative;
}

.info-panel.highlighted {
    background: #eef7f2;
    border: 1px solid #27ae60;
}

.dist-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 12px;
    color: #27ae60;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .split-content, .feature-card.dark, .info-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

/* Hero Specifics */
.butajira-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('butajira-landscape.jpg');
    background-size: cover;
    background-position: center;
}

/* Timeline Layout */
.historical-timeline {
    margin: 80px 0;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.timeline-item.reversed {
    flex-direction: row-reverse;
}

.timeline-visual {
    flex: 1;
    position: relative;
}

.timeline-visual img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.timeline-content {
    flex: 1;
}

/* Badges & Tags */
.site-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #14452f;
    color: white;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.unesco-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #e67e22; /* UNESCO Gold/Orange */
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.dist-badge {
    display: inline-block;
    margin-top: 15px;
    color: #27ae60;
    font-weight: bold;
    border: 1px solid #27ae60;
    padding: 5px 15px;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .timeline-item, .timeline-item.reversed {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .dist-badge { margin-bottom: 20px; }
}

/* Hero Specifics */
.jimma-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('jimma-road-greenery.jpg');
    background-size: cover;
    background-position: center;
}

/* Forest Feature Card */
.forest-card {
    display: flex;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    margin: 50px 0;
}

.history-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #e67e22; /* Adventure Orange to highlight its "Oldest" status */
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
}

/* Activity Grid within Card */
.activity-grid {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #14452f;
    font-weight: 600;
}

.activity-item i {
    color: #27ae60;
}

.travel-badge {
    display: inline-block;
    padding: 10px 20px;
    background: #f0f7f4;
    color: #27ae60;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 10px;
}

/* Info Panels */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.info-panel.dark-green {
    background: #14452f;
    color: white;
    padding: 40px;
    border-radius: 15px;
}

.info-panel.border-green {
    border: 2px dashed #27ae60;
    padding: 40px;
    border-radius: 15px;
    color: #333;
}

.info-panel i {
    font-size: 30px;
    margin-bottom: 20px;
    color: #27ae60;
}

/* Responsive */
@media (max-width: 992px) {
    .forest-card, .info-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .card-image { height: 300px; }
}

/* Hero Specifics */
.ambo-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('wenchi-crater-lake.jpg');
    background-size: cover;
    background-position: center;
}

/* Addis Alem Card */
.addis-alem-section .feature-card {
    display: flex;
    background: #fdfaf5;
    border-radius: 15px;
    overflow: hidden;
    margin: 60px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.date-badge {
    background: #14452f;
    color: white;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 15px;
}

.museum-callout {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #27ae60;
    font-weight: 600;
    margin-top: 20px;
}

/* Wenchi Tourism Options */
.wenchi-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.tourism-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.option-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.option-card:hover {
    border-color: #27ae60;
    transform: translateY(-5px);
}

.option-card i {
    font-size: 35px;
    color: #27ae60;
    margin-bottom: 15px;
}

/* Quick Stops Panel */
.stop-panel {
    background: #14452f;
    color: white;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stop-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .addis-alem-section .feature-card, .tourism-options, .stop-panel {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

/* Hero Specifics */
.bahir-dar-hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('bahir-dar-lakefront.jpg');
    background-size: cover;
    background-position: center;
}

/* UNESCO Tag */
.unesco-tag {
    background: #27ae60;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

/* Location Cards */
.location-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.location-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card-img {
    height: 250px;
    position: relative;
}

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

.access-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #14452f;
    color: white;
    padding: 5px 12px;
    font-size: 11px;
    border-radius: 4px;
}

.card-body { padding: 25px; }

/* Blue Nile Falls Banner */
.falls-banner {
    display: flex;
    background: #f0f7f4;
    border-radius: 20px;
    overflow: hidden;
    margin: 60px 0;
    border: 1px solid #e0ede6;
}

.falls-content { padding: 50px; flex: 1; }
.falls-visual { flex: 1; }
.falls-visual img { width: 100%; height: 100%; object-fit: cover; }

.seasonal-tip {
    color: #e67e22;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

.pro-tip {
    margin-top: 30px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #555;
}

.pro-tip i { color: #f1c40f; font-size: 20px; }

/* Responsive */
@media (max-width: 768px) {
    .location-cards, .falls-banner {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

/* Hero Specifics */
.gondar-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('gondar-castles-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* UNESCO Banner */
.unesco-banner {
    text-align: center;
    background: #fdfaf0;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid #e6ceac;
}

.unesco-banner .badge {
    background: #b8860b; /* Golden Bronze */
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

/* Photo Grid */
.photo-grid-gondar {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.grid-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* Church Highlight Card */
.church-card {
    display: flex;
    background: #14452f;
    color: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 60px;
}

.church-info { padding: 50px; flex: 1; }
.church-art { flex: 1; }
.church-art img { width: 100%; height: 100%; object-fit: cover; }

.event-tag {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f1c40f;
}

/* Surroundings Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.info-panel {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid #27ae60;
}

/* Responsive */
@media (max-width: 768px) {
    .photo-grid-gondar, .church-card, .info-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

/* Hero Specifics */
.simien-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('simien-peaks-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* UNESCO & Park Pills */
.unesco-tag-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.unesco-pill, .park-pill {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}

.unesco-pill { background: #e67e22; color: white; }
.park-pill { background: #27ae60; color: white; }

/* Wildlife Grid */
.wildlife-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.wildlife-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.wildlife-card:hover { transform: translateY(-5px); }

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

.wildlife-info { padding: 20px; }
.wildlife-info h4 { color: #14452f; margin-bottom: 10px; }

/* Logistics Grid */
.logistics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.logistics-panel {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
}

.logistics-panel.highlight {
    background: #14452f;
    color: white;
}

.logistics-panel i {
    font-size: 35px;
    color: #27ae60;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .wildlife-grid { grid-template-columns: 1fr; }
    .logistics-grid { grid-template-columns: 1fr; }
}

/* Hero Specifics */
.axum-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('axum-stelae-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* Ark Section Card */
.ark-card {
    display: flex;
    background: #fdfaf0;
    border-radius: 15px;
    overflow: hidden;
    margin: 60px 0;
    border: 1px solid #e6ceac;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ark-content { padding: 50px; flex: 1.2; }
.ark-visual { flex: 1; }
.ark-visual img { width: 100%; height: 100%; object-fit: cover; }

.sacred-badge {
    background: #b8860b;
    color: white;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.festival-callout {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border-left: 4px solid #b8860b;
}

/* Stelae Grid */
.stelae-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0 60px;
}

.stela-card {
    background: #14452f;
    color: white;
    padding: 30px;
    border-radius: 12px;
}

/* Church Panels */
.church-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 80px;
}

.church-panel {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
}

.church-panel.highlight-gold {
    background: #b8860b;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .ark-card, .stelae-grid, .church-dual-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

/* Hero Specifics */
.tigray-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('tigray-mountains-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* Yeha Card */
.yeha-section .feature-card {
    display: flex;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 60px 0;
}

.age-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #e67e22;
    color: white;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: bold;
}

/* Debre Damo Banner */
.adventure-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #14452f;
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.warning-pill {
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.banner-stat {
    text-align: center;
    border: 2px solid #27ae60;
    padding: 20px;
    border-radius: 15px;
    min-width: 150px;
}

.banner-stat i { font-size: 30px; display: block; margin-bottom: 10px; }

/* Church Access Grid */
.church-access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0 60px;
}

.access-panel {
    padding: 40px;
    border-radius: 15px;
    background: #f9f9f9;
}

.access-panel.highlight-green {
    background: #eef7f2;
    border: 1px solid #27ae60;
}

.access-panel i {
    font-size: 30px;
    color: #27ae60;
    margin-bottom: 20px;
}

/* Stay Card */
.stay-card {
    background: linear-gradient(to right, #14452f, #27ae60);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .yeha-section .feature-card, .adventure-banner, .church-access-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

/* Hero Specifics */
.lalibela-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('lalibela-aerial-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* Spotlight for Bet Giyorgis */
.church-spotlight {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 60px 0;
    background: #fdfaf5;
    padding: 30px;
    border-radius: 20px;
}

.spotlight-image { flex: 1.2; position: relative; }
.spotlight-image img { width: 100%; border-radius: 15px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }

.church-label {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: #b8860b;
    color: white;
    padding: 8px 20px;
    font-weight: bold;
    border-radius: 5px;
}

.spotlight-text { flex: 1; }

/* Cluster Cards */
.clusters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.cluster-card {
    text-align: center;
    padding: 40px;
    border: 1px solid #e6ceac;
    border-radius: 15px;
    transition: 0.3s;
}

.cluster-card i { font-size: 40px; color: #b8860b; margin-bottom: 20px; }
.cluster-card:hover { background: #fdfaf5; }

/* Faith Section */
.faith-section {
    background: #14452f;
    color: white;
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.festival-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.fest-item strong { display: block; color: #f1c40f; font-size: 1.2em; margin-bottom: 5px; }

/* Hiking Surroundings */
.side-trip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.side-trip-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.side-trip-card.highlight { border-left: 5px solid #27ae60; }

.activity-tag {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.85em;
    font-weight: bold;
    color: #27ae60;
}

/* Community Footer */
.community-footer {
    text-align: center;
    padding: 40px;
    background: #eef7f2;
    border-radius: 15px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 992px) {
    .church-spotlight, .clusters-grid, .festival-grid, .side-trip-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}
/* Hero Specifics */
.road-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('ethiopian-road-landscape.jpg');
    background-size: cover;
    background-position: center;
}

/* Route Segments */
.route-segment { margin-bottom: 50px; }

.route-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-num {
    background: #27ae60;
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.route-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stop-box {
    margin-top: 15px;
    padding: 10px 15px;
    background: #fff;
    border-left: 4px solid #e67e22;
    font-size: 0.9em;
}

.travel-meta {
    text-align: right;
    font-weight: bold;
    color: #14452f;
}

.travel-meta span { display: block; }

/* Adventure Highlight (Gondar to Axum) */
.highlight-adventure .adventure-box {
    background: #14452f;
    color: white;
    padding: 40px;
    border-radius: 15px;
}

.road-warning {
    margin-top: 20px;
    color: #f1c40f;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Travel Table */
.travel-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.travel-table th, .travel-table td {
    text-align: left;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.travel-table th { background: #f4f4f4; color: #14452f; }

.pro-tip {
    background: #eef7f2;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #27ae60;
}

/* Responsive */
@media (max-width: 768px) {
    .route-card, .travel-table thead { display: none; }
    .travel-table td { display: block; padding: 10px 0; }
}

/* Hero Specifics */
.awash-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('awash-savanna-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* Savanna Highlights */
.highlight-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.highlight-row.reversed { flex-direction: row-reverse; }

.highlight-image { flex: 1; position: relative; }
.highlight-image img { width: 100%; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.nature-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #e67e22;
    color: white;
    padding: 8px 18px;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
}

/* Wildlife Safari Card */
.wildlife-safari {
    background: #fdfaf5;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 60px;
    border: 1px solid #e6ceac;
}

.safari-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #14452f;
}

.safari-header i { font-size: 30px; color: #27ae60; }

.birding-stats {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px dashed #d2b48c;
    text-align: center;
}

.birding-stats .count {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: #27ae60;
}

.birding-stats .label {
    font-weight: bold;
    text-transform: uppercase;
    color: #14452f;
}

/* Accommodation Grid */
.accommodation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.stay-panel {
    padding: 30px;
    border-radius: 12px;
}

.stay-panel.dark { background: #14452f; color: white; }
.stay-panel.light { background: #eef7f2; color: #14452f; border: 1px solid #27ae60; }

/* Responsive */
@media (max-width: 768px) {
    .highlight-row, .highlight-row.reversed, .accommodation-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

/* Hero Specifics */
.harar-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('harar-gates-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* Heritage Section */
.heritage-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin: 60px 0;
}

.heritage-card {
    background: #fdfaf5;
    padding: 40px;
    border-radius: 15px;
    border-top: 5px solid #d35400; /* Burnt Orange */
}

.unesco-pill {
    background: #14452f;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.museum-card {
    background: #d35400;
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.museum-card i { font-size: 40px; margin-bottom: 20px; }

/* Hyena Feature */
.hyena-feature {
    background: #1a1a1a;
    color: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
}

.hyena-container { display: flex; align-items: center; }
.hyena-text { padding: 60px; flex: 1.2; }
.hyena-image { flex: 1; }
.hyena-image img { width: 100%; height: 100%; object-fit: cover; }

.timing-note {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f1c40f;
}

/* Culture & Markets */
.market-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 15px;
}

.icon-item {
    text-align: center;
    font-weight: bold;
    color: #14452f;
}

.icon-item i {
    display: block;
    font-size: 30px;
    color: #d35400;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .heritage-grid, .hyena-container, .market-icons {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

/* Hero Specifics */
.danakil-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('danakil-dallol-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* Volcano Cards */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 60px 0;
}

.volcano-card {
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background-size: cover;
}

.erta-ale { background-image: url('erta-ale-lava.jpg'); }
.dallol { background-image: url('dallol-sulfur.jpg'); }

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 40px;
    color: white;
}

.type-tag {
    background: #e74c3c;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
}

.travel-tip {
    margin-top: 15px;
    font-size: 0.85em;
    color: #f1c40f;
    font-style: italic;
}

/* Salt Plains Section */
.salt-plains {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 20px;
    display: flex;
    margin-bottom: 60px;
    overflow: hidden;
}

.salt-content { padding: 50px; flex: 1; }
.salt-visual { 
    flex: 1; 
    background: #f4f4f4; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-weight: bold;
    color: #999;
}

/* Paleontology Box */
.world-heritage-box {
    background: #14452f;
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
}

.heritage-badge {
    border: 1px solid #27ae60;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
    display: inline-block;
}

/* Expedition Grid */
.specs-grid {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    background: #fdfaf5;
    border-radius: 15px;
    border: 1px solid #d2b48c;
}

.spec-item {
    text-align: center;
    font-weight: bold;
    color: #14452f;
}

.spec-item i {
    display: block;
    font-size: 30px;
    margin-bottom: 15px;
    color: #e67e22;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-split, .salt-plains, .specs-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

/* Hero Specifics */
.jimma-hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('jimma-forest-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* Coffee Origin Card */
.origin-card {
    display: flex;
    background: #f4ece2; /* Coffee-cream tone */
    border-radius: 20px;
    overflow: hidden;
    margin: 60px 0;
    border: 1px solid #d7ccc8;
}

.origin-content { padding: 50px; flex: 1.2; }
.origin-visual { flex: 1; }
.origin-visual img { width: 100%; height: 100%; object-fit: cover; }

.legend-tag {
    background: #3e2723; /* Dark Coffee Brown */
    color: white;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.cultural-note {
    margin-top: 25px;
    padding: 15px;
    border-left: 4px solid #3e2723;
    font-style: italic;
    background: rgba(255,255,255,0.5);
}

/* History Grid */
.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.history-panel {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 4px solid #27ae60;
}

/* Nature Banner */
.nature-banner {
    background: #1b5e20; /* Deep Forest Green */
    color: white;
    padding: 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nature-text { flex: 2; }
.nature-stats { flex: 1; display: flex; flex-direction: column; gap: 20px; }

.stat-item {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.stat-item i { font-size: 24px; display: block; margin-bottom: 5px; color: #a5d6a7; }

/* Advisory Footer */
.advisory-box {
    background: #fff3e0;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #ffe0b2;
}

.advisory-box i { font-size: 30px; color: #ef6c00; }

/* Responsive */
@media (max-width: 768px) {
    .origin-card, .history-grid, .nature-banner {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

/* Hero Specifics */
.gambella-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('baro-river-gambella.jpg');
    background-size: cover;
    background-position: center;
}

/* Culture Card */
.culture-card {
    background: #fdfaf5;
    padding: 50px;
    border-radius: 20px;
    margin: 60px 0;
    border: 1px solid #e6ceac;
}

.people-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.people-panel {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #14452f;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Park Section */
.park-exploration {
    background: #14452f;
    color: white;
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.park-header { text-align: center; margin-bottom: 40px; }
.park-header i { font-size: 40px; color: #27ae60; margin-bottom: 20px; }

.wildlife-callout {
    display: flex;
    gap: 40px;
    background: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 15px;
}

.species-list { flex: 2; }
.species-list ul { list-style: none; padding: 0; margin-top: 15px; }
.species-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.species-list li::before { content: "•"; color: #27ae60; font-weight: bold; }

.birding-note {
    flex: 1;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.birding-note i { font-size: 30px; color: #f1c40f; margin-bottom: 15px; }

/* Travel Advisory */
.advisory-box {
    background: #fff3e0;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #ffe0b2;
}

/* Responsive */
@media (max-width: 768px) {
    .people-grid, .wildlife-callout {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .birding-note { border-left: none; border-top: 1px solid rgba(255,255,255,0.2); padding: 30px 0 0; }
}

/* Hero Specifics */
.southwest-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('omo-river-savanna.jpg');
    background-size: cover;
    background-position: center;
}

/* Estate Cards */
.estate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.estate-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border-bottom: 3px solid #27ae60;
}

.estate-card i { font-size: 30px; color: #14452f; margin-bottom: 15px; }

/* Suri Culture Box */
.culture-box {
    display: flex;
    background: #1a1a1a;
    color: white;
    border-radius: 20px;
    overflow: hidden;
    margin: 60px 0;
}

.culture-text { padding: 50px; flex: 1.2; }
.culture-image { flex: 1; }
.culture-image img { width: 100%; height: 100%; object-fit: cover; }

.heritage-label {
    background: #d35400;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
}

.event-callout {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-left: 4px solid #d35400;
}

/* Wilderness Panels */
.wilderness-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.wild-panel {
    padding: 40px;
    border-radius: 15px;
    color: white;
}

.wild-panel.trekking { background: #14452f; }
.wild-panel.park { background: #27ae60; }

/* Origins Feature */
.origins-feature {
    background: #fdfaf5;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e6ceac;
    margin-bottom: 60px;
}

.unesco-badge {
    border: 1px solid #d35400;
    color: #d35400;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 20px;
}

.origin-fact {
    margin-top: 25px;
    font-weight: bold;
    color: #14452f;
}

/* Logistics Footer */
.logistics-alert {
    background: #fff3e0;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .culture-box, .wilderness-grid, .estate-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}


/* Hero Specifics */
.rift-hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('rift-valley-panorama.jpg');
    background-size: cover;
    background-position: center;
}

/* Langano Swimming Card */
.swimming-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 60px 0;
    border: 1px solid #e0f2f1;
}

.card-content { padding: 50px; flex: 1.2; }
.card-image { flex: 1; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }

.safe-badge {
    background: #00796b;
    color: white;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

/* Birding Route Grid */
.birding-header { text-align: center; margin-bottom: 30px; }
.birding-header i { font-size: 40px; color: #27ae60; }

.lake-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.lake-panel {
    background: #f9f9f9;
    padding: 35px;
    border-radius: 15px;
    border-top: 4px solid #00acc1;
}

/* Abiata-Shala Banner */
.park-banner {
    background: #14452f;
    color: white;
    padding: 50px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.volcanic-tag {
    text-align: center;
    border: 1px solid #f1c40f;
    padding: 20px;
    border-radius: 15px;
    color: #f1c40f;
}

/* Hawassa Section */
.hawassa-hub {
    background: #e0f2f1;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.resort-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.resort-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #d32f2f;
}

/* Responsive */
@media (max-width: 768px) {
    .swimming-card, .lake-grid, .park-banner, .resort-highlights {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}
/* Hero Specifics */
.arbaminch-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('arba-minch-lakes-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* Park Feature Grid */
.park-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin: 60px 0;
    align-items: center;
}

.crocodile-market {
    margin-top: 30px;
    padding: 25px;
    background: #e0f2f1;
    border-radius: 12px;
    border-left: 5px solid #00796b;
}

.park-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Dorze Culture Cards */
.dorze-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.dorze-card {
    text-align: center;
    padding: 30px;
    background: #fdfaf5;
    border: 1px solid #e6ceac;
    border-radius: 15px;
    transition: 0.3s ease;
}

.dorze-card i { font-size: 30px; color: #d35400; margin-bottom: 20px; }
.dorze-card:hover { transform: translateY(-5px); background: #fff; }

/* Stay and Shop Panels */
.info-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.panel {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
}

.panel.highlight {
    background: #14452f;
    color: white;
}

.panel ul { list-style: none; padding: 0; margin-top: 15px; }
.panel li { margin-bottom: 10px; }

/* Responsive */
@media (max-width: 992px) {
    .park-grid, .dorze-grid, .info-row {
        grid-template-columns: 1fr;
    }
}

/* Hero Specifics */
.konso-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('konso-terraces-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* Architecture Card */
.arch-card {
    display: flex;
    background: #f4f1ea;
    border-radius: 20px;
    overflow: hidden;
    margin: 60px 0;
    border: 1px solid #dcd7ca;
}

.card-text { padding: 50px; flex: 1.5; }
.card-visual { 
    flex: 1; 
    background: #7d6b5d; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: #f4f1ea;
}

.generation-box {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-left: 5px solid #7d6b5d;
    border-radius: 0 10px 10px 0;
}

/* Waga Section */
.waga-section {
    background: #1a1a1a;
    color: white;
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.waga-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.waga-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.waga-list li::before {
    content: "◈";
    position: absolute;
    left: 0;
    color: #e67e22;
}

/* Agriculture Panel */
.agriculture-panel {
    background: #2d5a27; /* Forest Green */
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
}

.agriculture-panel i { font-size: 30px; margin-bottom: 15px; }

/* Meta Grid */
.meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.meta-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border-bottom: 3px solid #7d6b5d;
}

/* Responsive */
@media (max-width: 768px) {
    .arch-card, .meta-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

/* Hero Specifics */
.weyto-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('weyto-valley-landscape.jpg');
    background-size: cover;
    background-position: center;
}

/* Tribe Feature Card */
.tribe-card {
    display: flex;
    background: #fdfaf5;
    border-radius: 20px;
    overflow: hidden;
    margin: 60px 0;
    border: 1px solid #e6ceac;
}

.tribe-text { padding: 50px; flex: 1.2; }
.tribe-image { flex: 1; }
.tribe-image img { width: 100%; height: 100%; object-fit: cover; }

.rarity-tag {
    background: #8d6e63;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
}

.cultural-link {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border-left: 4px solid #8d6e63;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Valley Grid */
.valley-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.market-panel {
    background: #14452f;
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.market-panel i { font-size: 35px; color: #f1c40f; margin-bottom: 20px; }

/* Junction Logistics Footer */
.junction-box {
    display: flex;
    justify-content: space-around;
    background: #eee;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.direction strong { display: block; color: #14452f; margin-bottom: 5px; }
.divider { width: 1px; background: #ccc; }

/* Responsive */
@media (max-width: 768px) {
    .tribe-card, .valley-grid, .junction-box {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .divider { height: 1px; width: 100%; margin: 20px 0; }
}

/* Hero Specifics */
.arbore-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('arbore-village-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* Bull Pride Card */
.bull-card {
    background: #4e342e; /* Deep Brown */
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.bull-card i {
    font-size: 50px;
    color: #d35400;
    margin-bottom: 20px;
}

/* Agriculture Grid */
.agri-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.agri-image { flex: 1; }
.agri-image img { width: 100%; border-radius: 15px; }
.agri-text { flex: 1.2; }

.variety-tag {
    margin-top: 20px;
    padding: 10px 20px;
    background: #eef7f2;
    color: #14452f;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
}

/* Info Footer */
.info-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.geo-box, .research-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    border-top: 3px solid #d35400;
}

/* Responsive */
@media (max-width: 768px) {
    .agri-grid, .info-flex {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

/* Hero Specifics */
.turmi-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('hamar-sunset-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* Bull Jump Card */
.bull-jump-card {
    background: #4e342e; /* Deep Hide Brown */
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin: 60px 0;
    border-left: 8px solid #d35400; /* Ochre accent */
}

.ceremony-tag {
    background: #d35400;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
}

.ritual-note {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    font-style: italic;
    font-size: 0.95em;
    border-radius: 10px;
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.social-panel {
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    background: #fdfaf5;
    border: 1px solid #e6ceac;
}

.social-panel i { font-size: 35px; color: #d35400; margin-bottom: 20px; }

/* Exploration Hub */
.exploration-hub {
    background: #14452f;
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.excursion-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.excursion-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
}

.excursion-item strong { display: block; color: #27ae60; margin-bottom: 5px; }

/* Stay Footer */
.stay-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #eee;
    padding: 30px;
    border-radius: 12px;
}

.lodge strong { color: #4e342e; font-size: 1.1em; }

/* Responsive */
@media (max-width: 768px) {
    .social-grid, .excursion-list, .stay-box {
        grid-direction: column;
        grid-template-columns: 1fr;
    }
}

/* Hero Specifics */
.omerate-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('omerate-river-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* Tradition Card */
.tradition-card {
    display: flex;
    background: #fdfaf5;
    border-radius: 20px;
    overflow: hidden;
    margin: 60px 0;
    border: 1px solid #d2b48c;
}

.tradition-content { padding: 50px; flex: 1.5; }
.tradition-image { 
    flex: 1; 
    background: #8d6e63; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: white;
}

.status-tag {
    background: #a0522d; /* Sienna */
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
}

.artifact-highlight {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.artifact-highlight i { font-size: 24px; color: #a0522d; }

/* River Section */
.river-experience {
    background: #14452f; /* River Green */
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
}

.transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.transport-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    transition: background 0.3s;
}

.transport-item:hover { background: rgba(255,255,255,0.2); }
.transport-item i { font-size: 30px; color: #4db6ac; margin-bottom: 15px; }

/* Frontier Footer */
.frontier-box {
    background: #eee;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.frontier-box i { font-size: 35px; color: #e67e22; }

/* Responsive */
@media (max-width: 768px) {
    .tradition-card, .transport-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

/* Hero Specifics */
.murelle-hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('karo-omo-river-view.jpg');
    background-size: cover;
    background-position: center;
}

/* Art Feature Card */
.art-card {
    display: flex;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    margin: 60px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.art-content { padding: 50px; flex: 1.2; }
.art-image { 
    flex: 1; 
    background: #1a1a1a; 
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-tag {
    background: #000;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.ceremony-note {
    margin-top: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid #000;
    font-style: italic;
}

/* Decoration Grid */
.decoration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.decor-panel {
    background: #fdfaf5;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e6ceac;
}

.decor-panel h4 { color: #8d6e63; margin-bottom: 15px; text-transform: uppercase; }

/* Insight Footer */
.insight-box {
    background: #14452f;
    color: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.insight-box i { font-size: 30px; color: #27ae60; }

/* Responsive */
@media (max-width: 768px) {
    .art-card, .decoration-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

/* Hero Specifics */
.nyangatom-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('nyangatom-savanna-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* Identity Card */
.identity-card {
    display: flex;
    background: #fdfaf5;
    border-radius: 20px;
    overflow: hidden;
    margin: 60px 0;
    border: 1px solid #d2b48c;
}

.identity-content { padding: 50px; flex: 1.5; }
.identity-visual { 
    flex: 1; 
    background: #5d4037; 
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.heritage-tag {
    background: #8b0000; /* Deep Red */
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
}

.cultural-note {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-left: 5px solid #8b0000;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* Access Alert Box */
.access-alert {
    margin-bottom: 60px;
}

.alert-box {
    background: #fff3e0;
    border: 1px solid #ffe0b2;
    padding: 40px;
    border-radius: 20px;
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #e65100;
}

.alert-header i { font-size: 28px; }

/* Geo Grid */
.geo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.geo-panel {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    border-top: 4px solid #5d4037;
}

/* Footer Tip */
.travel-tip {
    background: #14452f;
    color: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.travel-tip i { font-size: 30px; color: #4db6ac; }

/* Responsive */
@media (max-width: 768px) {
    .identity-card, .geo-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}
/* Hero Specifics */
.keyafar-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('key-afar-red-soil.jpg');
    background-size: cover;
    background-position: center;
}

/* Culture Card */
.culture-card {
    display: flex;
    background: #fdfaf5;
    border-radius: 20px;
    overflow: hidden;
    margin: 60px 0;
    border: 1px solid #e6ceac;
}

.culture-text { padding: 50px; flex: 1.2; }
.culture-image { 
    flex: 1; 
    background: #a52a2a; /* Red Soil Brown */
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: white;
}

.tribe-label {
    background: #c0392b;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
}

.relation-note {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-left: 4px solid #c0392b;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Market Grid */
.market-feature {
    background: #14452f;
    color: white;
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.market-header { text-align: center; margin-bottom: 40px; }
.market-header i { font-size: 40px; color: #f1c40f; margin-bottom: 15px; }

.market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.market-sector {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 12px;
}

.market-sector h4 { color: #f1c40f; margin-bottom: 10px; }

/* Logistics Footer */
.visit-box {
    background: #eee;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.visit-box i { font-size: 35px; color: #c0392b; }

/* Responsive */
@media (max-width: 992px) {
    .culture-card, .market-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

/* Hero Specifics */
.jinka-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('jinka-aerial-view.jpg');
    background-size: cover;
    background-position: center;
}

/* Mursi Feature */
.mursi-card {
    display: flex;
    background: #fdfaf5;
    border-radius: 20px;
    overflow: hidden;
    margin: 60px 0;
    border: 1px solid #dcd7ca;
}

.mursi-text { padding: 50px; flex: 1.2; }
.mursi-image { flex: 1; }
.mursi-image img { width: 100%; height: 100%; object-fit: cover; }

.fame-tag {
    background: #8b0000;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
}

.interaction-tip {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border-left: 5px solid #8b0000;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mago Park Grid */
.mago-park {
    background: #14452f;
    color: white;
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.wildlife-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.wildlife-item {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.wildlife-item i { font-size: 30px; color: #27ae60; margin-bottom: 15px; }

/* Ari Culture Box */
.ari-box {
    display: flex;
    justify-content: space-between;
    background: #eee;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.ari-stats { display: flex; gap: 30px; text-align: center; }
.stat strong { display: block; font-size: 24px; color: #14452f; }

/* Stay Footer */
.stay-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

.stay-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
}

.stay-card.featured {
    border-top: 4px solid #27ae60;
}

/* Responsive */
@media (max-width: 768px) {
    .mursi-card, .wildlife-grid, .ari-box, .stay-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

/* Hero Specifics */
.yabello-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('borana-savanna-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* Singing Wells Card */
.well-card {
    background: #1a237e; /* Indigo - representing deep water */
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin: 60px 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.tradition-tag {
    background: #fbc02d;
    color: #000;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
}

.ritual-box {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* El Sod Crater Grid */
.crater-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.crater-text {
    padding: 30px;
    border-right: 5px solid #000;
    text-align: right;
}

.hike-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Sanctuary Grid */
.sanctuary-panel {
    background: #f5f5f5;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.species-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.species-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border-bottom: 4px solid #2e7d32;
}

/* Footer Logistics */
.logistics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.logistics-item {
    background: #eee;
    padding: 25px;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .crater-grid, .species-grid, .logistics-grid {
        grid-template-columns: 1fr;
    }
    .crater-text { text-align: left; border-right: none; border-left: 5px solid #000; }
}

/* Hero Specifics */
.bale-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('bale-plateau-hero.jpg');
    background-size: cover;
    background-position: center;
}

/* Park Card */
.park-card {
    display: flex;
    background: #f4f7f6;
    border-radius: 20px;
    overflow: hidden;
    margin: 60px 0;
}

.park-text { padding: 50px; flex: 1.2; }
.park-image { flex: 1; }

.elev-tag {
    background: #2c3e50;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
}

.wildlife-alert {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border-left: 5px solid #27ae60;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Sof Omar Caves */
.sof-omar-section {
    background: #1a1a1a;
    color: white;
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 60px;
    text-align: center;
}

.cave-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.opt-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
}

.opt-box.adventure { border: 1px solid #e67e22; }

/* Trekking Panel */
.trek-panel {
    background: #2d5a27;
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.trek-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Footer Stay */
.stay-box {
    background: #eee;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .park-card, .cave-options, .trek-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

/* Route Segment Layout */
.route-segment {
    margin: 60px 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.route-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.road-status {
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.road-status.tar { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.road-status.construction { background: #fff3e0; color: #e65100; border: 1px solid #ffe0b2; }

.site-tags span {
    display: inline-block;
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    margin: 5px;
    border: 1px solid #ddd;
}

/* Logistics Table */
.logistics-table {
    overflow-x: auto;
    margin-top: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

th, td {
    text-align: left;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

th { background: #f8f9fa; color: #555; text-transform: uppercase; font-size: 0.8em; }

/* Wildlife Panel */
.wildlife-corridor {
    background: #14452f;
    color: white;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.wildlife-text i { font-size: 30px; color: #f1c40f; margin-bottom: 15px; }

/* Responsive */
@media (max-width: 768px) {
    .route-grid { grid-template-columns: 1fr; }
    .wildlife-corridor { flex-direction: column; text-align: center; }
}

/* Container & General */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Hero Section */
.destination-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('addis-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.destination-hero h1 { font-size: 48px; margin-bottom: 10px; }

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.hotel-highlight {
    background: #f9f9f9;
    padding: 20px;
    border-left: 4px solid #27ae60;
}

/* Gallery Styling */
.gallery-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
}

.gallery-item.large {
    grid-column: span 2;
    height: 400px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
}

.gallery-item:hover img { transform: scale(1.05); }

/* Entoto Card */
.entoto-card {
    background: #14452f;
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.entoto-meta {
    font-size: 24px;
    font-weight: bold;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 15px;
    border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .info-grid, .gallery-layout { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; height: 250px; }
    .entoto-card { flex-direction: column; text-align: center; gap: 20px; }
}

/* Hero Specifics */
.gojjam-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('gojjam-landscape.jpg');
    background-size: cover;
    background-position: center;
}

/* Split Content for Monastery */
.split-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}

.text-block { flex: 1; }
.feature-image { flex: 1; position: relative; }

.feature-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.travel-stat {
    margin-top: 25px;
    padding: 15px;
    background: #f0f7f4;
    border-radius: 8px;
    color: #14452f;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Nature Grid */
.nature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.nature-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
}

.icon-box {
    font-size: 32px;
    color: #27ae60;
    margin-bottom: 15px;
}

/* Accommodation Highlight */
.accommodation-highlight {
    display: flex;
    background: #14452f;
    color: white;
    border-radius: 15px;
    overflow: hidden;
}

.acc-text { padding: 40px; flex: 1; }
.acc-image { flex: 1; }
.acc-image img { width: 100%; height: 100%; object-fit: cover; }

/* Responsive */
@media (max-width: 768px) {
    .split-content, .nature-grid, .accommodation-highlight {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}


/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    padding: 5px 0; /* Add some vertical padding */
}

.header-logo {
    height: 72px;  /* Increased from 60px */
    width: auto;
    max-width: 240px; /* Increased from 200px */
    object-fit: contain;
    transition: transform 0.2s ease;
}

/* Subtle hover effect */
.logo-link:hover .header-logo {
    transform: scale(1.03);
    opacity: 0.9;
}

/* Responsive scaling */
@media (max-width: 1200px) {
    .header-logo {
        height: 65px;
        max-width: 220px;
    }
}

@media (max-width: 992px) {
    .header-logo {
        height: 60px;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .header-logo {
        height: 55px;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .header-logo {
        height: 50px;
        max-width: 160px;
    }
}
s

/* Hamburger Styles */
.menu-toggle {
    display: none; /* Hidden by default */
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}
@media screen and (max-width: 992px) {
    /* Force the main menu to show when active */
    .nav-links.active {
        display: block !important;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        max-height: 80vh; /* Prevents menu from being longer than the screen */
        overflow-y: auto; /* Adds scroll if menu is too long */
        z-index: 999;
    }

    /* Hide dropdown content by default on mobile */
    .dropdown-content {
        display: none;
        position: static; /* Stack them vertically */
        width: 100%;
        background-color: #f9f9f9;
    }

    /* Show dropdown when we add the .open class via JS */
    .dropdown.show-mobile .dropdown-content {
        display: block !important;
    }

    /* Make the links look better on mobile */
    .nav-links li {
        border-bottom: 1px solid #eee;
    }
}
@media screen and (max-width: 992px) {
    .menu-toggle {
        display: block; /* Show hamburger on mobile */
    }

    .nav-links {
        display: none; /* Hide links by default on mobile */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Adjust based on navbar height */
        left: 0;
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    /* Show menu when 'active' class is added via JS */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    /* Adjust dropdowns for mobile */
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

    .dropdown.open-mobile > .dropdown-content {
        display: block !important;
        background-color: #f1f1f1;
        padding-left: 15px;
    }


/* 1. Ensure the navbar container uses Flexbox */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 20px;
}

/* 2. Style the Hamburger Icon */
.menu-toggle {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    font-size: 24px;
    color: #333;
    z-index: 1001;
}

/* 3. Mobile Specific Styles (Breakpoints) */
@media screen and (max-width: 992px) {
    .menu-toggle {
        display: block; /* Show hamburger on mobile */
    }

    .nav-links {
        display: none; /* Hide the long list of links */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Sits right under the navbar */
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    /* Class to show menu when clicked */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    /* Make dropdowns stack vertically on mobile */
    .dropdown-content {
        position: static;
        box-shadow: none;
    }
}


@media screen and (max-width: 992px) {
    /* This forces the menu to show when the JS adds the class */
    .nav-links.active {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        /* Ensure it's on top of the hero image */
        z-index: 9999 !important; 
    }
    
    /* Make sure the toggle itself is clickable */
    #mobile-menu {
        display: block !important;
        position: relative;
        z-index: 10000 !important;
        padding: 10px;
    }
}

.blue-text {
            color: #5b9bd5;
        }

        .blue-line {
            width: 35px;
            height: 3px;
            background-color: #5b9bd5;
            margin: 15px 0;
        }

        /* Header Section */
        .header-content h2 {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #333;
            margin: 0;
            text-transform: uppercase;
        }

        .header-content p {
            font-size: 14px;
            max-width: 850px;
            margin-top: 20px;
        }

        /* Gallery Section */
        .gallery-strip {
            display: flex;
            width: 100%;
            height: 250px; /* Adjust height as needed */
            margin: 20px 0;
        }

        .gallery-item {
            flex: 1;
            overflow: hidden;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        /* Footer/Region Section */
        .region-footer {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 40px;
        }

        .region-footer h3 {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: #333;
            margin: 0;
        }

        .view-all {
            font-size: 12px;
            color: #5b9bd5;
            text-decoration: none;
            font-weight: bold;
            margin-left: 10px;
        }

        .globe-icon {
            width: 35px;
            height: 35px;
            border: 1px dashed #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        /* Mobile Optimization */
        @media (max-width: 768px) {
            .gallery-strip {
                flex-wrap: wrap;
                height: auto;
            }
            .gallery-item {
                flex: 1 0 50%; /* 2 images per row on small screens */
                height: 150px;
            }
            .region-footer {
                flex-direction: column;
                align-items: flex-start;
            }
        }
.main-footer {
    background: #184c3a; /* deep green */
    color: #ffffff;
    font-size: 14px;
}

/* Partner logos section */
.partner-logos {
    background: #143f31;
    padding: 20px 0;
    text-align: center;
}

.partner-logos img {
    height: 50px;
    margin: 0 20px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* Footer bottom layout */
.footer-bottom {
    padding: 60px 0 20px;
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Headings (gold color like screenshot) */
.footer-col h4 {
    color: #f7c948; /* gold */
    margin-bottom: 15px;
    font-size: 16px;
}

/* Text */
.footer-col p,
.footer-col a {
    color: #eaeaea;
    line-height: 1.7;
    text-decoration: none;
}

/* Links hover */
.footer-links li {
    list-style: none;
    margin-bottom: 8px;
}

.footer-links a:hover {
    color: #f7c948;
}

/* Icons spacing */
.footer-col i {
    margin-right: 8px;
    color: #f7c948;
}

/* Payment icons */
.payments i {
    font-size: 28px;
    margin-right: 10px;
    color: #ffffff;
}

/* Button */
.btn-footer {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 15px;
    background: #f7c948;
    color: #184c3a;
    font-weight: bold;
    border-radius: 4px;
}

/* Bottom copyright bar */
.footer-bottom::after {
    content: "";
    display: block;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

#hero-slide {
            position: relative;
            width: 100%;
            height: 100vh; /* Full screen height */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: white;
            text-align: center;
        }

        /* 3. Background Slider logic */
        .bg-slider {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: -1;
            background-size: cover;
            background-position: center;
            /* Animation: 15 seconds total, infinite loop */
            animation: slideShow 15s infinite ease-in-out;
        }

        @keyframes slideShow {
            0%, 30% { 
                background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1599818844002-e889370135c1?q=80&w=2070&auto=format&fit=crop'); /* Lalibela */
            }
            33%, 63% { 
                background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1523841589119-b42e23a35028?q=80&w=2070&auto=format&fit=crop'); /* Simien Mountains */
            }
            66%, 96% { 
                background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1543163521-1bf539c55dd2?q=80&w=2000&auto=format&fit=crop'); /* Axum/North */
            }
            100% { 
                background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1599818844002-e889370135c1?q=80&w=2070&auto=format&fit=crop'); 
            }
        }

        /* 4. Content Styling */
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* 5. Buttons */
        .hero-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .btn-main, .btn-outline {
            padding: 12px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 50px;
            transition: 0.3s;
        }

        .btn-main {
            background-color: white;
            color: black;
        }

        .btn-outline {
            border: 2px solid white;
            color: white;
        }

        .btn-main:hover { background-color: #f0f0f0; }
        .btn-outline:hover { background-color: white; color: black; }



@media (max-width: 768px) {
    .bg-video {
        display: none;
    }
}