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

body {
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    background: #0a0a0a;
    color: #fff;
}

html {
    scroll-behavior: smooth;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    min-height: 70px;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 50px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    min-height: 65px;
}

.logo {
    font-size: 24px;
    font-family: 'Marcellus', serif;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    height: 40px;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
    height: 40px;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    padding: 8px 0;
    height: 100%;
    white-space: nowrap;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a574;
    transition: width 0.3s ease;
}

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

/* Dropdown Styles */
.dropdown {
    position: relative;
    height: 100%;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
}

.dropdown > a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    min-width: 280px;
    padding: 20px 0;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

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

.dropdown-menu a {
    padding: 12px 30px;
    display: block;
    color: #fff;
    transition: all 0.3s ease;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(212, 165, 116, 0.1);
    color: #d4a574;
    padding-left: 40px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px; /* Account for fixed header */
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title {
    font-size: 72px;
    font-family: 'Marcellus', serif;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #d4a574;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: transparent;
    border-color: #d4a574;
    color: #d4a574;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 30px;
    color: #fff;
}

/* Experience Section */
.experience-section {
    padding: 120px 50px;
    background: #0f0f0f;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
}

.section-title.reveal {
    animation: fadeInUp 0.8s ease forwards;
}

.section-title h2 {
    font-size: 48px;
    font-family: 'Marcellus', serif;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

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

.experience-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.experience-card.reveal {
    animation: cardReveal 0.8s ease forwards;
}

.experience-card:nth-child(2) { animation-delay: 0.2s; }
.experience-card:nth-child(3) { animation-delay: 0.4s; }
.experience-card:nth-child(4) { animation-delay: 0.6s; }

.experience-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.2);
    border-color: rgba(212, 165, 116, 0.3);
}

.experience-card i {
    font-size: 48px;
    color: #d4a574;
    margin-bottom: 20px;
}

.experience-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Marcellus', serif;
}

.experience-card p {
    opacity: 0.8;
    line-height: 1.8;
}

/* Destinations Section */
.destinations-section {
    padding: 120px 50px;
    background: #0a0a0a;
}

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

.destination-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.destination-card.reveal {
    animation: fadeInUp 0.8s ease forwards;
}

.destination-card:nth-child(2) { animation-delay: 0.1s; }
.destination-card:nth-child(3) { animation-delay: 0.2s; }
.destination-card:nth-child(4) { animation-delay: 0.3s; }
.destination-card:nth-child(5) { animation-delay: 0.4s; }
.destination-card:nth-child(6) { animation-delay: 0.5s; }

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s ease;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.95));
}

.destination-title {
    font-size: 28px;
    font-family: 'Marcellus', serif;
    margin-bottom: 10px;
}

.destination-desc {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 1.6;
}

.destination-card:hover .destination-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Why Choose Us Section */
.why-section {
    padding: 120px 50px;
    background: #0f0f0f;
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content {
    opacity: 0;
    transform: translateX(-30px);
}

.why-content.reveal {
    animation: slideInLeft 0.8s ease forwards;
}

.why-content h2 {
    font-size: 42px;
    font-family: 'Marcellus', serif;
    margin-bottom: 30px;
    line-height: 1.3;
}

.why-content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 30px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    color: #d4a574;
    font-size: 24px;
}

.why-image {
    opacity: 0;
    transform: translateX(30px);
}

.why-image.reveal {
    animation: slideInRight 0.8s ease forwards;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Stats Section */
.stats-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, #d4a574 0%, #b8906a 100%);
    color: #0a0a0a;
}

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

.stat-item {
    opacity: 0;
    transform: scale(0.8);
}

.stat-item.reveal {
    animation: scaleIn 0.6s ease forwards;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    font-family: 'Marcellus', serif;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.8;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 50px;
    background: #0f0f0f;
}

.gallery-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
    background: #1a1a1a;
    border: 2px dashed rgba(212, 165, 116, 0.3);
}

.gallery-item.reveal {
    animation: scaleIn 0.6s ease forwards;
}

