/* ============================================
   ZAHARI TRAVELS - SHARED STYLES
   ============================================ */

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

:root {
    /* Kenya-inspired warm palette */
    --savannah-gold: #E8A838;
    --sunset-orange: #E85D04;
    --earth-brown: #8B4513;
    --safari-green: #4A7C59;
    --ocean-blue: #0077B6;
    --sand-light: #F5E6D3;
    --cream: #FFF8F0;
    --coral: #FF6B6B;

    /* Text colors */
    --text-dark: #2D2D2D;
    --text-medium: #5A5A5A;
    --text-light: #7A7A7A;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: rgba(232, 168, 56, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand-light) 50%, #FFE4C4 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============================================
   BACKGROUND DECORATIONS
   ============================================ */

.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.bg-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--savannah-gold) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.bg-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--ocean-blue) 0%, transparent 70%);
    bottom: 10%;
    left: -100px;
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.75rem 2rem;
    box-shadow: 0 4px 30px var(--glass-shadow);
}

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

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sunset-orange);
    text-decoration: none;
    transition: transform 0.3s;
}

.nav-logo:hover {
    transform: scale(1.02);
}

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

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--savannah-gold);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--sunset-orange);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--savannah-gold) 100%);
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
}

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

.nav-cta:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(232, 93, 4, 0.3);
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--savannah-gold) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(232, 93, 4, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 93, 4, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    border: 2px solid var(--savannah-gold);
}

.btn-secondary:hover {
    background: var(--savannah-gold);
    color: white;
}

.btn-block {
    width: 100%;
    margin-bottom: 0.75rem;
}

.btn-block:last-child {
    margin-bottom: 0;
}

/* ============================================
   CONTAINER & SECTIONS
   ============================================ */

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

section {
    padding: 6rem 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.9rem;
    color: var(--sunset-orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   TOUR HERO SECTION
   ============================================ */

.tour-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 120px 2rem 80px;
}

.tour-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.tour-hero-safari {
    background: url('images/safari-placeholder.svg') center/cover, linear-gradient(135deg, #E85D04 0%, #E8A838 100%);
}

.tour-hero-coast {
    background: url('images/beach-placeholder.svg') center/cover, linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
}

.tour-hero-mountain {
    background: url('images/mountain-placeholder.svg') center/cover, linear-gradient(135deg, #4A7C59 0%, #6BBF59 100%);
}

.tour-hero-culture {
    background: url('images/cultural-placeholder.svg') center/cover, linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
}

.tour-hero-lake {
    background: url('images/flamingo-placeholder.svg') center/cover, linear-gradient(135deg, #FF6B6B 0%, #FF8E72 100%);
}

.tour-hero-ultimate {
    background: url('images/adventure-placeholder.svg') center/cover, linear-gradient(135deg, #9B59B6 0%, #E91E63 100%);
}

.tour-hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
}

.tour-badge-large {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.tour-hero h1 {
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tour-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.tour-hero-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tour-hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

/* ============================================
   TOUR CONTENT LAYOUT
   ============================================ */

.tour-content-section {
    padding: 4rem 2rem;
}

.tour-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tour-main {
    min-width: 0;
}

.tour-block {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.tour-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--savannah-gold);
}

.tour-block p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.tour-block p:last-child {
    margin-bottom: 0;
}

/* Alert Box */
.alert-box {
    background: rgba(232, 168, 56, 0.1);
    border: 1px solid var(--savannah-gold);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    color: var(--text-dark);
}

/* Premium Badge */
.premium-badge {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--savannah-gold) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    font-weight: 500;
}

/* ============================================
   HIGHLIGHTS GRID
   ============================================ */

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

.highlight-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    transition: all 0.3s;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.highlight-item.highlight-premium {
    background: rgba(232, 168, 56, 0.1);
    border: 1px solid rgba(232, 168, 56, 0.3);
}

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

.highlight-item h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   ITINERARY
   ============================================ */

.itinerary {
    position: relative;
}

.itinerary-day {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.itinerary-day:last-child {
    margin-bottom: 0;
}

.day-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.day-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--savannah-gold) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.day-line {
    width: 2px;
    flex-grow: 1;
    background: linear-gradient(180deg, var(--savannah-gold) 0%, transparent 100%);
    margin-top: 0.5rem;
}

.day-content {
    flex-grow: 1;
    padding-bottom: 1rem;
}

.day-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.day-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.day-meta span {
    font-size: 0.85rem;
    color: var(--text-medium);
    background: rgba(232, 168, 56, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.day-content p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.day-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.day-accommodation {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* ============================================
   INCLUSIONS
   ============================================ */

.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.inclusions-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.inclusions-list {
    list-style: none;
}

.inclusions-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-medium);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.inclusions-list.included li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--safari-green);
    font-weight: 700;
}

.inclusions-list.excluded li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: 700;
}

/* ============================================
   SEASONS GRID
   ============================================ */

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

.season-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
}

.season-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.season-months {
    font-weight: 600;
    color: var(--sunset-orange);
    margin-bottom: 0.75rem;
}

.season-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   PACKING LIST
   ============================================ */

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

.packing-category h4 {
    font-size: 1rem;
    color: var(--sunset-orange);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--savannah-gold);
}

.packing-category ul {
    list-style: none;
}

.packing-category li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-medium);
    padding-left: 1rem;
    position: relative;
}

