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

:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #fff;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn.primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

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

/* Header and Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.logo h1 {
    font-size: 1.5rem;
    color: #333;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.pexels.com/photos/1525041/pexels-photo-1525041.jpeg?auto=compress&cs=tinysrgb&w=800');
    background-size: cover;
    background-position: center;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
}

.hero-content {
    color: white;
    max-width: 100vw;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
  .hero-content {
    max-width: 1200px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 0;
  }
  .hero-content {
    padding: 1rem 0.5rem;
    max-width: 100vw;
  }
}

/* Video Background */
.video-background {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

/* Sections */
section {
    padding: 4rem 1rem;
    position: relative;
}

/* Cards and Grids */
.attractions-grid,
.food-grid,
.events-grid {
    display: grid;
    gap: 2rem;
    padding: 2rem 0;
}

.attraction-card,
.food-card,
.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

/* Contact Form */
.contact-container {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 1rem 1rem;
}

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

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

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }

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

    /* Hero Section */
    .hero h1 {
        font-size: 2rem;
    }

    /* Grids */
    .attractions-grid,
    .food-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Form */
    .contact-container {
        grid-template-columns: 1fr;
    }

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

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

/* Small phones */
@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    section {
        padding: 2rem 1rem;
    }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
}

/* Nature Section */
.nature {
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
    min-height: 120vh;
    display: flex;
    align-items: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.nature-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
}

.nature-content h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nature-text {
    max-width: 800px;
    text-align: center;
    margin-bottom: 4rem;
}

.nature-text p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.4rem;
    line-height: 2;
}

.nature-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.feature i {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.feature h3 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.8rem;
}

.feature p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
    line-height: 1.6;
}

.nature-gallery {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border-radius: 15px;
    overflow: hidden;
}

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

.gallery-item h3 {
    padding: 1.5rem;
    margin: 0;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .nature {
        padding: 4rem 1rem;
        min-height: auto;
    }
    
    .nature-content {
        padding: 2rem 0;
    }
    
    .nature-content h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .nature-text p {
        font-size: 1.2rem;
    }
    
    .feature {
        padding: 2rem 1.5rem;
        min-width: 250px;
    }
    
    .nature-features {
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .gallery-item {
        min-width: 250px;
    }
}

/* Archaeology Section */
.archaeology {
    padding: 8rem 5%;
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: 120vh;
    display: flex;
    align-items: center;
}

.archaeology .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.archaeology .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archaeology .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.archaeology-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    color: white;
    width: 100%;
}

.archaeology h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    font-size: 3rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.archaeology-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    margin-top: 2rem;
}

.archaeology-card {
    width: 320px;
    height: 320px;
    border-radius: 20px;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: pointer;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.archaeology-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    z-index: 1;
}

.archaeology-card:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 2;
}

.archaeology-card h3 {
    color: white;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.archaeology-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.archaeology-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.archaeology-card:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .archaeology {
        padding: 4rem 1rem;
        min-height: auto;
    }
    
    .archaeology h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .archaeology-grid {
        gap: 1.5rem;
    }
    
    .archaeology-card {
        width: 280px;
        height: 280px;
    }
    
    .archaeology-card h3 {
        font-size: 1.8rem;
    }
    
    .archaeology-card p {
        font-size: 1.1rem;
    }
}

/* Attractions Section */
.attractions {
    padding: 8rem 5%;
    background: transparent;
    min-height: 120vh;
    position: relative;
    display: flex;
    align-items: center;
}

.attractions .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.attractions .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attractions .video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.attractions-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    color: #fff;
}

.attractions h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.attraction-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.attraction-info {
    padding: 1.5rem;
    color: #fff;
}

.attraction-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.attraction-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.attraction-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.attraction-details span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.attraction-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.attraction-features span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.attractions-more {
    text-align: center;
    margin-top: 4rem;
}

.attractions-more .btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    transition: all 0.3s ease;
}

.attractions-more .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .attractions {
        padding: 6rem 5%;
    }

    .attractions h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .attraction-card {
        max-width: 100%;
    }

    .attraction-info h3 {
        font-size: 1.3rem;
    }

    .attraction-info p {
        font-size: 1rem;
    }
}

/* Activities Section */
.activities {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.activity-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Accommodation Section */
.accommodation {
    padding: 5rem 5%;
    background-color: var(--white);
}

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

.hotel-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.hotel-info {
    padding: 1.5rem;
}

.rating {
    color: #f1c40f;
    margin: 0.5rem 0;
}

/* Food Section */
.food {
    padding: 8rem 5%;
    background: transparent;
    min-height: 120vh;
    position: relative;
    display: flex;
    align-items: center;
}

.food .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.food .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food .video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.food-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    color: #fff;
}

.food h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.food-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.food-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.food-info {
    padding: 1.5rem;
    color: #fff;
}

.food-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.food-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.price {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .food {
        padding: 6rem 5%;
    }

    .food h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .food-card {
        max-width: 100%;
    }

    .food-info h3 {
        font-size: 1.3rem;
    }

    .food-info p {
        font-size: 1rem;
    }
}

/* Events Section */
.events {
    padding: 5rem 5%;
    background-color: var(--white);
}

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

.event-card {
    display: flex;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.event-date {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.event-info {
    padding: 1.5rem;
    flex: 1;
}

.location {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background-color: var(--light-bg);
}

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

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

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

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 5% 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Videos Section */
.videos {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.videos h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

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

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

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #f0f0f0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-container a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.play-button i {
    color: white;
    font-size: 24px;
    margin-left: 5px; /* Adjust for RTL */
}

.play-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.video-info p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .videos {
        padding: 2rem 1rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

.attractions-more {
    text-align: center;
    margin-top: 4rem;
}

.attractions-more .btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.attractions-more .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* More Attractions Page */
.more-attractions {
    position: relative;
    min-height: 100vh;
    padding: 8rem 5%;
    background: transparent;
    overflow: hidden;
}

.more-attractions .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.more-attractions .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-attractions .video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.more-attractions .page-header {
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.more-attractions .page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.more-attractions .page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.more-attractions .attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.more-attractions .attraction-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.more-attractions .attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.more-attractions .attraction-info {
    padding: 1.5rem;
    color: #fff;
}

.more-attractions .attraction-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.more-attractions .attraction-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.more-attractions .attraction-details,
.more-attractions .attraction-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.more-attractions .attraction-details span,
.more-attractions .attraction-features span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.more-attractions .back-to-main {
    text-align: center;
}

.more-attractions .btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.more-attractions .btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .more-attractions {
        padding: 6rem 5%;
    }

    .more-attractions .page-header h1 {
        font-size: 2rem;
    }

    .more-attractions .page-header p {
        font-size: 1rem;
    }

    .more-attractions .attractions-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for staggered animations */
.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}
.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}
.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}
.animate-on-scroll.delay-4 {
    transition-delay: 0.4s;
}
.animate-on-scroll.delay-5 {
    transition-delay: 0.5s;
}
.animate-on-scroll.delay-6 {
    transition-delay: 0.6s;
}
.animate-on-scroll.delay-7 {
    transition-delay: 0.7s;
}
.animate-on-scroll.delay-8 {
    transition-delay: 0.8s;
}
.animate-on-scroll.delay-9 {
    transition-delay: 0.9s;
}
.animate-on-scroll.delay-10 {
    transition-delay: 1.0s;
} 

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    max-width: 100vw;
    padding: 0 1rem;
  }
  .contact-form {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin: 0 auto;
  }
  .contact-info {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin: 0 auto 2rem auto;
  }
} 
