:root {
    --sage-green: #CCD5AE;
    --light-green: #E9EDC9;
    --warm-white: #FEFAE0;
    --pale-cream: #FAEDCD;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --accent-gold: #F4A261;
    --deep-green: #A8B895;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--warm-white);
}

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

/* Navigation Styles */
.navbar {
    background-color: rgba(250, 237, 205, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo h1 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 600;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-logo a {
    text-decoration: none;
}

.nav-logo h1:hover {
    color: var(--sage-green);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    display: block;
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--sage-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--sage-green);
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-size: inherit;
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--sage-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.dropdown-toggle:hover::after {
    width: 80%;
}

.dropdown-toggle:hover {
    color: var(--sage-green);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(233, 237, 201, 0.95);
    backdrop-filter: blur(10px);
    min-width: 220px;
    list-style: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 0 0 12px 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
}

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

.dropdown-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--sage-green);
    transition: width 0.3s ease;
    z-index: -1;
}

.dropdown-menu a:hover::before {
    width: 100%;
}

.dropdown-menu a:hover {
    color: var(--text-dark);
    transform: translateX(5px);
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Hero Sections */
.hero-large {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(204, 213, 174, 0.8) 0%, 
        rgba(233, 237, 201, 0.6) 50%, 
        rgba(254, 250, 224, 0.8) 100%),
        url(images/hero-image.jpg);
    background-size: cover;
    background-position: center;
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(0.5deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: heroSlideUp 1s ease-out;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background-color: var(--sage-green);
    color: var(--text-dark);
    box-shadow: 0 6px 20px rgba(204, 213, 174, 0.4);
}

.cta-button.secondary {
    background-color: var(--sage-green);
    color: var(--text-dark);
    border: 2px solid var(--sage-green);
    box-shadow: 0 6px 20px rgba(204, 213, 174, 0.4);
}

.cta-button.secondary:hover {
    background-color: var(--deep-green);
    border-color: var(--deep-green);
}

.cta-button.secondary.visible {
    background-color: rgba(204, 213, 174, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(204, 213, 174, 1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    color: var(--text-dark) !important;
    font-weight: 700 !important;
}

.cta-button.primary.visible {
    background-color: rgba(204, 213, 174, 0.9) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

.cta-button.secondary.visible:hover {
    background-color: var(--sage-green) !important;
    border-color: var(--deep-green) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
}

.cta-button.primary.visible:hover {
    background-color: var(--sage-green) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button.primary:hover {
    background-color: var(--deep-green);
}

.cta-button.secondary:hover {
    background-color: var(--sage-green);
}

/* Enhanced Button Visibility */
.cta-button.visible {
    background-color: rgba(204, 213, 174, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary.visible {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(204, 213, 174, 0.8);
    color: var(--text-dark);
    font-weight: 700;
}

.cta-button.visible:hover {
    background-color: rgba(204, 213, 174, 1);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary.visible:hover {
    background-color: rgba(204, 213, 174, 0.9);
    border-color: var(--sage-green);
}

/* Trip Teaser Section */
.trip-teaser {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--pale-cream) 100%);
}

.trip-teaser h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.teaser-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.teaser-card[data-hover="africa"] .card-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect fill="%23D2691E" width="400" height="200"/><circle cx="350" cy="50" r="30" fill="%23FFA500"/><path fill="%23228B22" d="M0,150 Q100,120 200,150 T400,150 L400,200 L0,200 Z"/></svg>');
}

.teaser-card[data-hover="europe"] .card-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect fill="%234682B4" width="400" height="200"/><rect fill="%23A0522D" x="150" y="80" width="100" height="80"/><polygon fill="%23DC143C" points="150,80 200,50 250,80"/></svg>');
}

.teaser-card[data-hover="asia"] .card-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect fill="%23FF6347" width="400" height="200"/><path fill="%23FFD700" d="M200,30 L220,80 L270,80 L230,110 L250,160 L200,130 L150,160 L170,110 L130,80 L180,80 Z"/></svg>');
}

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

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.card-link {
    color: var(--sage-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--deep-green);
}

.card-link.prominent {
    display: inline-block;
    background-color: var(--sage-green);
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(204, 213, 174, 0.3);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.card-link.prominent:hover {
    background-color: var(--deep-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 213, 174, 0.5);
    color: white;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--warm-white);
}

.features h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.feature {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--pale-cream) 0%, rgba(254, 250, 224, 0.8) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(204, 213, 174, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
    opacity: 0;
}

.feature:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(20px, 20px);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.feature h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Quick Search Section */
.quick-search {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--sage-green) 100%);
}

.quick-search h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.search-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.search-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.search-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.search-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.search-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.search-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Banner Styles for Sub-pages */
.page-banner {
    height: 50vh;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 70px;
}

.page-banner h1 {
    font-size: 3rem;
    color: whitesmoke;
    margin-bottom: 1rem;
}

.page-banner p {
    font-size: 1.2rem;
    color: whitesmoke;
    max-width: 600px;
}

/* Minimal Header Styles */
.minimal-header {
    padding: 2rem 0;
    background: linear-gradient(90deg, var(--warm-white) 0%, var(--pale-cream) 100%);
    margin-top: 70px;
    text-align: center;
}

.minimal-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.minimal-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Page Content Styles */
.page-content {
    padding: 4rem 0;
    min-height: 60vh;
}

.page-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.page-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Card Grid Layouts */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--sage-green);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.info-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--deep-green) 100%);
    padding: 3rem 0;
    text-align: center;
    color: var(--text-dark);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(250, 237, 205, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .nav-link {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .dropdown-toggle {
        background: none;
        border: none;
        color: var(--text-dark);
        font-size: 1.1rem;
        font-weight: 500;
        padding: 1.5rem;
        width: 100%;
        text-align: center;
        cursor: pointer;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        height: auto;
        line-height: 1.6;
    }
    
    .dropdown-toggle:hover {
        color: var(--sage-green);
    }

    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--light-green);
        display: none;
        backdrop-filter: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
    }

    .teaser-grid,
    .features-grid,
    .search-cards {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .page-banner h1 {
        font-size: 2.2rem;
    }

    .page-banner p {
        font-size: 1rem;
    }
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

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

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Interactive hover effects */
.interactive-element {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-element:hover {
    transform: translateY(-2px);
}

/* Enhanced Button Visibility - Apply to all sections */
.cta-button.visible,
.cta-button.secondary.visible {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(204, 213, 174, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: var(--text-dark);
    font-weight: 700;
}

.cta-button.primary.visible {
    background-color: rgba(204, 213, 174, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.visible:hover,
.cta-button.secondary.visible:hover {
    background-color: rgba(204, 213, 174, 0.9);
    border-color: var(--sage-green);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cta-button.primary.visible:hover {
    background-color: rgba(204, 213, 174, 1);
}

/* Top Destinations Section */
.top-destinations {
    padding: 5rem 0;
    background-color: var(--warm-white);
}

.top-destinations h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.destination-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.destination-item:hover {
    transform: translateY(-5px);
}

.destination-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}



.destination-content {
    padding: 2rem;
}

.destination-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.destination-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.view-details-btn {
    display: inline-block;
    background-color: var(--sage-green);
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background-color: var(--deep-green);
    transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--pale-cream) 100%);
}

.why-choose-us h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.choose-us-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.choose-us-item:hover {
    transform: translateY(-5px);
}

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

.choose-us-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.choose-us-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Customer Reviews Section */
.customer-reviews {
    padding: 5rem 0;
    background-color: var(--warm-white);
}

.customer-reviews h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.review-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.stars {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.review-item p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.reviewer {
    color: var(--text-dark);
    font-weight: 600;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
}

.how-it-works h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.step-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Enhanced Footer */
.main-footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1d1f 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--sage-green);
}

.footer-logo p {
    color: #ccc;
    font-style: italic;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--sage-green);
}

.contact-info p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.newsletter {
    display: flex;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.newsletter-btn {
    background-color: var(--sage-green);
    color: var(--text-dark);
    border: none;
    padding: 0px 1rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: var(--light-green);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ccc;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--sage-green);
    background-color: rgba(204, 213, 174, 0.2);
    transform: translateY(-2px);
}

.social-link i {
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
}

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

.bottom-links {
    display: flex;
    gap: 2rem;
}

.bottom-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
}

