* {

    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 */

}























/* Trips Hero Section */
.trips-hero {
    height: 60vh; /* واخد نص الشاشة شوية */
    background: url('for.PNG') no-repeat center center/cover; /* حط هنا صورة فخمة للمركب أو البحر */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 110px; /* عشان ما يجيش تحت الهيدر الثابت */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* طبقة سوداء شفافة عشان الكلام يبان */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.hero-text h1 span {
    color: #ff6600; /* اللون البرتقالي المميز لـ Mako */
}

.hero-text p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 25px;
}

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

.hero-badges span {
    background: rgba(255, 102, 0, 0.2);
    border: 1px solid #ff6600;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #ff6600;
}

/* للموبايل عشان ما يبقاش كبير أوي */
@media (max-width: 768px) {
    .hero-text h1 { font-size: 2rem; }
    .trips-hero { height: 50vh; }
}
/* --- 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;
    }
}





















/* Quick Info Section Styles */
.trip-quick-info {
    background-color: #111; /* خلفية أفتح شوية من الأسود عشان تبان */
    padding: 40px 5%;
    border-top: 1px solid #ff6600;
    border-bottom: 1px solid #ff6600;
    margin: 20px 0;
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-width: 280px;
}

.info-icon {
    background: rgba(255, 102, 0, 0.1);
    color: #ff6600;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid #ff6600;
}

.info-text h3 {
    color: #ff6600;
    margin-bottom: 10px;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.info-text p, .info-text ul {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    list-style: none;
    padding: 0;
}

.info-text ul li strong {
    color: #ff6600; /* عشان المواعيد تنور */
}

/* للموبايل */
@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        align-items: center;
    }
}























/* Trips Grid Design */
.trips-grid {
    padding: 50px 5%;
    background-color: #000;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.trip-card {
    background: #fff; /* خليت الكارت أبيض زي الصورة بس بتفاصيل سوداء عشان الشياكة */

    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255,102,0,0.1);
    display: flex;
    flex-direction: column;
}

.trip-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.trip-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6600;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
}

.trip-content {
    padding: 25px;
    color: #333;
}

.trip-content h2 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.trip-content h2 span {
    color: #ff6600;
    display: block;
}

.trip-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.trip-route {
    font-size: 0.9rem;
    background: #f9f9f9;
    padding: 10px;
    border-left: 3px solid #ff6600;
    margin-bottom: 20px;
}

.trip-specs {
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.spec-item i {
    color: #ff6600;
    width: 20px;
}

.trip-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
}

.per-boat {
    font-size: 0.85rem;
    color: #666;
}

.price-tag small {
    font-size: 0.7rem;
    color: #000000;
}

.book-btn {
    background: #ff6600; /* لون سماوي هادي زي الصورة اللي بعتها */
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

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

/* Responsive */
@media (max-width: 480px) {
    .trip-footer { flex-direction: column; gap: 15px; text-align: center; }
}






























/* 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-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); /* ضوء برتقالي خلفي */
}



















/* 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;
    }
}
