* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #000;
}

/* --- Navbar Styles --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%; /* Adjusted padding for better fit */
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);
}

/* --- Logo Styling --- */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo and text */
}

.logo-img {
    height: 100px; /* Adjust logo height as needed */
    width: auto;
}

.logo-text {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-text span {
    color: #ff6600;
}

/* --- Navigation Links --- */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    color: #eee;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #ff6600;
}

/* --- Book Now Button Styling --- */
.btn-book {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-book:hover {
    background-color: #e65c00;
    transform: scale(1.05);
}

/* --- Book Now Button Placement --- */
.desktop-book-now {
    margin-left: 20px;
    position: relative;
    top: 50px; /* Moves the button down 50px */
}

/* Hide mobile version of the button on desktop */
.mobile-book-now {
    display: none;
}

/* --- Hamburger Menu Icon --- */
.hamburger {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1100;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Hamburger animation on click */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero Section Styles --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Accounts for fixed navbar */
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: brightness(0.6);
}

.hero-content h1 {
    font-size: 3.5rem; /* Slightly smaller for better fit */
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.main-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #ff6600;
    color: white;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.4s;
    font-size: 14px;
}

.main-btn:hover {
    background: #ff6600;
    color: #fff;
}

/* --- Responsiveness: Tablettes --- */
@media screen and (max-width: 1024px) {
    .nav-links li a {
        margin: 0 10px;
        font-size: 13px;
    }
}

/* --- Responsiveness: Mobiles --- */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }
    
    .desktop-book-now {
        display: none; /* Hide the desktop button */
    }
    
    .mobile-book-now {
        display: block; /* Show button in menu */
        margin-top: 20px;
        text-align: center;
    }
    
    .hamburger {
        display: block; /* Show hamburger icon */
    }
    
    /* Mobile Menu Styles */
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 80px;
        z-index: 1000;
    }
    
    .nav-links.active {
        left: 0; /* Slide in on click */
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links li a {
        font-size: 18px;
        color: #fff;
    }
    
    /* Hero Content Adjustment */
    .hero-content h1 {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}






























/* Trips Section Styling */
.trips-section {
    padding: 100px 5%;
    background-color: #000000;
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ff6600;
}

.section-title p {
    color: #ccc;
    margin-top: 10px;
}

/* The Grid Layout */
.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Trip Card Styling */
.trip-card {
    position: relative;
    height: 400px;

    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.trip-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trip-card:hover img {
    transform: scale(1.1); /* زووم خفيف عند الوقوف بالماوس */
}

/* Black Gradient Overlay */
.trip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s;
}

.trip-card:hover .trip-overlay {
    background: linear-gradient(to top, rgba(255,102,0,0.4) 0%, transparent 90%);
}

.trip-overlay h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.trip-overlay p {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 15px;
}

.trip-btn {
    align-self: flex-start;
    padding: 8px 20px;
    border: 1px solid #ff6600;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.trip-btn:hover {
    background: #ff6600;
}

/* Responsive adjustment for the 5th card */
@media (min-width: 1024px) {
    /* بخلي أول رحلتين ياخدوا مساحة أكبر شوية لو عايز شكل فني غير منتظم */
    /* .trip-card:nth-child(1) { grid-column: span 2; } */
}
























/* Mako Experience Section - Luxury Dark Theme */
.mako-experience {
    padding: 100px 5%;
    background-color: #050505; /* أسود فخم جداً */
    color: #fff;
    border-top: 1px solid rgba(255, 102, 0, 0.1); /* خط خفيف جداً بيفصل السكاشن */
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.experience-text {
    flex: 1;
    min-width: 300px;
}

.experience-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 2px;
    color: #ff6600; /* اللون البرتقالي الأساسي */
}

.experience-text .subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff; /* رمادي فاتح مريح للعين */
    margin-bottom: 35px;
}

.experience-text .subtitle strong {
    color: #fff;
}

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

.features-list li {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #eee;
}

.diamond {
    color: #ff6600; /* الدياموند بقت برتقالي عشان تنطق مع الأسود */
    font-size: 1.2rem;
}

/* Image Styling - Professional Look */
.experience-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

/* حركة الضل البرتقالي بدل الأسود عشان يماشي الاستايل */
.experience-image::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid #ff6600;
    z-index: 0;
    border-radius: 10px;
}

.experience-image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    filter: grayscale(20%); /* لمسة كلاسيكية */
    transition: 0.5s;
}