.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.3s; }
.gallery-item:nth-child(5) { animation-delay: 0.4s; }
.gallery-item:nth-child(6) { animation-delay: 0.5s; }
.gallery-item:nth-child(7) { animation-delay: 0.6s; }
.gallery-item:nth-child(8) { animation-delay: 0.7s; }
.gallery-item:nth-child(9) { animation-delay: 0.8s; }
.gallery-item:nth-child(10) { animation-delay: 0.9s; }
.gallery-item:nth-child(11) { animation-delay: 1s; }
.gallery-item:nth-child(12) { animation-delay: 1.1s; }

.gallery-wide {
    grid-column: span 2;
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #d4a574;
    text-align: center;
}

.gallery-placeholder span {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Marcellus', serif;
}

.gallery-placeholder p {
    font-size: 14px;
    opacity: 0.7;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.gallery-item:hover {
    border-color: rgba(212, 165, 116, 0.6);
}

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

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.close:hover {
    color: #d4a574;
}

.lightbox-caption {
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
    font-family: 'Marcellus', serif;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 18px;
    font-family: 'Marcellus', serif;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 50px;
    background: #0a0a0a;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.testimonial-card.reveal {
    animation: fadeInUp 0.8s ease forwards;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #d4a574;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.testimonial-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.testimonial-info p {
    opacity: 0.6;
    font-size: 14px;
}

.testimonial-rating {
    color: #d4a574;
    margin-bottom: 15px;
}

.testimonial-text {
    line-height: 1.8;
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: 60px 50px;
    background: #0a0a0a;
    border-top: 1px solid #333;
}

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

.footer-section h3 {
    font-family: 'Marcellus', serif;
    font-size: 20px;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

.footer-section ul li a:hover {
    color: #d4a574;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Responsive */
@media (max-width: 968px) {
    .nav { 
        display: none; 
    }
    .mobile-menu-toggle { 
        display: flex; 
    }
    .header {
        padding: 12px 30px;
    }
    .header.scrolled {
        padding: 10px 30px;
    }
    .why-grid { grid-template-columns: 1fr; }
    .destinations-grid { grid-template-columns: 1fr; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 42px; }
    .hero-subtitle { font-size: 18px; }
    .header { 
        padding: 12px 20px; 
        min-height: 60px;
    }
    .header.scrolled {
        padding: 10px 20px;
        min-height: 55px;
    }
    .logo {
        font-size: 20px;
        height: 35px;
    }
    .logo img {
        height: 35px;
    }
    .experience-section, .destinations-section, .why-section, .testimonials-section, .gallery-section { padding: 60px 20px; }
    .section-title h2 { font-size: 36px; }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
        .gallery-tall {
            grid-row: span 1;
        }
    }

    /* Gir-specific styles */
    .hero {
        height: 70vh;
        min-height: 500px;
        padding-top: 60px; /* Account for mobile header */
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        filter: brightness(0.6);
    }

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

    .hero-content {
        max-width: 900px;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 64px;
        animation: fadeInUp 1s ease;
    }

    .hero-subtitle {
        font-size: 20px;
        animation: fadeInUp 1s ease 0.2s backwards;
    }

    .breadcrumb {
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        opacity: 0.8;
        animation: fadeInUp 1s ease 0.4s backwards;
    }

    .breadcrumb a {
        color: #d4a574;
        text-decoration: none;
    }

    /* Overview Section */
    .overview-section {
        padding: 80px 0;
        background: #0f0f0f;
    }

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

    .section-header h2 {
        font-size: 42px;
        font-family: 'Marcellus', serif;
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 18px;
        opacity: 0.8;
    }

    .overview-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .overview-text p {
        line-height: 1.8;
        margin-bottom: 20px;
        opacity: 0.9;
        font-size: 16px;
    }

    .overview-image {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }

    .overview-image img {
        width: 670px;
        height: 446px;
        display: block;
        object-fit: cover;
    }

    /* Info Cards */
    .info-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .info-card {
        background: #1a1a1a;
        padding: 30px 20px;
        border-radius: 15px;
        text-align: center;
        border: 1px solid rgba(212, 165, 116, 0.2);
        transition: all 0.3s ease;
    }

    .info-card:hover {
        transform: translateY(-5px);
        border-color: rgba(212, 165, 116, 0.5);
        box-shadow: 0 10px 30px rgba(212, 165, 116, 0.1);
    }

    .info-card i {
        font-size: 32px;
        color: #d4a574;
        margin-bottom: 15px;
    }

    .info-card h4 {
        font-size: 16px;
        margin-bottom: 8px;
        font-family: 'Marcellus', serif;
    }

    .info-card p {
        font-size: 14px;
        opacity: 0.7;
    }

    /* Highlights Section */
    .highlights-section {
        padding: 80px 0;
        background: #0a0a0a;
    }

    .highlights-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .highlight-card {
        background: #1a1a1a;
        border-radius: 15px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

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

    .highlight-image {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

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

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

    .highlight-content {
        padding: 30px;
    }

    .highlight-content h3 {
        font-size: 22px;
        font-family: 'Marcellus', serif;
        margin-bottom: 15px;
    }

    .highlight-content p {
        line-height: 1.7;
        opacity: 0.8;
        font-size: 15px;
    }

    /* Safari Information */
    .safari-info-section {
        padding: 80px 0;
        background: #0f0f0f;
    }

    .safari-info-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 40px;
    }

    .safari-details {
        background: #1a1a1a;
        padding: 40px;
        border-radius: 20px;
    }

    /* Tab Navigation */
    .tab-navigation {
        display: flex;
        gap: 10px;
        margin-bottom: 30px;
        border-bottom: 2px solid rgba(212, 165, 116, 0.2);
    }

    .tab-btn {
        flex: 1;
        padding: 15px 20px;
        background: transparent;
        border: none;
        color: rgba(255, 255, 255, 0.6);
        font-size: 16px;
        font-weight: 600;
        font-family: 'DM Sans', sans-serif;
        cursor: pointer;
        position: relative;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
    }

    .tab-btn:hover {
        color: #d4a574;
    }

    .tab-btn.active {
        color: #d4a574;
        border-bottom-color: #d4a574;
    }

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

    .tab-content.active {
        display: block;
    }

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

    /* Compact Itinerary Styles */
    .itinerary-compact {
        margin-top: 10px;
    }

    .day-compact {
        background: #252525;
        padding: 25px;
        border-radius: 15px;
        margin-bottom: 20px;
        border-left: 4px solid #d4a574;
        transition: all 0.3s ease;
    }

    .day-compact:hover {
        background: #2a2a2a;
        transform: translateX(5px);
    }

    .day-compact h4 {
        font-size: 18px;
        color: #d4a574;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: 'Marcellus', serif;
    }

    .day-compact ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .day-compact ul li {
        padding: 8px 0;
        padding-left: 25px;
        position: relative;
        opacity: 0.9;
        line-height: 1.6;
    }

    .day-compact ul li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #d4a574;
        font-weight: 700;
        font-size: 18px;
    }

    .safari-details h3 {
        font-size: 28px;
        font-family: 'Marcellus', serif;
        margin-bottom: 30px;
        color: #d4a574;
    }

    .detail-item {
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .detail-item:last-child {
        border-bottom: none;
    }

    .detail-item h4 {
        font-size: 18px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .detail-item h4 i {
        color: #d4a574;
    }

    .detail-item p {
        opacity: 0.8;
        line-height: 1.7;
    }

    .detail-item ul {
        list-style: none;
        margin-top: 10px;
    }

    .detail-item ul li {
        padding: 8px 0;
        opacity: 0.8;
        padding-left: 25px;
        position: relative;
    }

    .detail-item ul li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #d4a574;
        font-weight: 700;
    }

    /* Booking Card */
    .booking-card {
        background: linear-gradient(135deg, #d4a574 0%, #b8906a 100%);
        color: #0a0a0a;
        padding: 40px;
        border-radius: 20px;
        position: sticky;
        top: 100px;
        height: fit-content;
    }

    .booking-card h3 {
        font-size: 24px;
        font-family: 'Marcellus', serif;
        margin-bottom: 20px;
    }

    .price {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .price span {
        font-size: 16px;
        font-weight: 400;
    }

    .booking-info {
        margin: 20px 0;
        padding: 20px 0;
        border-top: 1px solid rgba(0,0,0,0.2);
        border-bottom: 1px solid rgba(0,0,0,0.2);
    }

    .booking-info p {
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
        font-size: 15px;
    }

    .booking-info strong {
        font-weight: 600;
    }

    .booking-features {
        margin-top: 20px;
    }

    .booking-features p {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }

    .booking-features i {
        color: #0a0a0a;
    }

    /* Wildlife Section */
    .wildlife-section {
        padding: 80px 0;
        background: #0a0a0a;
    }

    /* Social Media Section */
    .social-media-section {
        padding: 80px 0;
        background: #0f0f0f;
    }

    .social-tabs {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 50px;
    }

    .social-tab-btn {
        padding: 15px 30px;
        background: transparent;
        border: 2px solid rgba(212, 165, 116, 0.3);
        color: rgba(255, 255, 255, 0.7);
        font-size: 16px;
        font-weight: 600;
        font-family: 'DM Sans', sans-serif;
        cursor: pointer;
        border-radius: 50px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .social-tab-btn:hover {
        border-color: #d4a574;
        color: #d4a574;
        transform: translateY(-2px);
    }

    .social-tab-btn.active {
        background: #d4a574;
        border-color: #d4a574;
        color: #0a0a0a;
    }

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

    .social-tab-content.active {
        display: block;
    }

    .reels-carousel-container {
        position: relative;
        margin-top: 30px;
        overflow: hidden;
        border-radius: 20px;
    }

    .reels-carousel {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        gap: 30px;
    }

    .videos-carousel-container {
        position: relative;
        margin-top: 30px;
        overflow: hidden;
        border-radius: 20px;
    }

    .videos-carousel {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        gap: 30px;
    }

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

    .reel-item {
        background: #1a1a1a;
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid rgba(212, 165, 116, 0.2);
    }

    .reel-item:hover {
        transform: translateY(-10px);
        border-color: rgba(212, 165, 116, 0.5);
        box-shadow: 0 20px 40px rgba(212, 165, 116, 0.1);
    }

    .reel-video {
        position: relative;
        width: 100%;
        height: 400px;
        overflow: hidden;
    }

    .reel-video iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    .reel-info {
        padding: 25px;
    }

    .reel-info h4 {
        font-size: 20px;
        font-family: 'Marcellus', serif;
        margin-bottom: 10px;
        color: #d4a574;
    }

    .reel-info p {
        opacity: 0.8;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .social-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #d4a574;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        color: #f4d5a6;
        transform: translateX(5px);
    }

    .videos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 40px;
        margin-top: 30px;
    }

    .video-item {
        background: #1a1a1a;
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid rgba(212, 165, 116, 0.2);
    }

    .video-item:hover {
        transform: translateY(-10px);
        border-color: rgba(212, 165, 116, 0.5);
        box-shadow: 0 20px 40px rgba(212, 165, 116, 0.1);
    }

    .video-thumbnail {
        position: relative;
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    .video-thumbnail iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    .video-info {
        padding: 25px;
    }

    .video-info h4 {
        font-size: 22px;
        font-family: 'Marcellus', serif;
        margin-bottom: 10px;
        color: #d4a574;
    }

    .video-info p {
        opacity: 0.8;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }

    .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: #d4a574;
        transform: scale(1.2);
    }

    .dot:hover {
        background: rgba(212, 165, 116, 0.7);
    }

    .wildlife-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .wildlife-item {
        text-align: center;
        padding: 30px 20px;
        background: #1a1a1a;
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .wildlife-item:hover {
        transform: translateY(-5px);
        background: #252525;
    }

    .wildlife-item i {
        font-size: 40px;
        color: #d4a574;
        margin-bottom: 15px;
    }

    .wildlife-item h4 {
        font-size: 16px;
        font-family: 'Marcellus', serif;
    }

    /* Bento Grid Gallery - Ultra Modern Design */
    .gallery-section {
        padding: 120px 0;
        background: #0a0a0a;
        position: relative;
        overflow: hidden;
    }

    .gallery-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.05), transparent 70%);
        pointer-events: none;
    }

    .bento-gallery {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 250px;
        gap: 15px;
        margin-top: 60px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .bento-item {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        cursor: pointer;
        transform-style: preserve-3d;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-wide {
        grid-column: span 2;
    }

    .bento-tall {
        grid-row: span 2;
    }

    .bento-medium {
        grid-column: span 2;
    }

    .bento-small {
        grid-column: span 1;
    }

    .bento-inner {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 20px;
        background: #1a1a1a;
    }

    .bento-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.7);
        background: #1a1a1a;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .bento-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        filter: brightness(0.8) contrast(1.1);
    }

    .bento-item:hover img {
        transform: scale(1.15);
        filter: brightness(0.5) contrast(1.2);
    }

    .bento-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, 
            rgba(212, 165, 116, 0.9) 0%, 
            rgba(184, 144, 106, 0.8) 100%);
        display: flex;
        align-items: flex-end;
        padding: 30px;
        opacity: 0;
        transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .bento-item:hover .bento-overlay {
        opacity: 1;
    }

    .bento-content {
        transform: translateY(30px);
        transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
    }

    .bento-item:hover .bento-content {
        transform: translateY(0);
    }

    .bento-tag {
        display: inline-block;
        padding: 6px 16px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 12px;
        backdrop-filter: blur(10px);
    }

    .bento-content h3 {
        font-family: 'Marcellus', serif;
        font-size: 28px;
        margin-bottom: 8px;
        color: #0a0a0a;
    }

    .bento-content p {
        font-size: 15px;
        color: rgba(0, 0, 0, 0.8);
        font-weight: 500;
    }

    /* 3D Tilt Effect */
    .bento-item::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #d4a574, #f4d5a6, #d4a574);
        border-radius: 22px;
        opacity: 0;
        z-index: -1;
        transition: opacity 0.5s ease;
    }

    .bento-item:hover::before {
        opacity: 0.3;
        animation: glow 2s ease-in-out infinite;
    }

    @keyframes glow {
        0%, 100% { opacity: 0.3; }
        50% { opacity: 0.6; }
    }

    /* Magnetic hover effect */
    .bento-item:hover {
        transform: scale(1.02);
        box-shadow: 0 20px 60px rgba(212, 165, 116, 0.2);
        z-index: 10;
    }

    /* Parallax on scroll */
    .bento-item[data-parallax] {
        transition: transform 0.3s ease-out;
    }

    /* Additional responsive styles for Gir page */
    @media (max-width: 968px) {
        .overview-content {
            grid-template-columns: 1fr;
        }
        
        .highlights-grid {
            grid-template-columns: 1fr;
        }
        
        .safari-info-grid {
            grid-template-columns: 1fr;
        }
        
        .booking-card {
            position: relative;
            top: 0;
        }
        
        .info-cards {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .wildlife-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .reels-carousel .reel-item {
            flex: 0 0 calc(50% - 15px) !important;
        }
        
        .videos-carousel .video-item {
            flex: 0 0 calc(50% - 15px) !important;
        }
        
        .reels-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .videos-grid {
            grid-template-columns: 1fr;
        }
        
        .bento-gallery {
            grid-template-columns: repeat(2, 1fr);
            grid-auto-rows: 200px;
            gap: 10px;
        }
        
        .bento-large {
            grid-column: span 2;
            grid-row: span 2;
        }
        
        .bento-wide {
            grid-column: span 2;
        }
        
        .bento-medium {
            grid-column: span 2;
        }
        
        .bento-small {
            grid-column: span 1;
        }
        
        .bento-content h3 {
            font-size: 22px;
        }
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 42px;
        }
        
        .container {
            padding: 0 20px;
        }
        
        .header {
            padding: 10px 15px;
            min-height: 55px;
        }
        .header.scrolled {
            padding: 8px 15px;
            min-height: 50px;
        }
        .logo {
            font-size: 18px;
            height: 30px;
        }
        .logo img {
            height: 30px;
        }
        
        .info-cards {
            grid-template-columns: 1fr;
        }
        
        .wildlife-grid {
            grid-template-columns: 1fr;
        }
        
        .reels-carousel .reel-item {
            flex: 0 0 calc(100% - 20px) !important;
        }
        
        .videos-carousel .video-item {
            flex: 0 0 calc(100% - 20px) !important;
        }
        
        .reels-grid {
            grid-template-columns: 1fr;
        }
        
        .videos-grid {
            grid-template-columns: 1fr;
        }
        
        .social-tabs {
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .bento-gallery {
            grid-template-columns: 1fr;
            grid-auto-rows: 250px;
            gap: 10px;
        }
        
        .bento-large,
        .bento-wide,
        .bento-medium,
        .bento-small {
            grid-column: span 1;
            grid-row: span 1;
        }
        
        .bento-content h3 {
            font-size: 20px;
        }
    }