.packing-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--savannah-gold);
}

/* ============================================
   WILDLIFE GRID
   ============================================ */

.wildlife-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.wildlife-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
}

.wildlife-item span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.wildlife-item p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-medium);
}

/* ============================================
   ETIQUETTE GRID
   ============================================ */

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

.etiquette-item {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 1.25rem;
}

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

.etiquette-item p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   ROUTE VISUAL
   ============================================ */

.route-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    overflow-x: auto;
}

.route-stop {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 100px;
}

.route-marker {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--savannah-gold) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.route-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.route-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.route-line {
    flex-grow: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--savannah-gold), var(--sunset-orange));
    margin: 0 0.5rem;
    margin-bottom: 2rem;
}

/* ============================================
   SIDEBAR
   ============================================ */

.tour-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.booking-card.booking-premium {
    border: 2px solid var(--savannah-gold);
    box-shadow: 0 10px 40px var(--glass-shadow);
}

.premium-label {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--savannah-gold) 100%);
    color: white;
    text-align: center;
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.price-display {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-from {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--sunset-orange);
    display: block;
}

.price-per {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.booking-details {
    margin-bottom: 1.5rem;
}

.booking-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.sidebar-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--savannah-gold);
}

.quick-facts {
    list-style: none;
}

.quick-facts li {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.quick-facts li:last-child {
    border-bottom: none;
}

.fact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.quick-facts strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.quick-facts p {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin: 0;
}

.help-card {
    background: linear-gradient(135deg, rgba(232, 168, 56, 0.1) 0%, rgba(232, 93, 4, 0.05) 100%);
}

.help-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.help-contact a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.help-contact a:hover {
    color: var(--sunset-orange);
}

/* ============================================
   RELATED TOURS
   ============================================ */

.related-tours {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(232, 168, 56, 0.1) 0%, rgba(232, 93, 4, 0.05) 100%);
}

.related-tours h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.related-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--glass-shadow);
}

.related-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.related-mara {
    background: linear-gradient(135deg, #E85D04 0%, #E8A838 100%);
}

.related-coast {
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
}

.related-nakuru {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E72 100%);
}

.related-culture {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
}

.related-amboseli {
    background: linear-gradient(135deg, #4A7C59 0%, #6BBF59 100%);
}

.related-ultimate {
    background: linear-gradient(135deg, #9B59B6 0%, #E91E63 100%);
}

.related-content {
    padding: 1rem;
}

.related-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.related-content p {
    font-size: 0.9rem;
    color: var(--sunset-orange);
    font-weight: 600;
}

/* ============================================
   PAGE HERO (for listing pages)
   ============================================ */

.page-hero {
    padding: 140px 2rem 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(232, 168, 56, 0.15) 0%, rgba(232, 93, 4, 0.1) 100%);
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero h1 span {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--savannah-gold) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   TOURS GRID (listing page)
   ============================================ */

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

.tour-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--glass-shadow);
}

.tour-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.tour-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.tour-safari .tour-image-placeholder {
    background: linear-gradient(135deg, #E85D04 0%, #E8A838 100%);
}

.tour-coast .tour-image-placeholder {
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
}

.tour-mountain .tour-image-placeholder {
    background: linear-gradient(135deg, #4A7C59 0%, #6BBF59 100%);
}

.tour-culture .tour-image-placeholder {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
}

.tour-lake .tour-image-placeholder {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E72 100%);
}

.tour-adventure .tour-image-placeholder {
    background: linear-gradient(135deg, #9B59B6 0%, #E91E63 100%);
}

.tour-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-content {
    padding: 1.5rem;
}

.tour-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.tour-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tour-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tour-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.tour-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sunset-orange);
}

