/* ===================================
   Safari Adventure Tour - Main Stylesheet
   Arabic RTL Design
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-color: #8aa15b;
    --primary-dark: #6d8147;
    --primary-light: #a4bc7a;
    --secondary-color: #5a7a3c;
    --secondary-dark: #3d5228;
    --accent-color: #8aa15b;
    
    /* Neutral Colors */
    --dark: #1a1a1a;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #999999;
    --light: #f5f5f5;
    --white: #ffffff;
    
    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #8aa15b 0%, #6d8147 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(138, 161, 91, 0.9) 0%, rgba(90, 122, 60, 0.9) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar {
    padding: var(--spacing-sm) 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    color: var(--gray-dark);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background-color: rgba(212, 121, 10, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(138, 161, 91, 0.85) 0%, rgba(90, 122, 60, 0.85) 100%),
                url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920') center/cover no-repeat;
    background-attachment: fixed; /* Parallax effect */
    padding: var(--spacing-xl) 0;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-title .highlight {
    display: block;
    color: #ffeb3b;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffeb3b;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 50%;
    transform: translateX(50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===================================
   SECTION STYLES
   =================================== */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 121, 10, 0.1) 0%, rgba(44, 95, 45, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    background-color: var(--light);
}

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

.feature-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    color: var(--gray);
}

/* ===================================
   PACKAGES SECTION
   =================================== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.package-card.featured {
    border: 3px solid var(--primary-color);
}

.package-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-badge.sale {
    background: var(--accent-color);
}

.package-badge.premium {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: var(--dark);
}

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

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.package-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.package-card:hover .package-overlay {
    opacity: 1;
}

.package-content {
    padding: var(--spacing-md);
}

.package-meta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-sm);
}

.package-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.package-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.package-description {
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
}

.package-route h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.package-highlights {
    margin: var(--spacing-sm) 0;
}

.package-highlights h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.package-highlights ul {
    list-style: none;
}

.package-highlights li {
    padding: 0.25rem 0;
    color: var(--gray);
}

.package-highlights i {
    color: var(--secondary-color);
    margin-left: 0.5rem;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--light);
    margin-top: var(--spacing-sm);
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.price-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
}

.price-amount .currency {
    font-size: 1.25rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--gray-light);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.price-note {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    background: linear-gradient(135deg, rgba(212, 121, 10, 0.05) 0%, rgba(44, 95, 45, 0.05) 100%);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, rgba(212, 121, 10, 0.95) 0%, rgba(44, 95, 45, 0.95) 100%),
                url('https://images.unsplash.com/photo-1558981403-c5f9899a28bc?w=1920') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.cta-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-main {
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-right: 0.5rem;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-sm);
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md) 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
}

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

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.scroll-to-top.show {
    display: flex;
}

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
    position: relative;
    background: linear-gradient(135deg, rgba(212, 121, 10, 0.9) 0%, rgba(44, 95, 45, 0.9) 100%),
                url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920') center/cover no-repeat;
    padding: 150px 0 100px;
    margin-top: 70px;
    text-align: center;
    color: var(--white);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.page-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.page-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   FORMS
   =================================== */
.form-group {
    margin-bottom: var(--spacing-sm);
}

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

.form-group label i {
    color: var(--primary-color);
    margin-left: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* ===================================
   ADDITIONAL PAGE STYLES
   =================================== */

/* Tour Types Section */
.tour-types {
    background-color: var(--white);
}

.tour-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var(--spacing-lg);
}

.tour-type-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.tour-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.tour-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-type-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
}

.tour-type-badge.featured {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: var(--dark);
}

.tour-type-content {
    padding: var(--spacing-md);
}

.tour-type-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-sm);
}

.tour-type-title i {
    color: var(--primary-color);
    font-size: 1.75rem;
}

.tour-type-description {
    margin-bottom: var(--spacing-sm);
    color: var(--gray);
}

.tour-type-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.tour-type-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-type-features i {
    color: var(--secondary-color);
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--light);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var(--spacing-xl);
    align-items: center;
}

.why-reasons {
    margin: var(--spacing-md) 0;
}

