/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
    color: #fff;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #FFD700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background: #FFD700;
    color: #000;
    border: 2px solid #FFD700;
}

.btn-primary:hover {
    background: transparent;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 10;
    padding: 0 20px;
}

.hero-prev,
.hero-next {
    background: rgba(0, 0, 0, 0.6);
    color: #FFD700;
    border: 2px solid #FFD700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.hero-prev:hover,
.hero-next:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-dots {
    display: flex;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active,
.hero-dot:hover {
    background: #FFD700;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-controls {
        bottom: 20px;
    }
    
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
    }
}

/* Click bubble effect for logo/title */
.logo {
    position: relative;
    overflow: visible;
}

.click-bubble {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(75, 83, 32, 0.35);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(1);
    animation: bubble-pop 600ms ease-out forwards;
}

@keyframes bubble-pop {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    60% { opacity: 0.6; transform: translate(-50%, -70%) scale(2.2); }
    100% { opacity: 0; transform: translate(-50%, -90%) scale(2.8); }
}

/* Tour Card Slideshow */
.tour-slideshow {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.tour-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.tour-slide.active {
    opacity: 1;
    z-index: 1;
}

.tour-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tour-slideshow-controls {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    z-index: 2;
}

.tour-prev,
.tour-next {
    background: rgba(0, 0, 0, 0.5);
    color: #FFD700;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s;
}

.tour-prev:hover,
.tour-next:hover {
    background: #FFD700;
    color: #000;
}

.tour-dots {
    display: flex;
    gap: 5px;
}

.tour-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.tour-dot.active {
    background: #FFD700;
    transform: scale(1.2);
}

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    transition: transform 0.3s ease;
}

.header.hide {
    transform: translateY(-100%);
}

.header.show {
    transform: translateY(0);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
    position: relative;
}

.logo {
    flex: 0 0 auto;
    margin-right: 2rem;
}

.logo h1 {
    color: #FFD700;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #FFD700;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #FFA500;
    padding-bottom: 0.7rem;
    border-bottom: 2px solid #FFA500;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: #FFD700;
    border-radius: 10px;
    transition: all 0.3s;
}

.dropbtn i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropbtn {
    background: #FFA500;
    color: #fff;
}

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

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.95);
    min-width: 400px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 1rem;
    z-index: 1001;
}

.dropdown-section {
    margin-bottom: 1.5rem;
}

.dropdown-section h4 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-content a {
    color: #FFD700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.dropdown-content a i {
    color: #FFA500;
    font-size: 0.8rem;
}

.dropdown-content a:hover {
    color: #FFA500;
    padding-left: 0.5rem;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-buttons .login-btn {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons .login-btn:hover {
    background: #FFD700;
    color: #000;
}

.cta-buttons .login-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.95);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 0.5rem;
    z-index: 1001;
    top: 100%;
    right: 0;
}

.dropdown-section {
    margin-bottom: 0;
}

.login-option,
.signup-option {
    color: #FFD700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.login-option i,
.signup-option i {
    color: #FFA500;
    font-size: 0.8rem;
}

.login-option:hover,
.signup-option:hover {
    color: #FFA500;
    padding-left: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.cta-buttons .book-btn,
.cta-buttons a.book-btn {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: auto;
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    z-index: -1;
}

.book-btn:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    letter-spacing: 1px;
}

.book-btn:hover::before {
    transform: translateX(100%) rotate(45deg);
}

/* Responsive adjustments */
@media (min-width: 1600px) {
    .tours-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1600px;
    }
}

@media (max-width: 1199px) {
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .tour-card img,
    .tour-slideshow {
        height: 200px;
    }
}