.tour-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
}

/* ============================================
   DESTINATIONS GRID
   ============================================ */

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--glass-shadow);
}

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

.destination-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

/* ============================================
   FEATURES GRID (Why Us)
   ============================================ */

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

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--savannah-gold) 0%, var(--sunset-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-section {
    padding: 4rem 2rem;
}

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

.about-image {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--savannah-gold) 0%, var(--sunset-orange) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sunset-orange);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--savannah-gold) 0%, var(--sunset-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.team-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--sunset-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    padding: 4rem 2rem;
}

/* ============================================
   TEAM PAGE - PROFESSIONAL MINIMAL DESIGN
   ============================================ */

.editorial-bg-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-size: 25vw;
    font-weight: 900;
    color: var(--white);
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
    user-select: none;
}


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

.member-card {
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    border-radius: 30px;
}

.member-card:hover {
    transform: translateY(-15px);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px var(--glass-shadow);
}

.member-image-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    position: relative;
    border-radius: 50%;
    padding: 8px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.member-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: white;
    font-weight: 600;
}

/* Professional Color Gradients for placeholders */
.placeholder-gold {
    background: linear-gradient(135deg, #E8A838 0%, #D48C1F 100%);
}

.placeholder-blue {
    background: linear-gradient(135deg, #0077B6 0%, #023E8A 100%);
}

.placeholder-green {
    background: linear-gradient(135deg, #4A7C59 0%, #2F4F39 100%);
}

.placeholder-purple {
    background: linear-gradient(135deg, #9B59B6 0%, #6C3483 100%);
}

.placeholder-coral {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5253 100%);
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.member-divider {
    width: 30px;
    height: 2px;
    background: var(--savannah-gold);
    margin: 1rem auto;
    transition: width 0.4s ease;
}

.member-card:hover .member-divider {
    width: 60px;
}

.member-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* CTA Professional */
.cta-professional {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 5rem 3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px var(--glass-shadow);
}

.cta-professional h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-professional p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info>p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(232, 168, 56, 0.2) 0%, rgba(232, 93, 4, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-details span {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.contact-form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form-card h3 {
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--savannah-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(232, 168, 56, 0.1);
}

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

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

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--savannah-gold) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(232, 93, 4, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: #111;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand h3 span {
    color: var(--savannah-gold);
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

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

.social-link:hover {
    background: var(--savannah-gold);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--savannah-gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-bottom a {
    color: var(--savannah-gold);
    text-decoration: none;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .tour-layout {
        grid-template-columns: 1fr;
    }

    .tour-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .booking-card {
        grid-column: span 2;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem 2rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .tour-hero {
        min-height: 60vh;
        padding: 100px 1rem 60px;
    }

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

    .tour-hero-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .tour-sidebar {
        grid-template-columns: 1fr;
    }

    .booking-card {
        grid-column: span 1;
    }

    .highlights-grid,
    .seasons-grid,
    .inclusions-grid,
    .etiquette-grid {
        grid-template-columns: 1fr;
    }

    .packing-grid {
        grid-template-columns: 1fr;
    }

    .wildlife-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    section {
        padding: 4rem 1rem;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
    }

    .route-visual {
        flex-direction: column;
        gap: 1rem;
    }

    .route-line {
        width: 3px;
        height: 30px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    .page-hero {
        padding: 120px 1rem 60px;
    }

    .itinerary-day {
        flex-direction: column;
        gap: 1rem;
    }

    .day-marker {
        flex-direction: row;
        gap: 1rem;
    }

    .day-line {
        height: 2px;
        width: 100%;
        margin: 0;
    }
}

/* ============================================
   ANIMATION SYSTEM
   ============================================ */

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change: transform, opacity;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.95);
}

.animate-in {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* Stagger Delays */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

.stagger-7 {
    transition-delay: 0.7s;
}

.stagger-8 {
    transition-delay: 0.8s;
}

/* Specialty Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-soft {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.pulse-anim {
    animation: pulse-soft 3s ease-in-out infinite;
}