/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #056839;
    --secondary: #ffce00;
    --dark: #1a5d36;
    --light: #f7fafc;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --gray-900: #212529;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.4;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: 0.1em;
}

.logo h1 i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.tagline {
    font-size: 0.7rem;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: -5px;
    display: block;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Magazine Hero Section */
.magazine-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-attachment: fixed;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.magazine-layout {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 2rem;
    padding: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.magazine-header {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 80px;
}

.magazine-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.9;
}

.magazine-title-section {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: -2rem;
}

.magazine-main-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-highlight {
    color: var(--secondary);
    position: relative;
}

.featured-content-box {
    grid-column: 2;
    grid-row: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.yellow-frame {
    width: 400px;
    height: 400px;
    border: 8px solid var(--secondary);
    position: relative;
    transform: rotate(-10deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.frame-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adventure-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--light);
    padding: 0.8rem 1.2rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.adventure-badge i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.badge-date {
    font-size: 0.6rem;
    opacity: 0.8;
    margin-top: 2px;
}

.left-content {
    grid-column: 1;
    grid-row: 2 / 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    padding-right: 2rem;
}

.feature-section {
    margin-bottom: 3rem;
}

.feature-title {
    font-family: 'Oswald', sans-serif;
    color: var(--secondary);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 300px;
}

.urban-section {
    margin-bottom: 3rem;
    position: relative;
}

.section-marker {
    font-size: 2rem;
    color: var(--secondary);
    position: absolute;
    left: -2rem;
    top: -1rem;
}

.urban-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--secondary);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.urban-description {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
    max-width: 280px;
}

.magazine-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.barcode {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.barcode-lines {
    display: flex;
    gap: 2px;
}

.barcode-lines span {
    width: 2px;
    height: 30px;
    background: var(--white);
    opacity: 0.8;
}

.barcode-lines span:nth-child(odd) {
    height: 35px;
}

.barcode-text {
    font-size: 0.7rem;
    font-family: monospace;
    opacity: 0.7;
}

.issue-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.8rem;
    opacity: 0.8;
}

.issue-details i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

.right-content {
    grid-column: 3;
    grid-row: 2 / 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    padding-left: 2rem;
}

.places-section {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.places-number {
    font-family: 'Oswald', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 0.8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.places-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.places-text p {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.places-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 350px;
}

/* Magazine Contents */
.magazine-contents {
    padding: 5rem 0;
    background: var(--gray-100);
}

.contents-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contents-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.contents-title i {
    color: var(--secondary);
    margin-right: 1rem;
}

.contents-line {
    width: 100px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto;
}

.contents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.content-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-item:hover {
    transform: translateY(-5px);
}

.page-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    min-width: 60px;
}

.content-details h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.content-details h3 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.content-details p {
    color: var(--gray-600);
    line-height: 1.5;
}

/* Feature Articles */
.feature-articles {
    padding: 6rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(6, 200px);
    gap: 2rem;
}

.magazine-article.large {
    grid-column: span 8;
    grid-row: span 3;
}

.magazine-article.medium {
    grid-column: span 4;
    grid-row: span 2;
}

.magazine-article.small {
    grid-column: span 4;
    grid-row: span 1;
}

.magazine-quote-block {
    grid-column: span 4;
    grid-row: span 2;
    background: var(--dark);
    color: var(--white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    color: var(--secondary);
    opacity: 0.3;
}

.magazine-quote-block blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.magazine-quote-block cite {
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 600;
}

.magazine-quote-block cite i {
    margin-right: 0.5rem;
}

.magazine-article {
    background-color: #fff;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.magazine-article:hover {
    transform: translateY(-5px);
}

.article-image {
    position: relative;
    width: 100%;
    height: 60%;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.magazine-article:hover .article-image img {
    transform: scale(1.05);
}

.article-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.article-category {
    background: var(--secondary);
    color: var(--black);
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 15px;
}

.article-category i {
    margin-right: 0.3rem;
}

.article-content {
    padding: 2rem;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.magazine-article.small .article-content {
    height: 100%;
    padding: 1.5rem;
}

.article-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.magazine-article.large .article-title {
    font-size: 2.5rem;
}

.magazine-article.medium .article-title {
    font-size: 1.5rem;
}

.magazine-article.small .article-title {
    font-size: 1.2rem;
}

.article-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-weight: 500;
}

.article-excerpt {
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-500);
    align-items: center;
}

.article-meta i {
    color: var(--primary);
}

/* Photo Essay */
.photo-essay {
    padding: 6rem 0;
    background: var(--light);
}

.essay-header {
    text-align: center;
    margin-bottom: 4rem;
}

.essay-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.essay-title i {
    color: var(--secondary);
    margin-right: 1rem;
}

.essay-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.essay-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 200px);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.photo-item.large {
    grid-column: span 6;
    grid-row: span 2;
}

.photo-item.medium {
    grid-column: span 3;
    grid-row: span 2;
}

.photo-item.small {
    grid-column: span 3;
    grid-row: span 2;
}

.photo-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
}

.photo-caption h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.photo-caption h4 i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.photo-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Interactive Map Section */
.interactive-map-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}


.map-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.map-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--white), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-title i {
    color: var(--secondary);
    margin-right: 1rem;
}