.bottom-links a:hover {
    color: var(--sage-green);
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* Featured Packages Styling */
.featured-packages {
    margin: 4rem 0;
}

.featured-packages h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.package-image.serengeti {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect fill="%23D2691E" width="400" height="200"/><circle cx="350" cy="50" r="30" fill="%23FFA500"/><path fill="%23228B22" d="M0,150 Q100,120 200,150 T400,150 L400,200 L0,200 Z"/><circle cx="100" cy="120" r="8" fill="%23654321"/><circle cx="300" cy="140" r="6" fill="%23654321"/></svg>');
}

.package-image.victoria-falls {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect fill="%234682B4" width="400" height="200"/><path fill="%23ADD8E6" d="M150,50 Q200,100 250,50 Q300,100 350,50 L350,200 L150,200 Z"/><rect fill="%23B0C4DE" x="160" y="80" width="10" height="120" opacity="0.7"/><rect fill="%23B0C4DE" x="180" y="90" width="8" height="110" opacity="0.6"/></svg>');
}

.package-image.cape-town {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect fill="%2387CEEB" width="400" height="200"/><path fill="%23696969" d="M100,120 L150,60 L200,120 L250,80 L300,130 L400,100 L400,200 L0,200 Z"/><path fill="%2332CD32" d="M0,150 Q100,140 200,150 T400,150 L400,200 L0,200 Z"/></svg>');
}

.package-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-card .cta-button {
    width: 100%;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
}

.package-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.package-duration {
    background-color: var(--sage-green);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.package-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.package-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.package-highlights span {
    background-color: var(--light-green);
    color: var(--text-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.package-price {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.original-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
}

.discounted-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sage-green);
}

/* CTA Section Styling */
.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--pale-cream) 100%);
    border-radius: 15px;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--light-green);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-green);
}

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