.reason-item {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reason-content h4 {
    margin-bottom: 0.25rem;
}

.reason-content p {
    color: var(--gray);
    margin: 0;
}

.why-choose-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.image-item {
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
}

.image-item.large {
    grid-column: 1 / -1;
    height: 300px;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Package Preview Section */
.packages-preview {
    background: var(--white);
}

.packages-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Filter Section */
.packages-filter {
    background: var(--light);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 700;
    color: var(--gray-dark);
    min-width: 100px;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--light);
    background: var(--white);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--gray-dark);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--light);
    border-radius: 15px;
}

.empty-state i {
    font-size: 4rem;
    color: var(--gray-light);
    margin-bottom: var(--spacing-sm);
}

.empty-state h3 {
    color: var(--gray-dark);
    margin-bottom: var(--spacing-sm);
}

.empty-state p {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
}

/* Pricing Plans */
.pricing-plans {
    background: var(--light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--light);
    margin-bottom: var(--spacing-sm);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.price-period {
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features i {
    color: var(--secondary-color);
}

.pricing-note {
    text-align: center;
    margin-top: var(--spacing-md);
    color: var(--gray);
    font-size: 0.9rem;
}

/* Package Detail Styles */
.package-detail-hero {
    margin-top: 70px;
}

.package-detail-gallery {
    background: var(--dark);
}

.main-image {
    height: 500px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--dark);
    overflow-x: auto;
}

.thumbnail-images img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border-radius: 8px;
}

.thumbnail-images img:hover,
.thumbnail-images img.active {
    opacity: 1;
    border: 2px solid var(--primary-color);
}

.package-detail-content {
    padding: var(--spacing-xl) 0;
}

.package-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

.package-detail-main {
    background: var(--white);
}

.package-detail-sidebar {
    position: relative;
}

.package-detail-header {
    margin-bottom: var(--spacing-md);
}

.package-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
}

.badge {
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge.popular {
    background: var(--primary-color);
    color: var(--white);
}

.badge.verified {
    background: var(--secondary-color);
    color: var(--white);
}

.package-detail-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.package-meta-info {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--light);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
}

.meta-item i {
    color: var(--primary-color);
}

.package-description-section,
.package-includes-section,
.itinerary-section,
.getting-there-section,
.notes-section,
.gallery-section {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--light);
}

.lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: var(--spacing-md);
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.quick-info-card {
    background: var(--light);
    padding: var(--spacing-sm);
    border-radius: 10px;
    text-align: center;
}

.quick-info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.quick-info-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.quick-info-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
}

.includes-card {
    display: flex;
    gap: var(--spacing-sm);
    background: var(--light);
    padding: var(--spacing-sm);
    border-radius: 10px;
}

.includes-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.includes-icon.success {
    background: var(--secondary-color);
    color: var(--white);
}

.includes-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.includes-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.excludes-section {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background: rgba(198, 40, 40, 0.05);
    border-radius: 10px;
}

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

.excludes-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.excludes-list i {
    color: var(--accent-color);
}

/* Itinerary Timeline */
.itinerary-timeline {
    position: relative;
    padding-right: 2rem;
}

.itinerary-day {
    position: relative;
    margin-bottom: var(--spacing-lg);
    padding-right: var(--spacing-md);
    border-right: 3px solid var(--primary-color);
}

.day-badge {
    position: absolute;
    right: -45px;
    top: 0;
    width: 80px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.day-content {
    background: var(--light);
    padding: var(--spacing-md);
    border-radius: 10px;
}

.day-content h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.day-subtitle {
    font-weight: 600;
    color: var(--gray-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.day-description {
    margin-bottom: var(--spacing-sm);
}

.day-activities {
    list-style: none;
    margin: var(--spacing-sm) 0;
}

.day-activities li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.day-activities i {
    color: var(--primary-color);
}

.day-highlights,
.day-meta {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(0,0,0,0.1);
}

.day-highlights h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.day-meta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--gray);
}

.day-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box,
.alert-box {
    padding: var(--spacing-sm);
    border-radius: 10px;
    margin-top: var(--spacing-sm);
}

.info-box {
    background: rgba(44, 95, 45, 0.1);
    border-right: 4px solid var(--secondary-color);
}

.alert-box {
    background: rgba(212, 121, 10, 0.1);
    border-right: 4px solid var(--primary-color);
}

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

.notes-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.notes-list i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.image-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Booking Card */
.booking-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-md);
}

.booking-price {
    text-align: center;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--light);
    margin-bottom: var(--spacing-md);
}

.price-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin: 0.5rem 0;
}

.price-main .currency {
    font-size: 1.5rem;
}