@media (max-width: 992px) {
    .tours {
        padding: 80px 4%;
    }
    
    .tours h2 {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .tours h2 {
        font-size: 2.2rem;
    }
    
    .tour-card img,
    .tour-slideshow {
        height: 180px;
    }
    
    .tour-info {
        padding: 18px 20px 20px;
    }
    
    .tour-info h3 {
        font-size: 1.2rem;
    }
    
    .book-btn {
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .tours {
        padding: 60px 3%;
    }
    
    .tours h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 30px;
    }
    
    .tour-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .tour-card img,
    .tour-slideshow {
        height: 220px;
    }
    
    .tour-info {
        padding: 20px 25px 25px;
    }
    
    .tour-info h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .book-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .tours h2 {
        font-size: 1.8rem;
    }
    
    .tour-card img,
    .tour-slideshow {
        height: 200px;
    }
    
    .tour-info {
        padding: 18px 20px 20px;
    }
    
    .tour-info h3 {
        font-size: 1.2rem;
    }
}

.cta-buttons .book-btn:active,
.cta-buttons a.book-btn:active {
    transform: translateY(1px);
}

/* Responsive Header */
@media screen and (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 1rem;
    }

    .logo {
        margin-right: 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 2rem;
    }

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

    .nav-links a {
        width: 100%;
        text-align: left;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }

    .nav-links a:hover {
        padding-bottom: 0;
        border-bottom: none;
    }

    .dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        width: 100%;
        top: 0;
        left: 0;
        transform: none;
    }

    .dropdown-section {
        margin: 0;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }

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

    .dropdown-section h4 {
        font-size: 1rem;
        margin: 0.5rem 0;
    }

    .dropdown-content a {
        padding: 0.5rem 0;
    }

    .menu-btn {
        display: block;
    }

    .cta-buttons {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-buttons .login-btn {
        width: 100%;
        justify-content: center;
    }

    .dropdown-content {
        width: 100%;
        right: 0;
    }

    .login-option,
    .signup-option {
        justify-content: center;
    }
}

/* General Theme Colors */
:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --black: #333;
    --brown: #8B4513;
    --white: #fff;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.search-bar {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.search-bar input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.search-btn {
    padding: 1rem 2rem;
    background: var(--primary-gold);
    color: var(--black);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background: var(--secondary-gold);
}

/* Card Styles */
.tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Image Container */
.tour-image-container {
    position: relative;
    padding: 12px 12px 0;
    background: #f8f9fa;
    flex: 0 0 auto;
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    transform-origin: center;
}

.tour-card:hover img {
    transform: scale(1.03);
}

/* Add subtle gradient overlay */
.tour-card > .tour-image-container::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 6px;
    pointer-events: none;
}

.tour-card:hover > .tour-image-container::after {
    opacity: 1;
}

.tour-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.tour-info h3 {
    margin: 0 0 12px 0;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.tour-card:hover .tour-info {
    padding: 20px 25px 25px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-info::before {
    content: '';
    position: absolute;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 15px 0 18px;
    display: flex;
    align-items: center;
}

.price::before {
    content: 'From: ';
    font-size: 0.9rem;
    font-weight: 500;
    color: #7f8c8d;
    margin-right: 5px;
}

.book-btn {
    background: var(--primary-gold);
    color: var(--black);
    border-radius: 10px;
    padding: 0.8rem 2rem;
    font-weight: 500;
    transition: all 0.3s;
    text-decoration: none;
}

.book-btn:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.book-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}

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

.dropdown-item:hover {
    background-color: #f8f8f8;
    color: #D4AF37;
    padding-left: 25px;
}

/* Side Tray Styles */
.side-tray {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 215, 0, 0.2);
    overflow-y: auto;
}

.side-tray.active {
    right: 0;
}

.tray-content {
    display: none;
    height: 100%;
    padding: 2rem;
}

.tray-content.active {
    display: block;
    animation: slideIn 0.3s ease-out;
}

.tray-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #FFD700;
}

.tray-header h3 {
    font-size: 1.8rem;
    color: #000;
    margin: 0;
    font-weight: 600;
}