.map-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    right: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.uganda-map {
    top: -4%;
    margin-left: 10%;
    position: relative;
    max-width: 1400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.uganda-map img {
    width: 100%;
    height: auto;
    display: block;
}

.map-hotspot {
    position: absolute;
    cursor: pointer;
    z-index: 3;
}

.hotspot-pulse {
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotspot-pulse i {
    font-size: 0.8rem;
    color: var(--black);
}

.hotspot-pulse::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.5); opacity: 0.7; }
    100% { transform: scale(2); opacity: 0; }
}

.hotspot-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.map-hotspot:hover .hotspot-info {
    opacity: 1;
}

.hotspot-info h4 {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.hotspot-info h4 i {
    color: var(--secondary);
    margin-right: 0.3rem;
}

.hotspot-info p {
    font-size: 0.7rem;
    opacity: 0.8;
}

.map-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-card {
    background: rgba(136, 134, 134, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.location-card.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary);
    transform: scale(1.02);
}

.location-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.location-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
     color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.location-card h3 i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.location-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.location-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.location-stats span {
    background: var(--secondary);
    color: var(--black);
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.location-stats span i {
    margin-right: 0.3rem;
}

/* Adventure Timeline */
.adventure-timeline {
    padding: 6rem 0;
    background: var(--light);
    position: relative;
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.timeline-title i {
    color: var(--secondary);
    margin-right: 1rem;
}

.timeline-subtitle {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
}

          .timeline-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 0;
        }
        
        /* Vertical Line */
        .timeline-container::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            transform: translateX(-50%);
            z-index: 1;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 4rem;
            opacity: 1;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
            z-index: 2;
            width: 650px;
            height: 570px;
            display: flex;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        
        .timeline-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Position items at the edge of the vertical line */
        .timeline-item:nth-child(odd) {
            margin-left: calc(54% - 30px);
        }
        
        .timeline-item:nth-child(even) {
            margin-right: calc(20% - 30px);
        }
        
        .timeline-marker {
            position: absolute;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(63, 81, 181, 0.5);
            z-index: 3;
            top: -4px;
        }
        
        /* Position markers at the edge of the timeline */
        .timeline-item:nth-child(odd) .timeline-marker {
            right: 605px;
        }
        
        .timeline-item:nth-child(even) .timeline-marker {
            left: 605px;
        }
        
        .day-number {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
        }
        
        .timeline-content {
            display: flex;
            width: 100%;
            height: 100%;
        }
        
        .timeline-image {
            flex: 0 0 40%;
            height: 100%;
            overflow: hidden;
        }
        
        .timeline-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .timeline-item:hover .timeline-image img {
            transform: scale(1.05);
        }
        
        .timeline-text {
            flex: 0 0 60%;
            padding: 25px;
            overflow-y: auto;
            position: relative;
        }
        
        .timeline-text h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            text-transform: uppercase;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 10px;
        }
        
        .timeline-text h3 i {
            margin-right: 10px;
            font-size: 1.2em;
        }
        
        .timeline-text p {
            color: var(--gray-900);
            margin-bottom: 15px;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        .timeline-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 15px 0;
        }
        
        .timeline-highlights span {
            background: var(--accent);
            color: var(--gray-800);
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 500;
            display: flex;
            align-items: center;
        }
        
        .timeline-highlights span i {
            margin-right: 5px;
            font-size: 0.9em;
        }
        
        .timeline-facts {
            background: rgba(24, 49, 160, 0.3);
            padding: 12px;
            border-radius: 10px;
            margin-top: 15px;
            border-left: 3px solid var(--primary);
        }
        
        .fact-item {
            display: flex;
            align-items: flex-start;
        }
        
        .fact-item i {
            color: var(--secondary);
            font-size: 1.2rem;
            margin-right: 10px;
            margin-top: 3px;
        }
        
        .fact-item span {
            font-size: 0.9rem;
            color: var(--gray-700);
            line-height: 1.5;
        }
        
        /* Responsive Layout */
        @media (max-width: 1100px) {
            .timeline-item {
                width: 90%;
                height: auto;
                min-height: 400px;
                flex-direction: column;
            }
            
            .timeline-image {
                flex: 0 0 250px;
                width: 100%;
            }
            
            .timeline-text {
                flex: 1;
            }
            
            .timeline-container::before {
                left: 30px;
            }
            
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                margin-left: 60px;
                margin-right: 0;
            }
            
            .timeline-item:nth-child(odd) .timeline-marker,
            .timeline-item:nth-child(even) .timeline-marker {
                left: -30px;
                right: auto;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.1rem;
            }
            
            .timeline-item {
                grid-column: 1 !important;
                width: 95%;
                margin-left: 40px !important;
                margin-right: 0 !important;
            }
            
            .timeline-marker {
                width: 50px;
                height: 50px;
                left: 22px !important;
            }
            
            .timeline-image {
                flex: 0 0 200px;
            }
        }