.experience-image:hover img {
    filter: grayscale(0%);
    transform: translate(-5px, -5px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .experience-container {
        flex-direction: column-reverse; /* الصورة تنزل تحت الكلام في الموبايل */
        text-align: center;
    }
    
    .features-list li {
        justify-content: center;
    }

    .experience-image::before {
        display: none; /* بنشيل الضل في الموبايل عشان الزحمة */
    }
}

























/* Styling the Complete Booking Section */
.booking-page-section {
    padding: 100px 5%;
    background: #000;
    color: #fff;
}

.booking-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Info Section */
.booking-info {
    flex: 1;
    min-width: 300px;
}

.booking-info h2 {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
    font-weight: 900;
}

.booking-info p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 15px;
}

.contact-item {
    font-size: 1.1rem;
    color: #ffffff;
}

.contact-item span {
    color: #ff6600;
    font-weight: bold;
    margin-right: 10px;
}

/* Form Card Section */
.booking-card {
    flex: 1.2;
    min-width: 350px;
    background: #111;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #000000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    background: #222;
    border: 1px solid #444;
    color: #fff;
    border-radius: 8px;
    outline: none;
}

.form-group input:focus, .form-group select:focus {
    border-color: #ff6600;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 900;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #e65c00;
    transform: scale(1.02);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

































/* Social Wall Styling */
.social-wall {
    padding: 100px 5%;
    background: #000;
    text-align: center;
}

.wall-header h2 {
    color: #ff6600;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.wall-header p {
    color: #888;
    margin-bottom: 50px;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 30px 0;
}

.stat-item h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: #ff6600;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Mosaic Grid Layout */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transition: 0.5s;
    filter: brightness(0.8);
    cursor: pointer;
}

.grid-item:hover {
    filter: brightness(1);
    transform: scale(1.02);
}

.tall { grid-row: span 2; }
.wide { grid-column: span 2; }

/* Responsive */
@media (max-width: 768px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-bar {
        gap: 20px;
    }
}
































/* Footer Styling */
.main-footer {
    background-color: #050505;
    color: #fff;
    padding: 80px 5% 20px;
    border-top: 2px solid #ff6600;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-about {
    flex: 1.5;
    min-width: 300px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #ff6600;
}

.footer-about p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Links Styling */
.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4, .footer-brand h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ff6600;
    padding-left: 5px;
}

/* Kingdom Tours Brand */
.footer-brand {
    flex: 1;
    min-width: 200px;
}

.kingdom-tours p {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff6600;
    margin-bottom: 5px;
}

.kingdom-tours span {
    color: #555;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Copyright Bar */
.copyright-bar {
    text-align: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
    color: #555;
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
}

























/* تنسيق أيقونات السوشيال ميديا الحديثة */
.social-icons {
    display: flex;
    gap: 20px; /* مسافة واسعة وشيك بين الأيقونات */
    justify-content: center; /* اختيارية: لو عايزهم في نص الفوتر */
    margin-top: 30px;
}

.social-icons a {
    width: 55px;  /* حجم الدايرة المحيطة بالأيقونة */
    height: 55px;
    background: #1a1a1a; /* لون خلفية غامق شيك */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* عشان تفضل دايرة كاملة */
    color: #ffffff; /* اللون البرتقالي الأساسي بتاعك */
    text-decoration: none;
    font-size: 22px; /* كبرنا حجم الأيقونة نفسها */
    transition: all 0.4s ease; /* حركة ناعمة عند الوقوف عليها */
    border: 1px solid #333; /* إطار خفيف جداً */
}

/* تأثير الـ Hover الاحترافي (عند الوقوف بالماوس) */
.social-icons a:hover {
    background: #ff6600; /* الخلفية بتتحول برتقالي */
    color: #fff; /* الأيقونة بتتحول أبيض */
    transform: translateY(-8px); /* بتترفع لفوق شوية */
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.5); /* ضوء برتقالي خلفي */
}




















.mako-lightbox {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); z-index: 999999; justify-content: center; align-items: center;
}

.mako-content {
    position: relative; background: #1a1a1a; padding: 10px; border: 2px solid #ff6600;
    border-radius: 15px; width: 90%; max-width: 500px; /* المربع الصغير */
    display: flex; justify-content: center; align-items: center;
}

#mako-img { width: 100%; height: auto; border-radius: 10px; }

.mako-close {
    position: absolute; top: -50px; right: 0; color: #fff; font-size: 40px; cursor: pointer;
}

.mako-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: #ff6600; color: white; border: none; width: 40px; height: 40px;
    border-radius: 50%; cursor: pointer; font-size: 20px; z-index: 10;
}

.prev { left: -20px; }
.next { right: -20px; }

@media (max-width: 768px) {
    .prev { left: 10px; }
    .next { right: 10px; }
}
