.close-tray {
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-tray:hover {
    color: #FFD700;
}

.tour-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tour-option {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tour-option h4 {
    color: #000;
    font-size: 1.4rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.tour-option p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tour-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tour-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.tour-features li i {
    color: #FFD700;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .side-tray {
        width: 100%;
        right: -100%;
    }
    
    .tour-options {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tour-option {
        padding: 1rem;
    }
    
    .tour-option h4 {
        font-size: 1.2rem;
    }
    
    .tour-features {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Overlay for side tray */
.tray-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}

.tray-overlay.active {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .side-tray {
        width: 100%;
        right: -100%;
    }
    
    .tray-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tray-features {
        grid-template-columns: 1fr;
    }
    
    .dropdown-content {
        min-width: 200px;
    }
}

/* Contact Form Styles */
.contact {
    padding: 5rem 5%;
    background: #f9f9f9;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--black);
}

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

.contact-form {
    display: flex;
    justify-content: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 500px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form textarea {
    height: 200px;
    resize: vertical;
    padding: 1.5rem;
    font-size: 1.1rem;
}

.contact-form button {
    width: 100%;
    padding: 1.5rem;
    background: var(--primary-gold);
    color: var(--black);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px);
}

.contact-form button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-left: auto;
    padding: 0 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--black);
}

.info-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.call-us {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 0.85rem;
    line-height: 1.2;
}

.call-us i {
    color: #FFD700;
    font-size: 0.9rem;
}

.call-us:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* Responsive Contact */
@media screen and (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .contact-info {
        align-items: center;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .contact-info {
        display: none;
    }
}

/* Footer Styles */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.footer-section h3 {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #FFD700;
}

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

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

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.contact-info li i {
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: #FFD700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    border-color: #FFD700;
}

.social-links a i {
    font-size: 1.1rem;
}

.social-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.social-links a:hover .social-icon-img {
    transform: scale(1.15);
}

.newsletter h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #fff;
    border-radius: 4px;
}

.newsletter-form button {
    padding: 10px 20px;
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #ffed4a;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    background: #1a1a1a;
    text-align: center;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom p {
    margin: 5px 0;
    color: #fff;
}

.footer-bottom a {
    color: #FFD700;
    text-decoration: none;
}

/* Slideshow Styles */
.hero-slide {
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide.active {
    opacity: 1;
}

.destinations-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.destination-card {
    flex: 0 0 auto;
    width: 300px;
    transition: transform 0.3s ease;
}

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

.destinations-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.destinations-dot.active {
    background: #FFD700;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* User Profile Styles */
.user-profile {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFD700;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.user-profile i {
    color: #FFD700;
    font-size: 1.1rem;
}

.user-profile:hover {
    transform: translateX(5px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .user-profile {
        display: none;
    }
}

/* Hide login/signup when user is logged in */
.user-logged-in .login-btn,
.user-logged-in .signup-option {
    display: none !important;
}

/* Show user profile when logged in */
.user-logged-in .user-profile {
    display: flex !important;
}

/* Destinations Section */
.destinations {
    padding: 4rem 0;
    background: #f8f9fa;
    overflow: hidden;
    position: relative;
}

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

.destinations h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.destinations .subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.destinations-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: hidden;
}

.destinations-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.destination-card {
    flex: 0 0 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.destinations-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
}

.destinations-prev,
.destinations-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.destinations-prev:hover,
.destinations-next:hover {
    background: #FFD700;
    transform: scale(1.1);
}

.destinations-prev i,
.destinations-next i {
    font-size: 1.2rem;
    color: #333;
}

.destinations-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.destinations-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.destinations-dot.active {
    background: #FFD700;
    transform: scale(1.2);
}

@media screen and (max-width: 992px) {
    .destination-card {
        flex: 0 0 250px;
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .destination-card {
        flex: 0 0 200px;
        height: 300px;
    }
    
    .destinations-prev,
    .destinations-next {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 576px) {
    .destination-card {
        flex: 0 0 180px;
        height: 250px;
    }
    
    .destinations-prev,
    .destinations-next {
        width: 30px;
        height: 30px;
    }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

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

.about-text {
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .destinations-slideshow {
        height: 400px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .destinations-slideshow {
        height: 350px;
    }

    .slide-caption h3 {
        font-size: 1.5rem;
    }

    .slide-caption p {
        font-size: 1rem;
    }

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

@media screen and (max-width: 576px) {
    .destinations-slideshow {
        height: 300px;
    }

    .slide-caption {
        padding: 1rem;
    }

    .slide-caption h3 {
        font-size: 1.3rem;
    }

    .slide-caption p {
        font-size: 0.9rem;
    }

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

    .destinations-prev,
    .destinations-next {
        width: 30px;
        height: 30px;
    }
}

/* Explore Africa Section */
.explore-africa {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.region-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.region-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.region-section {
    margin-bottom: 80px;
}

.region-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.region-description {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.region-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.region-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.region-card {
    flex: 0 0 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .region-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .region-card {
        flex: 0 0 250px;
    }
    
    .region-header h2 {
        font-size: 2rem;
    }
    
    .region-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .region-card {
        flex: 0 0 220px;
    }
    
    .region-header h2 {
        font-size: 1.8rem;
    }
    
    .region-title {
        font-size: 1.5rem;
    }
}

/* Tours Section */
.tours {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.tours h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.tours .subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.tours h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.section-header:hover h2::after {
    width: 100px;
}

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

.tours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0, 0, 0, 0.1),
        transparent
    );
}

.tours p.subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.tour-card > .tour-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-card:hover > .tour-image-container::after {
    opacity: 1;
}

.tour-info {
    padding: 1.5rem;
    position: relative;
    background: white;
}

.tour-info::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(
        to bottom,
        transparent,
        white
    );
}

.tour-info h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.tour-info::before {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price {
    font-size: 1.2rem;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price::before {
    content: 'From';
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
}

.book-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.book-btn:hover {
    background: #000;
    color: #FFD700;
    transform: translateY(-2px);
}

.book-btn:active {
    transform: translateY(0);
}

@media (min-width: 1600px) {
    .tours-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199px) {
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tour-card img,
    .tour-image-container {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .tours {
        padding: 4rem 0;
    }
    
    .tours h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .tours h2 {
        font-size: 2rem;
    }
    
    .tour-card img,
    .tour-image-container {
        height: 200px;
    }
    
    .tour-info {
        padding: 1.2rem;
    }
    
    .tour-info h3 {
        font-size: 1.2rem;
    }
    
    .book-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .tours {
        padding: 3rem 0;
    }
    
    .tours h2 {
        font-size: 1.8rem;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tour-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .tour-card img,
    .tour-image-container {
        height: 220px;
    }
    
    .tour-info {
        padding: 1.5rem;
    }
    
    .tour-info h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.1rem;
    }
    
    .book-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .tours h2 {
        font-size: 1.6rem;
    }
    
    .tour-card img,
    .tour-image-container {
        height: 200px;
    }
    
    .tour-info {
        padding: 1.2rem;
    }
    
    .tour-info h3 {
        font-size: 1.2rem;
    }
}

.cta-buttons .book-btn:active,
.book-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Admin Login/Signup Background */
.admin-login,
.admin-signup {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/image/e805293ef62857a7dd55dc8d98af7268.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.admin-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.admin-form-container h2 {
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.admin-form-container .form-group {
    margin-bottom: 1.2rem;
}

.admin-form-container label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.admin-form-container input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.admin-form-container input:focus {
    border-color: #FFD700;
    outline: none;
}

.admin-form-container button {
    width: 100%;
    padding: 1rem;
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-form-container button:hover {
    background: #000;
    color: #FFD700;
}

.admin-form-container .form-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.admin-form-container .form-footer a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.admin-form-container .form-footer a:hover {
    color: #FFD700;
}

@media (max-width: 480px) {
    .admin-form-container {
        padding: 1.5rem;
    }
    
    .admin-form-container h2 {
        font-size: 1.5rem;
    }
}

/* What We Offer Section */
.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.services-container h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-size: 2.5rem;
}

.services-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.services-container:hover h2::after {
    width: 100px;
}

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

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.service-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

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

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .service-card {
        padding: 15px;
    }

    .service-image {
        height: 180px;
    }
}

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

    .service-image {
        height: 160px;
    }
}

/* Our Commitment Section */
.commitment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.commitment-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 25px;
    position: relative;
}

.commitment-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #007bff;
}

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

.commitment-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 15px;
}

.feature span {
    display: block;
    font-weight: 600;
    color: #333;
}

.cta-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cta-box h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.cta-box p {
    color: #666;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #0056b3;
}

/* Gallery Hero Section */
.hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Featured Tours Section */
.featured-tours {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.featured-tours h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
}

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

.tour-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.tour-content {
    padding: 20px;
}

.tour-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.tour-content p {
    color: #666;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.photo-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 1;
}

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

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

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

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

/* Video Gallery Section */
.video-gallery {
    padding: 80px 0;
    background: #fff;
}

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

.video-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
}

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

.video-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.video-link {
    text-decoration: none;
    color: inherit;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    color: #000;
    font-size: 24px;
    margin-left: 4px;
}

.video-item:hover .play-button {
    background: #FFD700;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item h3 {
    padding: 15px;
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    background: #fff;
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .video-gallery h2 {
        font-size: 2rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 20px;
    }
}

/* Explore Africa Section */
.explore-section {
    padding: 80px 0;
    background: #f9f9f9;
    overflow: hidden;
}

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

.explore-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.explore-card {
    flex: 0 0 auto;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.explore-content {
    padding: 20px;
}

.explore-content h3 {
    margin: 0 0 10px;
    color: #333;
    font-size: 1.2rem;
}

.explore-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.explore-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.explore-prev,
.explore-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.explore-prev:hover,
.explore-next:hover {
    background: #FFD700;
    transform: scale(1.1);
}

.explore-prev i,
.explore-next i {
    color: #333;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .explore-card {
        width: 250px;
    }
    
    .explore-controls {
        padding: 0 10px;
    }
}

/* Payment Details Section */
.payment-details {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.payment-method-selector {
    margin-bottom: 30px;
}

.payment-method-selector h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.payment-method-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-method-card.active {
    border-color: var(--primary-gold);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-method-card img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 10px;
}

.payment-method-card span {
    display: block;
    color: #333;
    font-weight: 500;
}

.payment-form {
    display: none;
    animation: fadeIn 0.3s ease;
}

.payment-form.active {
    display: block;
}

.card-input-group {
    position: relative;
}

.card-icons {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
}

.card-icons img {
    height: 25px;
    width: auto;
}

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

.mpesa-instructions {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.mpesa-instructions h4 {
    color: #333;
    margin-bottom: 15px;
}

.mpesa-instructions ol {
    padding-left: 20px;
    color: #666;
}

.mpesa-instructions li {
    margin-bottom: 10px;
}

.bank-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.bank-info {
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.bank-info p {
    margin: 10px 0;
    color: #666;
}

.paypal-container {
    text-align: center;
    padding: 30px;
}

.paypal-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-top: 20px;
}

.paypal-button img {
    max-width: 200px;
    height: auto;
}

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

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

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

    .payment-details {
        padding: 20px;
    }
}

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

/* Enhanced Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-item {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

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

.dropdown-item:hover {
    background: #f8f9fa;
    color: var(--primary-gold);
}

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

.dropdown-item:hover i {
    transform: translateX(5px);
}

/* Side Tray */
.side-tray {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 215, 0, 0.2);
    overflow-y: auto;
}

.side-tray.active {
    right: 0;
}

.tray-content {
    display: none;
    height: 100%;
    padding: 2rem;
}

.tray-content.active {
    display: block;
    animation: slideIn 0.3s ease-out;
}

.tray-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #FFD700;
}

.tray-header h3 {
    font-size: 1.8rem;
    color: #000;
    margin: 0;
    font-weight: 600;
}

.close-tray {
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-tray:hover {
    color: #FFD700;
}

.tour-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tour-option {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tour-option h4 {
    color: #000;
    font-size: 1.4rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.tour-option p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tour-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tour-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.tour-features li i {
    color: #FFD700;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .side-tray {
        width: 100%;
        right: -100%;
    }
    
    .tour-options {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tour-option {
        padding: 1rem;
    }
    
    .tour-option h4 {
        font-size: 1.2rem;
    }
    
    .tour-features {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Overlay */
.tray-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}

.tray-overlay.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .side-tray {
        width: 100%;
        right: -100%;
    }
    
    .tray-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tray-features {
        grid-template-columns: 1fr;
    }
    
    .dropdown-content {
        min-width: 200px;
    }
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: var(--primary-gold);
}

/* Side Tray */
.side-tray {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 215, 0, 0.2);
    overflow-y: auto;
}

.side-tray.active {
    right: 0;
}

.tray-content {
    display: none;
    height: 100%;
    padding: 2rem;
}

.tray-content.active {
    display: block;
    animation: slideIn 0.3s ease-out;
}

.tray-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #FFD700;
}

.tray-header h3 {
    font-size: 1.8rem;
    color: #000;
    margin: 0;
    font-weight: 600;
}

.close-tray {
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-tray:hover {
    color: #FFD700;
}

.tour-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tour-option {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tour-option h4 {
    color: #000;
    font-size: 1.4rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.tour-option p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tour-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tour-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.tour-features li i {
    color: #FFD700;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .side-tray {
        width: 100%;
        right: -100%;
    }
    
    .tour-options {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tour-option {
        padding: 1rem;
    }
    
    .tour-option h4 {
        font-size: 1.2rem;
    }
    
    .tour-features {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Overlay */
.tray-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}

.tray-overlay.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .side-tray {
        width: 100%;
        right: -100%;
    }
    
    .tray-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tray-features {
        grid-template-columns: 1fr;
    }
    
    .dropdown-content {
        min-width: 200px;
    }
}

/* Gallery Slider Styles */
.gallery-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
}

.gallery-slider {
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    animation: slide 30s linear infinite;
    width: fit-content;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    flex: 0 0 300px;
    margin: 0 10px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Region Section Styles */
.region-section {
    padding: 40px 0;
    background: #f9f9f9;
}

.region-title {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.region-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #666;
    line-height: 1.6;
}

.region-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.region-track {
    display: flex;
    transition: transform 0.5s ease;
}

.region-card {
    flex: 0 0 300px;
    margin: 0 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .region-card {
        flex: 0 0 250px;
    }
    
    .region-card img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .region-card {
        flex: 0 0 200px;
    }
    
    .region-card img {
        height: 120px;
    }
}

/* Global Responsive Styles */
:root {
    --header-height: 80px;
    --mobile-header-height: 60px;
    --sidebar-width: 250px;
    --mobile-padding: 15px;
}

/* Base Mobile-First Styles */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* Responsive Typography */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p { font-size: clamp(1rem, 2vw, 1.1rem); }

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1000;
    background: var(--primary-color);
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsive Container */
.container {
    width: 100%;
    padding-right: var(--mobile-padding);
    padding-left: var(--mobile-padding);
    margin-right: auto;
    margin-left: auto;
}

/* Responsive Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.col {
    flex: 1 0 0%;
    padding: 0 10px;
}

/* Responsive Tables */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Responsive Forms */
.form-control {
    width: 100%;
    padding: 12px;
    font-size: 16px; /* Prevents zoom on iOS */
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Touch-friendly Buttons */
.btn {
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    touch-action: manipulation;
}

/* Media Queries */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 960px;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        padding: 20px;
        transition: 0.3s;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .row {
        flex-direction: column;
    }
    
    .col {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .card {
        margin-bottom: 15px;
    }
    
    .table th, .table td {
        white-space: nowrap;
        padding: 8px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 10px;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .card-body {
        padding: 15px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .btn:hover {
        transform: none;
    }
    
    .nav-link:hover {
        background: none;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* Main Navigation Responsive Styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: color 0.3s ease;
}

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

.cta-buttons {
    display: flex;
    gap: 15px;
}

.login-btn, .book-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.book-btn {
    background: var(--primary-color);
    border: none;
    color: var(--secondary-color);
}

.contact-info {
    display: flex;
    align-items: center;
}

.call-us {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* Hero Section Responsive Styles */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-btn {
        display: block;
    }
    
    .cta-buttons {
        display: none;
    }
    
    .contact-info {
        display: none;
    }
    
    .hero-content {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 10px 15px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    
    .hero-content p {
        font-size: clamp(0.9rem, 1.5vw, 1rem);
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .nav-links a:hover {
        color: var(--secondary-color);
    }
    
    .btn:hover {
        transform: none;
    }
}

/* Premium Gallery Section */
.premium-gallery {
    padding: 20px 0;
    background-color: #f9f9f9;
    text-align: center;
}

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

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

.gallery-image {
    max-width: 48%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive styles */
@media (max-width: 768px) {
    .gallery-image {
        max-width: 100%;
    }
}

/* ========================================
   LIVE TRACK FEED SECTION - PREMIUM STYLING
   ======================================== */

.live-track-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.live-track-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
    animation: pulseBackground 10s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.track-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-badge-gold {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
    color: #FFD700;
    border: 2px solid #FFD700;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 215, 0, 0.6);
    }
}

.section-header-center h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    letter-spacing: 1px;
}

.section-header-center p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.live-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feed-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out backwards;
}

.feed-card:nth-child(1) { animation-delay: 0.1s; }
.feed-card:nth-child(2) { animation-delay: 0.2s; }
.feed-card:nth-child(3) { animation-delay: 0.3s; }

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

.feed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.feed-card:hover::before {
    left: 100%;
}

.feed-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.feed-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feed-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.feed-info {
    flex: 1;
}

.feed-info h4 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.feed-time {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.feed-time i {
    font-size: 0.8rem;
}

.live-badge {
    padding: 0.4rem 0.8rem;
    background: #ff0000;
    color: #fff;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    transition: transform 0.2s ease;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.feed-content {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feed-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.feed-stats span {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feed-stats span i {
    color: #FFD700;
}

.feed-image {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 1.5rem auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(255, 215, 0, 0.3);
    border: 3px solid #FFD700;
}

.feed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 50%;
}

.feed-card:hover .feed-image img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 0, 0, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    animation: livePulse 2s ease-in-out infinite;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 0, 0, 0.7);
    }
}

.image-badge i {
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ========================================
   REVIEWS SECTION - PREMIUM SLIDING ANIMATION
   ======================================== */

.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

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

.reviews-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    padding: 2rem 0;
}

.reviews-slider {
    display: flex;
    gap: 2rem;
    animation: slideReviews 60s linear infinite;
    width: max-content;
}

.reviews-slider:hover {
    animation-play-state: paused;
}

@keyframes slideReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 2rem));
    }
}

.review-card {
    min-width: 400px;
    max-width: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(255, 215, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #FFD700;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.review-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.review-stars i {
    color: #FFD700;
    font-size: 1.2rem;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.review-text {
    color: #ccc;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.author-info h4 {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.author-info span {
    color: #999;
    font-size: 0.9rem;
}

/* Duplicate reviews for infinite scroll effect */
.reviews-slider::after {
    content: '';
    display: block;
    width: 2rem;
}

/* ========================================
   RESPONSIVE DESIGN FOR NEW SECTIONS
   ======================================== */

@media (max-width: 1200px) {
    .live-feed-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .live-track-section,
    .reviews-section {
        padding: 4rem 0;
    }
    
    .section-header-center {
        margin-bottom: 3rem;
    }
    
    .section-header-center h2 {
        font-size: 2rem;
    }
    
    .live-feed-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feed-card {
        padding: 1.5rem;
    }
    
    .feed-image {
        width: 200px;
        height: 200px;
    }
    
    .review-card {
        min-width: 320px;
        max-width: 320px;
        padding: 2rem;
    }
    
    .reviews-slider {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .track-container,
    .reviews-container {
        padding: 0 1rem;
    }
    
    .feed-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feed-info h4 {
        font-size: 1.1rem;
    }
    
    .review-card {
        min-width: 280px;
        max-width: 280px;
        padding: 1.5rem;
    }
    
    .section-badge-gold {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .feed-image {
        width: 180px;
        height: 180px;
    }
}

/* ========================================
   LIVE TRAFFIC FEED SECTION
   ======================================== */

.live-traffic-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #000000 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.live-traffic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 165, 0, 0.03) 0%, transparent 50%);
    animation: pulseBackground 15s ease-in-out infinite;
}

.traffic-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.traffic-feed-wrapper {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.traffic-feed-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.1) 25%, 
        transparent 50%, 
        rgba(255, 215, 0, 0.1) 75%, 
        transparent 100%);
    background-size: 200% 200%;
    animation: borderGlow 3s linear infinite;
    border-radius: 20px;
    z-index: -1;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.traffic-feed-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

/* Custom Traffic Feed Styling */
.traffic-stats-header {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.stat-box i {
    font-size: 2.5rem;
    color: #FFD700;
    opacity: 0.8;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-visitors-list {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    max-height: 500px;
    overflow-y: auto;
}

.live-visitors-list::-webkit-scrollbar {
    width: 8px;
}

.live-visitors-list::-webkit-scrollbar-track {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

.live-visitors-list::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 10px;
}

.visitor-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(255, 165, 0, 0.03) 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideInVisitor 0.5s ease forwards;
}

.visitor-item[data-delay="0"] { animation-delay: 0s; }
.visitor-item[data-delay="0.1"] { animation-delay: 0.1s; }
.visitor-item[data-delay="0.2"] { animation-delay: 0.2s; }
.visitor-item[data-delay="0.3"] { animation-delay: 0.3s; }
.visitor-item[data-delay="0.4"] { animation-delay: 0.4s; }
.visitor-item[data-delay="0.5"] { animation-delay: 0.5s; }
.visitor-item[data-delay="0.6"] { animation-delay: 0.6s; }
.visitor-item[data-delay="0.7"] { animation-delay: 0.7s; }
.visitor-item[data-delay="0.8"] { animation-delay: 0.8s; }
.visitor-item[data-delay="0.9"] { animation-delay: 0.9s; }

@keyframes slideInVisitor {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.visitor-item:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 165, 0, 0.08) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.visitor-flag {
    font-size: 2rem;
    flex-shrink: 0;
}

.visitor-details {
    flex: 1;
}

.visitor-location {
    color: #FFD700;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.visitor-page {
    color: #999;
    font-size: 0.9rem;
}

.visitor-page span {
    color: #ccc;
    font-weight: 500;
}

.visitor-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.live-dot {
    color: #19ff19;
    font-size: 0.5rem;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.traffic-footer {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.popular-pages h4 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.popular-pages h4 i {
    color: #ff6b35;
}

.page-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.page-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.page-name {
    color: #ccc;
    font-weight: 600;
    font-size: 0.95rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
}

.page-views {
    color: #FFD700;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Responsive styling for traffic feed */
@media (max-width: 768px) {
    .live-traffic-section {
        padding: 4rem 0;
    }
    
    .traffic-feed-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .traffic-container {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .traffic-feed-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .traffic-stats-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1rem;
    }
    
    .stat-box i {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .visitor-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .visitor-flag {
        font-size: 1.5rem;
    }
}

/* ========================================
   SOCIAL MEDIA PREVIEW WIDGETS SECTION
   ======================================== */

.social-preview-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #0f0f0f 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.social-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 35%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(255, 165, 0, 0.04) 0%, transparent 50%);
    animation: pulseBackground 12s ease-in-out infinite;
}

.social-preview-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.social-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.social-widget-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.social-widget-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.widget-header i {
    font-size: 2rem;
    color: #FFD700;
}

.widget-header h3 {
    color: #FFD700;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.widget-preview {
    position: relative;
    height: 500px;
    background: #fff;
    overflow: hidden;
}

.widget-preview iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Embedded Widget Styles */
.widget-preview.embedded-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #f8f8f8;
}

.widget-preview.embedded-widget iframe,
.widget-preview.embedded-widget .twitter-timeline,
.widget-preview.embedded-widget .tiktok-embed,
.widget-preview.embedded-widget .fb-page,
.widget-preview.embedded-widget [data-pin-do] {
    width: 100% !important;
    max-width: 340px;
    height: 100%;
    margin: 0 auto;
}

/* Pinterest specific styling */
.widget-preview.embedded-widget [data-pin-do="embedUser"] {
    display: block;
    min-height: 500px;
}

/* Facebook specific styling */
.widget-preview.embedded-widget .fb-page {
    display: block;
}

/* TikTok specific styling */
.widget-preview.embedded-widget .tiktok-embed {
    min-height: 500px;
}

.social-preview-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 1.5rem;
    background: #fff;
}

.social-preview-content::-webkit-scrollbar {
    width: 6px;
}

.social-preview-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.social-preview-content::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 10px;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 1.5rem;
}

.company-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-logo i {
    font-size: 1.8rem;
    color: #000;
}

.company-logo.fb-logo {
    background: #1877f2;
}

.company-logo.fb-logo i {
    color: #fff;
}

.company-logo.x-logo {
    background: #000;
}

.company-logo.x-logo i {
    color: #fff;
}

.company-logo.tiktok-logo {
    background: #000;
}

.company-logo.tiktok-logo i {
    color: #fff;
}

.company-info h4 {
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.3rem 0;
}

.company-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.preview-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.post-item {
    padding: 1.2rem;
    background: #f8f8f8;
    border-radius: 12px;
    border-left: 4px solid #FFD700;
}

.post-item p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.post-item strong {
    color: #000;
    font-weight: 600;
}

.post-engagement {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.post-engagement span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
}

.post-engagement i {
    color: #FFD700;
    font-size: 0.9rem;
}

.post-time {
    color: #999;
    font-size: 0.8rem;
    font-style: italic;
}

.video-post {
    border-left-color: #ff0050;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
}

.video-thumbnail i {
    font-size: 3rem;
    color: #fff;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.video-thumbnail:hover i {
    transform: scale(1.2);
    opacity: 1;
}

.video-views {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.widget-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.social-widget-card:hover .widget-overlay {
    opacity: 1;
}

.widget-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.widget-link:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.widget-link i {
    font-size: 1rem;
}

.widget-footer {
    padding: 1.2rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.follower-count {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.follower-count i {
    color: #FFD700;
    font-size: 1rem;
}

.visit-link {
    color: #FFD700;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.visit-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: translateX(5px);
}

.visit-link i {
    font-size: 0.8rem;
}

/* Responsive styling for social widgets */
@media (max-width: 1024px) {
    .social-widgets-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .social-preview-section {
        padding: 4rem 0;
    }
    
    .social-widgets-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .widget-preview {
        height: 450px;
    }
    
    .social-preview-container {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .widget-preview {
        height: 400px;
    }
    
    .widget-header {
        padding: 1rem;
    }
    
    .widget-header i {
        font-size: 1.5rem;
    }
    
    .widget-header h3 {
        font-size: 1.1rem;
    }
    
    .widget-link {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}