.price-main .amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.booking-form {
    margin-bottom: var(--spacing-md);
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: var(--spacing-sm);
    background: var(--light);
    border-radius: 10px;
    margin-bottom: var(--spacing-sm);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--secondary-color);
}

.contact-options {
    margin-top: var(--spacing-md);
}

.contact-options h4 {
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.contact-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-btn.whatsapp {
    background: #25d366;
}

.contact-btn.whatsapp:hover {
    background: #20ba5a;
}

.contact-person {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: var(--spacing-sm);
}

/* Related Packages */
.related-packages {
    background: var(--light);
    padding: var(--spacing-md);
    border-radius: 15px;
}

.related-packages h3 {
    margin-bottom: var(--spacing-sm);
}

.related-package-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--white);
    border-radius: 10px;
    margin-bottom: var(--spacing-sm);
}

.related-package-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.related-content {
    flex: 1;
}

.related-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.related-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.btn-text {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-text:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-section {
    padding: var(--spacing-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

.contact-form-wrapper {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    margin-top: var(--spacing-md);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: var(--spacing-sm);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-card,
.working-hours-card,
.social-connect-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-method {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--light);
}

.contact-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: #25d366;
}

.contact-details h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-details p {
    margin: 0;
    color: var(--gray);
}

.contact-details a {
    color: var(--primary-color);
    font-weight: 600;
}

.small-text {
    font-size: 0.85rem;
    color: var(--gray-light);
    display: block;
    margin-top: 0.25rem;
}

.contact-person-card {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.person-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.person-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.person-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.person-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: var(--spacing-sm);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.social-btn.facebook {
    background: #1877f2;
    color: var(--white);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-btn.twitter {
    background: #1da1f2;
    color: var(--white);
}

.social-btn.youtube {
    background: #ff0000;
    color: var(--white);
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* FAQ Section */
.faq-section {
    background: var(--light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light);
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.faq-question h4 {
    flex: 1;
    margin: 0;
    font-size: 1.125rem;
}

.faq-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-sm) var(--spacing-sm);
    color: var(--gray);
    line-height: 1.8;
}

/* Map Section */
.map-section {
    padding: var(--spacing-xl) 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: var(--spacing-md);
}

/* Testimonials Navigation */
.testimonials-navigation {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* ===================================
   GALLERY PAGE STYLES
   =================================== */

.gallery-header {
    background: linear-gradient(135deg, rgba(138, 161, 91, 0.9) 0%, rgba(90, 122, 60, 0.9) 100%),
                url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920') center/cover;
}

.gallery-stats {
    padding: var(--spacing-lg) 0;
    background: var(--light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.stat-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0;
}

.stat-info p {
    margin: 0;
    color: var(--gray);
}

.gallery-filters-section {
    padding: var(--spacing-md) 0;
    background: var(--white);
    border-bottom: 1px solid var(--light);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.filters-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.filters-wrapper h3 {
    margin: 0;
    font-size: 1.125rem;
}

.gallery-filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.gallery-section {
    padding: var(--spacing-xl) 0;
}

.gallery-masonry,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: var(--spacing-md) 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-info {
    color: var(--white);
}

.gallery-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-info p {
    font-size: 0.9rem;
    margin: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-info i {
    color: var(--primary-light);
}

.view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .view-btn {
    opacity: 1;
}

.view-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-load-more {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    padding: var(--spacing-md);
    overflow: auto;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
    background: var(--dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.lightbox-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lightbox-title {
    color: var(--white);
    font-size: 1.25rem;
    margin: 0;
}

.lightbox-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-light);
    transform: rotate(90deg);
}

.lightbox-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    right: auto;
    left: var(--spacing-sm);
}

.lightbox-next {
    left: auto;
    right: var(--spacing-sm);
}

.lightbox-footer {
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
}

.lightbox-info {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.lightbox-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lightbox-info i {
    color: var(--primary-light);
}

/* Gallery filter hidden state */
.gallery-item.hidden {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .tour-types-grid,
    .why-choose-grid,
    .package-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .itinerary-timeline {
        padding-right: 0;
    }
    
    .itinerary-day {
        padding-right: 0;
        border-right: none;
        border-right: 3px solid var(--primary-color);
        padding-right: var(--spacing-sm);
    }
    
    .day-badge {
        position: static;
        width: auto;
        margin-bottom: var(--spacing-sm);
    }
}