/* Page Banner Variants */
.page-banner[data-destination="about"] {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--deep-green) 100%);
}

.page-banner[data-destination="stories"] {
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--sage-green) 100%);
}

.page-banner[data-destination="contact"] {
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--sage-green) 100%);
}

.page-banner[data-destination="africa"] {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), 
                url('images/africa.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 52%;
    object-fit: cover;
}

/* Mobile Responsiveness for Forms */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}



.page-banner[data-destination="europe"] {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), 
                url('images/eu.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 52%;
    object-fit: cover;
}

.page-banner[data-destination="asia"] {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), 
                url('images/se-asia.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 52%;
    object-fit: cover;
}

.page-banner[data-destination="americas"] {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), 
                url('images/pexels-cdomingues10-670530.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 10%;
    object-fit: cover;
}

.page-banner[data-destination="oceania"] {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), 
                url('images/fiji.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 60%;
    object-fit: cover;
}

.page-banner[data-destination="family"] {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), 
                url('images/fam-jam-getaways.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 100%;
    object-fit: cover;
}

.page-banner[data-destination="romance"] {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), 
                url('images/lovebirds-lane.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 70%;
    object-fit: cover;
}

.page-banner[data-destination="adventure"] {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), 
                url('images/thrill-seeker.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 80%;
    object-fit: cover;
}

.page-banner[data-destination="custom"] {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), 
                url('images/mix-match.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 65%;
    object-fit: cover;
}