 * {

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

}



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






















/* --- قسم الهيرو المعدل --- */
.boat-hero-vessel {
    position: relative;
    width: 100%;
    height: 80vh; 
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6)), url('m5.jpeg'); 
    background-size: cover;
    background-position: center;
    
    /* التوسيط العمودي الصارم */
    display: flex;
    flex-direction: column;
    justify-content: center !important; /* يجبر المحتوى على السنتر */
    align-items: center;
    text-align: center;
    padding: 0; /* شيلنا أي مسافات داخلية */
    margin: 0;
    border-bottom: 3px solid #e65c00;
}

.vessel-content {
    width: 100%;
    margin: 0 auto; 
    /* هذا السطر سيزيح الكتلة بالكامل للأسفل */
    /* يمكنك زيادة الرقم 100 لزيادة النزول */
    margin-top: 150px; 
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* العنوان الكبير بدون نقطة في الآخر */
.vessel-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

/* النص الصغير - اللون البرتقالي وبدون نقطة */
.vessel-content p {
    font-size: 1.1rem;
    /* اللون البرتقالي نفس كلمة Speedboat */
    color: #e65c00 !important; 
    font-weight: 600; /* عشان يوضح أكتر باللون البرتقالي */
    margin: 0 auto;
    width: 90%;
    text-align: center;
}





















.vessel-specs-premium {
    background-color: #000; /* خلفية سوداء ملكي */
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    color: #fff;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.specs-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.spec-card-v2 {
    background: #0f0f0f; /* لون كارت أغمق شوية من الخلفية */
    border: 1px solid #222;
    padding: 40px 30px;
    width: 280px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.spec-card-v2:hover {
    border-color: #e65c00; /* يتحول للبرتقالي عند الوقوف عليه */
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(230, 92, 0, 0.1);
}

.icon-box {
    font-size: 2.5rem;
    color: #e65c00; /* اللون البرتقالي بتاعك */
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.spec-card-v2 h4 {
    color: #888; /* عنوان فرعي هادي */
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.spec-card-v2 p {
    color: #fff; /* المعلومة المهمة بالأبيض */
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0;
}

/* حركة التوهج البرتقالي خلف الأيقونة */
.orange-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #e65c00;
    filter: blur(35px);
    opacity: 0.3;
    z-index: 1;
}

/* للموبايل */
@media (max-width: 768px) {
    .spec-card-v2 {
        width: 100%; /* كارت ملء الشاشة في الموبايل */
    }
}





















.onboard-features {
    padding: 60px 0;
    background: #050505; /* أفتح درجة بسيطة من الأسود عشان يفصل بين الأقسام */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 0 10%;
}

.feature-item {
    text-align: center;
    color: #fff;
}

.feature-item i {
    font-size: 2rem;
    color: #e65c00; /* البرتقالي بتاع ماكو */
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 0.9rem;
    letter-spacing: 1px;
}
/* تنسيق موحد لجميع عناوين الأقسام */
.section-title, 
.onboard-features h3 {
    width: 100%;
    text-align: center; /* يوسط الكلام في النص */
    display: block;
    margin: 40px auto; /* يضمن وجود مساحة فوق وتحت ومسنتر أفقي */
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* التأكد من أن الحاوية نفسها بتوسط اللي جواها */
.onboard-features .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* يوسط المحتويات أفقياً */
    justify-content: center;
    width: 100%;
}






















.welcome-luxury {
    background: #000;
    padding: 80px 5%;
    color: #fff;
}

.luxury-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; /* عشان يظبط على الموبايل تحت بعض */
}

.luxury-image {
    flex: 1;
    min-width: 300px;
}

.luxury-image img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #e65c00; /* برواز برتقالي خفيف */
    box-shadow: 0 10px 30px rgba(230, 92, 0, 0.2);
}

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

.luxury-text h2 {
    color: #e65c00;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.main-p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

.luxury-features-list {
    margin-bottom: 30px;
}

.l-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-left: 4px solid #e65c00;
    transition: 0.3s;
}

.l-feature:hover {
    background: rgba(230, 92, 0, 0.1);
    transform: translateX(10px);
}

.l-feature i {
    color: #e65c00;
    font-size: 1.2rem;
}

.l-feature span {
    font-weight: 600;
    font-size: 1rem;
}

.sub-p {
    font-style: italic;
    color: #888;
}

/* للموبايل */
@media (max-width: 768px) {
    .luxury-container {
        flex-direction: column;
        text-align: center;
    }
    .l-feature {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .luxury-features-list {
        align-items: flex-start; /* يفضلوا على الشمال حتى في الموبايل */
    }
    .l-feature {
        justify-content: flex-start;
    }
}



















.eco-friendly-mako {
    background-color: #050505; /* أفتح درجة بسيطة من الأسود عشان يفصل */
    padding: 80px 10%;
    color: #fff;
    border-top: 1px solid #333; /* خط فاصل خفيف */
}

.eco-friendly-mako h3 {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.eco-content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.eco-image {
    flex: 1;
    min-width: 300px;
}

.eco-image img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #333;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

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

.eco-text p {
    font-size: 1rem;
    color: #ccc; /* رمادي فاتح للكلام الكتير */
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.orange-text {
    color: #e65c00; /* البرتقالي بتاع ماكو للكلمات المهمة */
    font-weight: 700;
}

/* للموبايل */
@media (max-width: 768px) {
    .eco-friendly-mako {
        padding: 50px 5%;
    }
    .eco-content-wrapper {
        flex-direction: column; /* الصورة فوق الكلام في الموبايل */
        gap: 30px;
    }
    .eco-text p {
        text-align: center; /* سنتر الكلام في الموبايل */
    }
    .eco-friendly-mako h3 {
        font-size: 1.5rem;
    }
}


















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