/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.testimonials-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 104, 57, 0.9) 0%, rgba(26, 54, 93, 0.8) 100%);
}

.testimonials-carousel .container {
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.testimonials-title i {
    color: var(--secondary);
    margin-right: 1rem;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 500;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 400px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    text-align: center;
    color: var(--white);
}

.testimonial-image {
    margin-bottom: 2rem;
}

.testimonial-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.testimonial-content blockquote i {
    position: absolute;
    top: -10px;
    left: -30px;
    font-size: 2rem;
    color: var(--secondary);
    opacity: 0.3;
}

.testimonial-author h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.testimonial-author h4 i {
    margin-right: 0.5rem;
}

.testimonial-author p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.testimonial-author p i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.testimonial-rating {
    font-size: 1.2rem;
    color: var(--secondary);
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-prev,
.testimonial-next {
    background: var(--secondary);
    color: var(--black);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 206, 0, 0.3);
}

.testimonials-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

/* Instagram Feed */
.instagram-feed {
    padding: 6rem 0;
    background: var(--white);
}

.instagram-header {
    text-align: center;
    margin-bottom: 4rem;
}

.instagram-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-title i {
    color: #E4405F;
    margin-right: 1rem;
}

.instagram-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.instagram-post:hover {
    transform: scale(1.05);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.instagram-stats i {
    margin-right: 0.3rem;
}

.instagram-caption {
    font-size: 0.9rem;
    line-height: 1.4;
}

.instagram-cta {
    text-align: center;
}

.instagram-follow-btn {
    background: linear-gradient(45deg, #E4405F, #F56040);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-follow-btn i {
    margin-right: 0.5rem;
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(228, 64, 95, 0.3);
}

/* Adventure Stats */
.adventure-stats {
    padding: 6rem 0;
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stats-pattern {
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffce00' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.adventure-stats .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--secondary);
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

/* Magazine CTA */
.magazine-cta {
    padding: 6rem 0;
    background: var(--primary);
    color: var(--white);
}

.magazine-cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 900;
     color: var(--secondary);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

.cta-title i {
    color: var(--secondary);
    margin-right: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--secondary);
    color: var(--black);
}

.cta-primary i {
    margin-right: 0.5rem;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 206, 0, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-secondary i {
    margin-right: 0.5rem;
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.cta-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}



/* Responsive Design for New Sections */
@media (max-width: 1200px) {
    .magazine-layout {
        grid-template-columns: 1fr 350px 1fr;
    }
    
    .yellow-frame {
        width: 280px;
        height: 350px;
    }
    
    .places-number {
        font-size: 6rem;
    }
}

@media (max-width: 968px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .magazine-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        text-align: center;
        gap: 3rem;
    }
    
    .featured-content-box {
        grid-column: 1;
        grid-row: 3;
    }
    
    .left-content {
        grid-column: 1;
        grid-row: 4;
        padding-right: 0;
    }
    
    .right-content {
        grid-column: 1;
        grid-row: 2;
        padding-left: 0;
    }
    
    .places-section {
        justify-content: center;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .magazine-article.large,
    .magazine-article.medium,
    .magazine-article.small,
    .magazine-quote-block {
        grid-column: 1;
        grid-row: auto;
        height: 400px;
    }
    
    .photo-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(8, 150px);
    }
    
    .photo-item.large {
        grid-column: span 6;
        grid-row: span 2;
    }
    
    .photo-item.medium {
        grid-column: span 3;
        grid-row: span 2;
    }
    
    .photo-item.small {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        flex-direction: row;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: auto;
        margin: 0;
    }
    
    .magazine-cta .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .magazine-main-title {
        font-size: 3rem;
    }
    
    .yellow-frame {
        width: 250px;
        height: 300px;
    }
    
    .places-number {
        font-size: 4rem;
    }
    
    .places-text h2 {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.8rem;
    }
    
    .urban-title {
        font-size: 1.4rem;
    }
    
    .map-title,
    .timeline-title,
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .timeline-content {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-image img {
        width: 150px;
        height: 100px;
    }
    
    .testimonial-content blockquote {
        font-size: 1.2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .photo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .photo-item.large,
    .photo-item.medium {
        grid-column: span 4;
    }
    
    .photo-item.small {
        grid-column: span 2;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Enhanced Timeline Styles */
.timeline-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-badge {
    background: var(--white);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-badge:hover {
    transform: translateY(-3px);
}

.stat-badge i {
    color: var(--secondary);
    font-size: 1rem;
}

.timeline-facts {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(5, 104, 57, 0.2);
}

.fact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: rgba(5, 104, 57, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.fact-item i {
    color: var(--secondary);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.timeline-text h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.timeline-text p {
    margin-bottom: 1.5rem;
}

.timeline-text p strong {
    color: var(--secondary);
    font-weight: 700;
}

.timeline-summary {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.summary-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.summary-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.summary-card h3 i {
    color: var(--secondary);
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.summary-item .number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.summary-item .label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Timeline Enhancements */
@media (max-width: 968px) {
    .timeline-stats {
        gap: 1rem;
    }
    
    .stat-badge {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .summary-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .summary-item .number {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .timeline-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .summary-card {
        padding: 2rem;
    }
    
    .summary-card h3 {
        font-size: 1.5rem;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.success-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: center;
  z-index: 1000;
  max-width: 90%;
  width: 400px;
}

.success-popup.hidden {
  display: none;
}

.success-popup .checkmark {
  font-size: 3rem;
  color: #056839;
  margin-bottom: 1rem;
}

.success-popup h3 {
  color: #056839;
  margin-bottom: 0.5rem;
}

.success-popup p {
  color: #666;
}


            /* Redesigned sidebar button container with center panel positioning */
        .sidebar-button-container {
            position: fixed;
            right: 0;
            top: 70%;
            transform: translateY(-50%);
            z-index: 1000;
        }

        /* Modern professional button design */
        .sidebar-button {
            background: linear-gradient(135deg, #cc7f0c 0%, #db4905 100%);
            color: white;
            padding: 18px 25px;
            border: none;
            border-radius: 30px 0 0 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 320px;
            position: relative;
            border-right: 4px solid #0bf52a;
        }

        .sidebar-button:hover {
            opacity: 0;
            transform: translateX(20px) translateY(-50%);
        }

        /* Professional logo with SafariBookings colors */
        .safari-logo {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: white;
            font-weight: bold;
            box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
        }

        /* Centered hover panel with professional SafariBookings design */
        .hover-panel {
            position: fixed;
            left: 27%;
            top: -120%;
            transform: translate(-50%, -50%);
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            padding: 0;
            width: 480px;
            max-height: 900px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }

        .sidebar-button-container:hover .hover-panel {
            opacity: 1;
            visibility: visible;
        }
        .safari-logo img{
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }
        .partner-text {
            display: inline;
            }
        /* Professional header section */
        .panel-headers {
            background: linear-gradient(135deg, #f58e07 0%, #db5314 100%);
            color: white;
            padding: 25px;
            text-align: center;
            position: relative;
        }

        .panel-headers h3 {
            font-size: 25px;
            font-weight: 900;
            margin-bottom: 8px;
        }

        .panel-headers p {
            font-size: 14px;
            opacity: 0.9;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .close-btn:hover {
            opacity: 1;
        }

        /* Trust indicators section */
        .trust-section {
            padding: 20px 25px;
            background: #f8fafc;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .rating-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .stars {
            color: #f59e0b;
            font-size: 18px;
        }

        .rating-text {
            font-weight: 600;
            color: #1f2937;
        }

        .verified-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            background: #dcfce7;
            color: #166534;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        /* Professional reviews section matching SafariBookings design */
        .reviews-section {
            padding: 25px;
            max-height: 260px;
            overflow-y: auto;
        }

        .review {
            margin-bottom: 20px;
            padding: 20px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .reviewer-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 16px;
        }

        .reviewer-info {
            flex: 1;
        }

        .reviewer-name {
            font-weight: 600;
            color: #1f2937;
            font-size: 14px;
        }

        .reviewer-details {
            font-size: 12px;
            color: #6b7280;
            margin-top: 2px;
        }

        .review-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .review-stars {
            color: #f59e0b;
            font-size: 14px;
        }

        .review-score {
            font-weight: 600;
            color: #1f2937;
            font-size: 14px;
        }

        .review-text {
            color: #374151;
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .review-meta {
            font-size: 11px;
            color: #9ca3af;
            border-top: 1px solid #f3f4f6;
            padding-top: 8px;
        }

        /* Professional action section */
        .action-section {
            max-height: 200px;
            padding: 20px 15px;
            background: #f8fafc;
            border-top: 1px solid #e5e7eb;
            text-align: center;
        }

        .review-count {
            font-size: 13px;
            color: #6b7280;
            margin-bottom: 15px;
        }

        .action-button {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
        }

        .action-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
        }

        /* Custom scrollbar for reviews */
        .reviews-section::-webkit-scrollbar {
            width: 6px;
        }

        .reviews-section::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 3px;
        }

        .reviews-section::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }

        .reviews-section::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .sidebar-button {
                min-width: 80px;
                font-size: 14px;
                padding: 15px 20px;
            }
            
            .hover-panel {
                left: -180%;
                width: 90vw;
                max-width: 500px;
                max-height: 80vh;
            }
              .partner-text {
                display: none;
            }
        
        }