/**
site name : Murad Albaraka Factory
created at 01/08/2025
created by : Amr yahya tag Aldain
email : amr.yahya.taj240@gmail.com
*/

@charset "UTF-8";


/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Playfair Display", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #f5f4f1;
    /* Background color for the entire website, including individual sections */
    --default-color: #212529;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #32220b;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: rgb(255, 53, 53);
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: rgba(248, 242, 233, 0.9);
    /* The default color of the main navmenu links */
    --nav-hover-color: rgba(184, 22, 4, 0.7);
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: rgb(234, 233, 255);
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #917a5a;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #e7e5dd;
    --surface-color: #fffefb;
}

.dark-background {
    --background-color: #0f0d07;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #2e2b28;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    background-color: rgba(12, 35, 96, 0.95) !important;
    /* لون شفاف جزئياً */
    color: var(--contrast-color);
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
}



.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 40px;
    margin-right: 8px;
}

.header .logo svg {
    height: 32px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--heading-color);
}

@media (max-width: 575px) {
    .header .logo h1 {
        font-size: 24px;
    }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 15px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 50px;
    transition: 0.3s;
    white-space: nowrap;

}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(24, 14, 1, 0.8);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu svg {
        height: 16px;
        padding-right: 10px;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    @media (min-width: 1200px) {
        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
            justify-content: center;
            /* ← اجعلها flex-start إذا أردت تحريكها لليسار */
            gap: 10px;
        }
    }


    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 10px 15px;
        font-size: 18px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu svg {
        height: 16px;
        padding-right: 10px;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 19px;
        font-weight: 550;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 3px solid color-mix(in srgb, var(--default-color), transparent 75%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #ffffff;
        position: fixed;
        font-size: 40px;
        top: 40px;
        left: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 20px 0 310px 0;

        background: linear-gradient(to bottom, transparent 0%, rgba(37, 59, 81, 0.8) 15%);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }

    /* ✅ التأكد من تموضع النسبي للحاوية */
    .header .container {
        position: relative;
        height: 35px;
        /* تأكد أنه يكفي لعرض الشعار وزر القائمة */
    }
}













/* الحاوية العامة */
.header-container {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
}

/* الشعار */
.logo-box {
    background-color: white;
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 55px;
    z-index: 2;
}

.logo-box img.logo-img {
    height: 30px;
    width: auto;
}

/* النص بجانب الشعار افتراضيًا */
.logo-text {
    color: white;
    font-size: 20px;
    font-weight: 800;

    white-space: nowrap;
    transition: all 0.3s ease;
}

/* ✅ على الجوال فقط: النص ينتقل لمنتصف الشريط */
@media (max-width: 1199px) and (min-width: 400px) {
    .logo-text {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin-left: 0;
    }
}

@media (max-width: 399px) {
    .logo-text {
      position: absolute;
      top: 50%;       /* تحكم في الارتفاع */
      left: 50%;      /* تحكم في المحاذاة الأفقية */
      transform: translate(-50%, -50%);
      font-size: 16px;
      width: 80%;     /* تحكم في العرض */
      text-align: center;
      color: white;
    }
  }



/* ✅ على الكمبيوتر: تحريك النص لليسار أو اليمين */
@media (min-width: 1200px) {
    .logo-text {
        transform: translateX(-10px);
        /* حرّك لليمين (اجعلها -10px إن أردت لليسار) */
    }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    background-color: color-mix(in srgb, var(--background-color), white 5%);
    padding-top: 50px;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer h4 {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.footer h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
}

.footer .footer-links {
    margin-bottom: 30px;
}

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

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding: 30px 0;
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 5px;
    font-size: 13px;
}

.footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #f9f9f9; /* افتراضي */
    color: var(--accent-color);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

/* واتساب */
.footer .social-links a .bi-whatsapp {
    color: #25D366;   /* أخضر واتساب */
}
.footer .social-links a[href*="wa.me"] {
    background: #fff; /* خلفية بيضاء */
}

/* انستقرام */
.footer .social-links a .bi-instagram {
    color: #E4405F;   /* أحمر/زهري انستقرام */
}
.footer .social-links a[href*="instagram.com"] {
    background: #fff;
}

/* تويتر (X) */
.footer .social-links a .bi-twitter-x {
    color: #000;      /* أسود */
}
.footer .social-links a[href*="x.com"] {
    background: #fff;
}

.footer .social-links a:hover {
    color: var(--contrast-color);
    background: var(--accent-color);
    text-decoration: none;
}

/*--------------------------------------------------------------
/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #ffffff; /* أو أي لون خلفية */
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader img {
    width: 120px;
    height: 120px;
    animation: pulse 1.5s infinite;
}

/* تأثير النبض */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}



/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}



/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

.section2 {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
         background-color: transparent;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 7px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;

}


.section-title h2:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
    text-align: center;
    direction: rtl;
  unicode-bidi: plaintext;

}





/*--------------------------------------------------------------
# factory Hero Section
--------------------------------------------------------------*/
.factory-hero {
    padding: 0;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.factory-hero .hero-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
}

.factory-hero .hero-background {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.factory-hero .hero-background2 {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background3 {
    background-repeat: no-repeat;
    background-position: 80% 48%;
    background-size: 500px; /* لجعل الصورة تغطي العنصر بالكامل */
    width: 100%;
    height: auto; /* يمكنك تعديل الارتفاع حسب ما يناسب التصميم */
    opacity: 1;

}

@media (max-width: 992px) {

    .hero-background3 {
        background-repeat: no-repeat;
        background-position: center;
        background-size: 500px; /* لجعل الصورة تغطي العنصر بالكامل */
        width: 100%;
        height: auto; /* يمكنك تعديل الارتفاع حسب ما يناسب التصميم */
        opacity: 1;


    }

}




.factory-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 95%) 0%, color-mix(in srgb, var(--background-color), transparent 95%) 100%);
    z-index: 2;
}

.factory-hero .hero-overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 95%) 0%, color-mix(in srgb, var(--background-color), transparent 95%) 100%);
    z-index: 2;
}

.factory-hero .container {
    position: relative;
    z-index: 3;
}

.factory-hero .hero-text {
    margin-bottom: 3rem;

}
@media (min-width: 992px) { /* شاشات لابتوب وما فوق */
    .factory-hero .col-lg-10 {
        padding-right: 0 !important;
        margin-right: 0 !important;
        flex: 0 0 100%; /* يخلي العمود ياخذ عرض كامل */
        max-width: 100%;
    }

    .factory-hero .hero-text {
        position: relative;
        top: -70px; /* ⬅️ يتحكم بالارتفاع لفوق، زوده أو قلله حسب رغبتك */
    }
}
.factory-hero .hero-text h1 {
    font-size: 3.5rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 1.3rem;
    line-height: 1.1;
    text-align: right;


}
.factory-hero .hero-text p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    text-align: right;
    margin-right: -1%;



}

@media (max-width: 768px) {
    .factory-hero .hero-text h1 {
        font-size: 2.5rem;
    }
}

.factory-hero .hero-text .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .factory-hero .hero-text .hero-subtitle {
        font-size: 1.1rem;
    }
}

.factory-hero .hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .factory-hero .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
}

.factory-hero .hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.factory-hero .hero-features .feature-item i {
    color: red;
    font-size: 1.2rem;
}

.factory-hero .booking-card {
    margin-bottom: 3rem;
}

.factory-hero .booking-card .card {
    background-color: color-mix(in srgb, var(--surface-color), transparent 95%);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.factory-hero .booking-card .card-body {
    padding: 2rem;
}

.factory-hero .booking-card .form-label {
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.factory-hero .booking-card input[type=date],
.factory-hero .booking-card select {
    color: var(--default-color);
    background-color: var(--surface-color);
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.factory-hero .booking-card input[type=date]:focus,
.factory-hero .booking-card select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
    outline: none;
}

.factory-hero .booking-card .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.factory-hero .booking-card .btn-primary:hover {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), var(--heading-color) 10%), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.factory-hero .booking-card .btn-primary i {
    margin-right: 0.5rem;
}

.factory-hero .hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .factory-hero .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.factory-hero .hero-actions .btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.factory-hero .hero-actions .btn i {
    margin-right: 0.5rem;
}

.factory-hero .hero-actions .btn.btn-outline-light {
    color: var(--default-color);
    border: 2px solid var(--default-color);
}

.factory-hero .hero-actions .btn.btn-outline-light:hover {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.factory-hero .hero-actions .btn.btn-light {
    background-color: var(--accent-color);
    color: var(--contrsat-color);
    border: none;
}

.factory-hero .hero-actions .btn.btn-light:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.factory-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

@media (max-width: 992px) {
    .factory-hero .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .factory-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 1.5rem;
    }
}

.factory-hero .hero-stats .stat-item {
    text-align: center;
}

.factory-hero .hero-stats .stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .factory-hero .hero-stats .stat-item .stat-number {
        font-size: 2rem;
    }
}

.factory-hero .hero-stats .stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .factory-hero .booking-card .card-body {
        padding: 1.5rem;
    }

    .factory-hero .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .factory-hero {
        min-height: 100vh;
    }

    .factory-hero .hero-text {
        margin-bottom: 2rem;
    }
    .factory-hero .hero-text {
        margin-bottom: 2rem;
    }

    .factory-hero .booking-card {
        margin-bottom: 2rem;
    }

    .factory-hero .booking-card .card-body {
        padding: 1rem;
    }

    .factory-hero .booking-card .row.g-3 {
        --bs-gutter-x: 0.75rem;
    }

    .factory-hero .hero-actions {
        margin-bottom: 2rem;
    }

    .factory-hero .hero-text h1 {
        color: white;
        text-shadow: 2px 2px 5px black;
        padding: 5px 10px;
        text-align: center; /* أو center حسب الحاجة */
        margin: 0 auto; /* يوسّط الكتلة نفسها */
        line-height: 1.4; /* تحكم بالمسافة بين السطر الأول والثاني */
        display: inline-block;
        font-size: 40px;
        position: relative;
        top: -180px; /* ⬅️ يرفع العنوان لأعلى */
    }

    .factory-hero .hero-text p {
        color: #000;
        padding: 5px 10px;
        text-align: center; /* أو center حسب الحاجة */
        margin: 0 auto; /* يوسّط الكتلة نفسها */
        line-height: 1.4; /* تحكم بالمسافة بين السطر الأول والثاني */
        display: inline-block;
        font-size: 20px;
        font-weight: 500; /* ⬅️ تحكم بسُمك الخط */
        position: relative;
        top: -180px; /* ⬅️ يرفع العنوان لأعلى */
    }
}

@media (max-width: 768px) {
    .factory-hero {
        min-height: 100vh;
    }

    .factory-hero .hero-text {
        margin-bottom: 2rem;
    }
    .factory-hero .hero-text {
        margin-bottom: 2rem;
    }

    .factory-hero .booking-card {
        margin-bottom: 2rem;
    }

    .factory-hero .booking-card .card-body {
        padding: 1rem;
    }

    .factory-hero .booking-card .row.g-3 {
        --bs-gutter-x: 0.75rem;
    }

    .factory-hero .hero-actions {
        margin-bottom: 2rem;
    }



}


@media (max-width: 576px) {
    .factory-hero .booking-card .row.g-3>div {
        margin-bottom: 1rem;
    }

    .factory-hero .booking-card .col-md-2,
    .factory-hero .booking-card .col-md-3 {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# About Home Section
--------------------------------------------------------------*/
.about-home {
    padding-top: 60px;
    padding-bottom: 60px;
}

.about-home .about-images {
    position: relative;
    height: 480px;
}

.about-home .about-images .image-stack {
    position: relative;
    height: 100%;
}

.about-home .about-images .image-stack .image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 75%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.about-home .about-images .image-stack .image-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 55%;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--surface-color);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.about-home .about-images .image-stack .image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-home .about-images .floating-badge {
    position: absolute;
    top: 60%;
    left: 10%;
    transform: translateY(-50%);
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1.25rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 15px 30px rgba(54, 144, 231, 0.3);
    z-index: 3;
}

.about-home .about-images .floating-badge .badge-icon {
    font-size: 1.5rem;
}

.about-home .about-images .floating-badge .badge-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.about-home .about-images .floating-badge .badge-info .badge-title {
    font-weight: 600;
    font-size: 1rem;
}

.about-home .about-images .floating-badge .badge-info .badge-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .about-home .about-images {
        height: 350px;
    }

    .about-home .about-images .image-stack .image-main {
        width: auto;
        height: 70%;
        object-fit: contain;

    }

    .about-home .about-images .image-stack .image-overlay {
        width: 60%;
        height: auto;
        object-fit: contain;


    }

    .about-home .about-images .floating-badge {
        padding: 1rem;
        gap: 0.5rem;
        left: 5%;
    }

    .about-home .about-images .floating-badge .badge-icon {
        font-size: 1.25rem;
    }

    .about-home .about-images .floating-badge .badge-info .badge-title {
        font-size: 0.9rem;
    }

    .about-home .about-images .floating-badge .badge-info .badge-subtitle {
        font-size: 0.7rem;
    }
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    color: #333; /* أو اللون المناسب */
    text-align: justify; /* يوزّع النص */
    direction: rtl;      /* يضمن أن النص بالعربي يكون مضبوط */
}

@media (max-width: 768px) {
    .about-content p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1rem;
        text-align: justify; /* خليه برضه justify عشان السطور تصطف */
        padding: 0 10px;      /* يضيف فراغ جانبي عشان ما يلتصق النص بالحواف */
    }
}


.about-home .about-content {
    padding-left: 2rem;
}

.about-home .about-content .section-header {
    margin-bottom: 1.5rem;
}

.about-home .about-content .section-header .subtitle {
    display: block;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.about-home .about-content .section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

@media (max-width: 768px) {
    .about-home .about-content .section-header h2 {
        font-size: 1.75rem;
        text-align: center;
    }
}

.about-home .about-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    text-align: justify; /* يوزّع النص بالتساوي */
    line-height: 1.8;    /* يضبط المسافة بين الأسطر */
}

@media (max-width: 768px) {
    .about-home .about-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
        color: color-mix(in srgb, var(--default-color), transparent 15%);
        text-align: center;
    }
}

.about-home .about-content .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (max-width: 576px) {
    .about-home .about-content .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.about-home .about-content .features-grid .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.about-home .about-content .features-grid .feature-item .feature-icon {
    flex-shrink: 0;
    width: auto;
    height: auto;
    background: none;
    /* حذف الخلفية */
    color: inherit;
    /* استخدام لون النص العادي */
    border-radius: 0;
    /* إلغاء الزوايا الدائرية */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding: 0;
}

.about-home .about-content .features-grid .feature-item .feature-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--heading-color);
}

.about-home .about-content .features-grid .feature-item .feature-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about-home .about-content .about-actions {
    margin-top: 2rem;
}

.about-home .about-content .about-actions .btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.about-home .about-content .about-actions .btn-discover:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-home .about-content .about-actions .btn-discover:hover i {
    transform: translateX(3px);
}

.about-home .about-content .about-actions .btn-discover i {
    transition: transform 0.3s ease;
}

@media (max-width: 992px) {
    .about-home .about-content {
        padding-left: 0;
        margin-top: 3rem;
        text-align: center;
    }

    .about-home .about-content .features-grid .feature-item {
        text-align: left;
    }
}

@media (max-width: 992px) {
    .about-home .row {
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .about.section {
        margin-top: -130px;
        margin-bottom: -145px;
    }
}

/* إظهار نسخة الكمبيوتر وإخفاء نسخة الجوال */
@media (min-width: 992px) {
    .about-desktop {
        display: block;
    }
    .about-mobile {
        display: none;
    }
}

/* إظهار نسخة الجوال وإخفاء نسخة الكمبيوتر */
@media (max-width: 991px) {
    .about-desktop {
        display: none;
    }
    .about-mobile {
        display: block;
    }
}


/*--------------------------------------------------------------
# factory Showcase Section
--------------------------------------------------------------*/
.factory-showcase .factory-showcase-card {
    background-color: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
}

.factory-showcase .discover-all-btn {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
    color: var(--contrast-color);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.factory-showcase .discover-all-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.factory-showcase .discover-all-btn:hover {
    color: var(--contrast-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(54, 144, 231, 0.3);
}

.factory-showcase .discover-all-btn:hover:before {
    left: 100%;
}


.factory-showcase .factory-showcase-card.mini .mini-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.factory-showcase .factory-showcase-card.mini .mini-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.factory-showcase .factory-showcase-card.mini .mini-image .mini-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(54, 144, 231, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.factory-showcase .factory-showcase-card.mini .mini-image .mini-overlay a {
    color: var(--contrast-color);
    font-size: 1.5rem;
    text-decoration: none;
}

.factory-showcase .factory-showcase-card.mini .mini-image .mini-overlay a:hover {
    color: var(--contrast-color);
}

.factory-showcase .factory-showcase-card.mini .mini-image:hover .mini-overlay {
    opacity: 1;
}

.factory-showcase .factory-showcase-card.mini .mini-image:hover img {
    transform: scale(1.05);
}

.factory-showcase .factory-showcase-card.mini .mini-content {
    padding: 20px 15px;
}

.factory-showcase .factory-showcase-card.mini .mini-content h5 {
    color: var(--heading-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.factory-showcase .factory-showcase-card.mini .mini-content p {
    color: var(--heading-color);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: center;
}

.factory-showcase .factory-showcase-card.mini .mini-content .mini-price {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.factory-showcase .factory-showcase-card.mini .mini-content .mini-price span {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 0.75rem;
    font-weight: 400;
}

.factory-showcase .room-showcase-card.mini .mini-content .mini-amenities {
    display: flex;
    gap: 8px;
}

.factory-showcase .factory-showcase-card.mini .mini-content .mini-amenities i {
    color: var(--accent-color);
    font-size: 1rem;
}


/***********************************************

************************************************/





/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    position: relative;
    overflow: hidden;
    /* Swiper Navigation */
    /* Swiper Pagination */
    /* Responsive Styles */
}

.testimonials .testimonial-slider {
    position: relative;
    padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
    height: auto !important;
}

.testimonials .testimonial-item {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
    border-radius: 20px;
    padding: 0;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.testimonials .testimonial-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
    border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before {
    transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
    transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.testimonials .testimonial-header {
    position: relative;
    text-align: center;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.testimonials .testimonial-header .rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonials .testimonial-body {
    padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
    font-style: italic;
    text-align: center;
    position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0.6;
    font-family: serif;
    position: absolute;
}

.testimonials .testimonial-body p::before {
    top: -5px;
    left: -10px;
}

.testimonials .testimonial-body p::after {
    bottom: -20px;
    right: -5px;
}

.testimonials .testimonial-footer {
    padding: 20px 30px 30px;
    text-align: center;
    position: relative;
}

.testimonials .testimonial-footer h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: block;
    margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
    position: absolute;
    bottom: 15px;
    right: 25px;
    color: color-mix(in srgb, var(--accent-color), transparent 60%);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
    position: relative;
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
    position: static;
    width: 45px;
    height: 45px;
    margin: 0 10px;
    background: var(--accent-color);
    border-radius: 50%;
    color: var(--contrast-color);
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
    background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
    transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
    font-size: 16px;
    font-weight: 600;
}

.testimonials .swiper-pagination {
    position: static;
    margin-top: 30px;
    text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: color-mix(in srgb, var(--default-color), transparent 70%);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--accent-color);
    transform: scale(1.2);
}

@media (max-width: 1199px) {
    .testimonials .testimonial-item .testimonial-header {
        padding: 25px 25px 15px;
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 70px;
        height: 70px;
    }

    .testimonials .testimonial-item .testimonial-body,
    .testimonials .testimonial-item .testimonial-footer {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 991px) {
    .testimonials .testimonial-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .testimonials .testimonial-item .testimonial-header {
        padding: 20px 20px 10px;
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 60px;
        height: 60px;
    }

    .testimonials .testimonial-item .testimonial-header .rating i {
        font-size: 0.8rem;
    }

    .testimonials .testimonial-item .testimonial-body {
        padding: 0 20px 15px;
    }

    .testimonials .testimonial-item .testimonial-body p {
        font-size: 0.95rem;
    }

    .testimonials .testimonial-item .testimonial-footer {
        padding: 15px 20px 20px;
    }

    .testimonials .testimonial-item .testimonial-footer h5 {
        font-size: 1rem;
    }

    .testimonials .testimonial-item .testimonial-footer span {
        font-size: 0.8rem;
    }

    .testimonials .testimonial-item .testimonial-footer .quote-icon {
        font-size: 1.3rem;
        bottom: 10px;
        right: 15px;
    }

    .testimonials .swiper-button-prev,
    .testimonials .swiper-button-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .testimonials .swiper-button-prev::after,
    .testimonials .swiper-button-next::after {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .testimonials .testimonial-slider {
        padding-bottom: 30px;
    }

    .testimonials .testimonial-item .testimonial-header {
        padding: 15px 15px 10px;
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 55px;
        height: 55px;
    }

    .testimonials .testimonial-item .testimonial-body {
        padding: 0 15px 10px;
    }

    .testimonials .testimonial-item .testimonial-body p {
        font-size: 0.9rem;
    }

    .testimonials .testimonial-item .testimonial-footer {
        padding: 10px 15px 15px;
    }

    .testimonials .testimonial-item .testimonial-footer h5 {
        font-size: 0.95rem;
    }

    .testimonials .testimonial-item .testimonial-footer .quote-icon {
        font-size: 1.2rem;
    }

    .testimonials .swiper-navigation {
        margin-top: 10px;
    }
}



/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    position: relative;
    overflow: hidden;
}

.call-to-action::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("assets/img/hotel/showcase-3.webp");
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.call-to-action .container {
    position: relative;
    z-index: 1;
}

.call-to-action .cta-content {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

@media (max-width: 768px) {
    .call-to-action .cta-content {
        padding: 40px 30px;
        border-radius: 15px;
    }
}

@media (max-width: 992px) {
    .call-to-action .text-content {
        margin-bottom: 2rem;
        text-align: center;
    }
}

.call-to-action .text-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .call-to-action .text-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .call-to-action .text-content h2 {
        font-size: 1.75rem;
    }
}

.call-to-action .text-content .lead {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .call-to-action .text-content .lead {
        font-size: 1rem;
    }
}

.call-to-action .cta-action {
    position: relative;
}

.call-to-action .btn-cta {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
    color: var(--contrast-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
    transition: all 0.3s ease;
}

.call-to-action .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 50%);
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #000 10%), color-mix(in srgb, var(--accent-color), #000 25%));
    color: var(--contrast-color);
}

.call-to-action .btn-cta:active {
    transform: translateY(0);
}

.call-to-action .btn-cta i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .call-to-action .btn-cta {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

.call-to-action .offer-badge {
    background: linear-gradient(135deg, #28a745, color-mix(in srgb, #28a745, #000 15%));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    box-shadow: 0 4px 15px color-mix(in srgb, #28a745, transparent 60%);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.call-to-action .feature-item .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.call-to-action .feature-item .icon-wrapper i {
    font-size: 1.8rem;
    color: var(--contrast-color);
}

.call-to-action .feature-item:hover .icon-wrapper {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .feature-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--heading-color);
}

.call-to-action .feature-item p {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0;
    line-height: 1.5;
}




/* --------------------------------------------------------------
# Gallery Showcase Section (Brand Logos)
--------------------------------------------------------------*/
.gallery-showcase .gallery-carousel {
    margin-bottom: 2rem;
    /* مسافة أسفل العنصر */
}

.gallery-showcase .gallery-carousel .swiper-wrapper {
    height: auto !important;
    /* ارتفاع تلقائي */
    align-items: center;
    /* محاذاة عمودية وسط */
}

.gallery-showcase .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* إلغاء التنسيقات غير المهمة */
.gallery-showcase .gallery-item,
.gallery-showcase .gallery-item .gallery-overlay,
.gallery-showcase .gallery-item:hover,
.gallery-showcase .gallery-item:hover img,
.gallery-showcase .gallery-item:hover .gallery-overlay {
    all: unset;
}

/* تنسيق شعار العلامة */
.gallery-showcase .brand-logo {
    text-align: center;
    padding: 10px;
}

.gallery-showcase .brand-logo img {
    height: 80px;
    /* تصغير حجم الصورة */
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    /* ظل خفيف */
    transition: transform 0.3s ease;
}

.gallery-showcase .brand-logo:hover img {
    transform: scale(1.1);
}

/* إخفاء زر العرض */
.gallery-showcase .btn-gallery {
    display: none;
}
/*
/* عرض 3 صور في الجوال */


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .about .about-content h3 {
        font-size: 2rem;
    }
}

.about .about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 576px) {
    .about .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.about .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.about .stat-item:hover {
    transform: translateY(-5px);
}

.about .stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.about .stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--heading-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about .cta-button {
    margin-top: 2rem;
}

.about .cta-button .btn-primary {
    background: var(--accent-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    color: var(--contrast-color);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.about .cta-button .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
}

.about .about-visuals .main-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.about .about-visuals .main-image img {
    width: 100%;
    height: 470px;       /* ارتفاع تلقائي حسب العرض */
    object-fit: contain; /* يحافظ على الصورة كاملة */
    /*border: 3px solid blue;*/
    border-radius: 8px;
    transition: transform 0.3s ease;
}



.about .about-visuals .main-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about .about-visuals .main-image .play-button {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.about .about-visuals .main-image .play-button i {
    font-size: 2rem;
    color: var(--contrast-color);
}

.about .about-visuals .main-image .play-button:hover {
    transform: scale(1.1);
}

.about .about-visuals .main-image:hover .image-overlay {
    opacity: 1;
}

.about .about-visuals .main-image:hover img {
    transform: scale(1.05);
}

.about .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .about .features-grid {
        grid-template-columns: 1fr;
    }
}

.about .feature-item {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.about .feature-item:hover {
    transform: translateY(-5px);
}

.about .feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.about .feature-item .feature-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.about .feature-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.about .feature-item p {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

.about .awards-section {
    margin-top: 5rem;
    margin-bottom: 3rem;
}

.about .awards-section .section-header h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.about .awards-section .section-header p {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .award-item {
    background: var(--surface-color);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.about .award-item:hover {
    transform: translateY(-5px);
}

.about .award-item .award-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.about .award-item .award-icon i {
    font-size: 1.8rem;
    color: var(--contrast-color);
}

.about .award-item h6 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
    font-weight: 600;
}

.about .award-item span {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 992px) {
    .about .about-content {
        margin-bottom: 3rem;
    }
}

/*--------------------------------------------------------------
# rooms Showcase About Section
--------------------------------------------------------------*/
.rooms-showcase-about .room-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.rooms-showcase-about .room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.rooms-showcase-about .room-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.rooms-showcase-about .room-image img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    transition: transform 0.3s ease;
}

.rooms-showcase-about .room-image .room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(54, 144, 231, 0.9), rgba(54, 144, 231, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rooms-showcase-about .room-image .btn-explore {
    color: var(--contrast-color);
    background-color: transparent;
    border: 2px solid var(--contrast-color);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.rooms-showcase-about .room-image .btn-explore:hover {
    background-color: var(--contrast-color);
    color: var(--accent-color);
}

.rooms-showcase-about .room-image:hover .room-overlay {
    opacity: 1;
}

.rooms-showcase-about .room-image:hover .btn-explore {
    transform: translateY(0);
}

.rooms-showcase-about .room-image:hover img {
    transform: scale(1.05);
}

.rooms-showcase-about .room-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rooms-showcase-about .room-content h4 {
    color: var(--heading-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.rooms-showcase-about .room-content .room-description {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.rooms-showcase-about .room-content .room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.rooms-showcase-about .room-content .room-features .feature-item {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rooms-showcase-about .room-content .room-features .feature-item i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.rooms-showcase-about .room-content .room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rooms-showcase-about .room-content .room-footer .room-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.rooms-showcase-about .room-content .room-footer .room-price .price-from {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 0.8rem;
}

.rooms-showcase-about .room-content .room-footer .room-price .price-amount {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.rooms-showcase-about .room-content .room-footer .room-price .price-period {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.85rem;
}

.rooms-showcase-about .room-content .room-footer .btn-view-details {
    color: var(--accent-color);
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.rooms-showcase-about .room-content .room-footer .btn-view-details:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.rooms-showcase-about .btn-view-all-rooms {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.rooms-showcase-about .btn-view-all-rooms:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .rooms-showcase-about .room-content {
        padding: 20px;
    }

    .rooms-showcase-about .room-content .room-footer {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .rooms-showcase-about .room-content .room-footer .room-price {
        justify-content: center;
    }

    .rooms-showcase-about .room-features {
        justify-content: space-between;
    }

    .rooms-showcase-about .room-features .feature-item {
        font-size: 0.8rem;
    }
}

/*--------------------------------------------------------------
# product 2 Section
--------------------------------------------------------------*/


.product-2 .room-card {
    border: 3px solid #2196f3;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s;
    height: 100%;
}

.product-2 .room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.product-2 .room-card .room-image {
    position: relative;
    overflow: hidden;
    height: auto;
    max-height: 400px;
    /* ✅ حد أقصى إن أردت */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-2 .room-card .room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-2 .room-card .room-image:hover img {
    transform: scale(1.05);
}

.product-2 .room-card .room-image .room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.product-2 .room-card .room-image .room-badge.featured {
    background-color: #28a745;
}

.product-2 .room-card .room-image .room-badge.luxury {
    background-color: #ffc107;
    color: #212529;
}

.product-2 .room-card .room-image .room-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
    color: var(--contrast-color);
    padding: 8px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    z-index: 2;
}



.product-2 .room-card .room-content {
    padding: 25px;
}

.product-2 .room-card .room-content h4 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
}

.product-2 .room-card .room-content p {
    color: var(--default-color);
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}





@media (max-width: 1200px) {
    .product-2 .room-card .room-content .room-actions {
        flex-direction: column;
    }
}










/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .gallery .section-heading {
        font-size: 2rem;
    }
}

.gallery .section-subheading {
    font-size: 1.125rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .gallery .section-subheading {
        font-size: 1rem;
    }
}

.gallery .gallery-filters {
    margin-bottom: 3rem;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery .gallery-filters li {
    background: transparent;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    color: var(--default-color);
    padding: 10px 20px;
    margin: 0 5px 10px 0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery .gallery-filters li:hover,
.gallery .gallery-filters li.filter-active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.gallery .isotope-container .gallery-item {
    margin-bottom: 30px;
}

.gallery .isotope-container .gallery-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery .isotope-container .gallery-wrapper:hover {
    transform: translateY(-5px);
}

.gallery .isotope-container .gallery-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery .isotope-container .gallery-wrapper:hover img {
    transform: scale(1.05);
}

.gallery .isotope-container .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery .isotope-container .gallery-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery .isotope-container .gallery-content {
    color: white;
    text-align: left;
    width: 100%;
}

.gallery .isotope-container .gallery-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.gallery .isotope-container .gallery-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.9;
    text-align: center;
}

.gallery .isotope-container .gallery-content .gallery-link {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.gallery .isotope-container .gallery-content .gallery-link:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery .isotope-container .gallery-content {
        padding: 15px;
        text-align: center;
    }

    .gallery .isotope-container .gallery-content h4 {
        font-size: 1.125rem;
        text-align: center;
    }

    .gallery .isotope-container .gallery-content p {
        font-size: 0.875rem;
        text-align: center;
    }
}



/*--------------------------------------------------------------
# factory Location Section
--------------------------------------------------------------*/



.factory-location .location-info {
    padding: 30px;
    background: var(--surface-color);
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.factory-location .location-info h3 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.factory-location .location-info .location-description {
    margin-bottom: 30px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.8;
}

.factory-location .location-info .address-block,
.factory-location .location-info .transport-info,
.factory-location .location-info .contact-info {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.factory-location .location-info .address-block:last-child,
.factory-location .location-info .transport-info:last-child,
.factory-location .location-info .contact-info:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.factory-location .location-info .address-block h5,
.factory-location .location-info .transport-info h5,
.factory-location .location-info .contact-info h5 {
    color: var(--heading-color);
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.factory-location .location-info .address-block h5 i,
.factory-location .location-info .transport-info h5 i,
.factory-location .location-info .contact-info h5 i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 18px;
}

.factory-location .location-info .address-block p,
.factory-location .location-info .transport-info p,
.factory-location .location-info .contact-info p {
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
}

.factory-location .location-info .address-block p:not(:last-child),
.factory-location .location-info .transport-info p:not(:last-child),
.factory-location .location-info .contact-info p:not(:last-child) {
    margin-bottom: 8px;
}

.factory-location .location-info .btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 2px solid var(--accent-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.factory-location .location-info .btn:hover {
    background: transparent;
    color: var(--accent-color);
}


.factory-location .transportation-section {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.factory-location .transportation-section .transport-title {
    text-align: center;
    color: var(--heading-color);
    font-size: 32px;
    margin-bottom: 50px;
}

.factory-location .transportation-section .transport-option {
    text-align: center;
    padding: 30px 20px;
    background: var(--surface-color);
    border-radius: 15px;
    box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
    height: 100%;
}

.factory-location .transportation-section .transport-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.factory-location .transportation-section .transport-option .transport-icon {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.factory-location .transportation-section .transport-option .transport-icon i {
    font-size: 32px;
    color: var(--accent-color);
}

.factory-location .transportation-section .transport-option h5 {
    color: var(--heading-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.factory-location .transportation-section .transport-option p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .factory-location .map-wrapper {
        height: 300px;
        margin-bottom: 30px;
    }

    .factory-location .location-info {
        padding: 20px;
    }



    .factory-location .transportation-section {
        margin-top: 50px;
    }

    .factory-location .transportation-section .transport-title {
        font-size: 28px;
    }

    .factory-location .transportation-section .transport-option {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {

    .factory-location .transport-option .transport-icon {
        width: 70px;
        height: 70px;
    }

    .factory-location .transport-option .transport-icon i {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
    background-color: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact .contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-box .icon-box {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact .contact-info-box .icon-box i {
    font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact .contact-info-box .info-content p {
    margin-bottom: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 15px;
    line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
    margin-bottom: 0;
}

.contact .map-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.contact .map-section iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact .form-container-overlap {
    position: relative;
    margin-top: -150px;
    margin-bottom: 60px;
    z-index: 10;
}

.contact .contact-form-wrapper {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.contact .contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.contact .contact-form-wrapper h2:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-group {
    margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
    position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 18px;
    z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
    top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
    top: 25px;
    transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
    border-radius: 8px;
    padding: 12px 15px 12px 45px;
    height: 3.5rem;
    color: var(--default-color);
    background-color: var(--surface-color);
    font-size: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
    height: 180px;
    resize: none;
    padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
    background-color: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
    margin-top: 10px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .contact .form-container-overlap {
        margin-top: -120px;
    }

    .contact .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact .contact-info-box {
        margin-bottom: 20px;
    }

    .contact .form-container-overlap {
        margin-top: -100px;
    }

    .contact .contact-form-wrapper {
        padding: 25px;
    }

    .contact .contact-form-wrapper h2 {
        font-size: 24px;
    }

    .contact .map-section {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .contact .form-container-overlap {
        margin-top: -80px;
    }

    .contact .contact-form-wrapper {
        padding: 20px;
    }

    .contact .btn-submit {
        width: 100%;
    }

    .contact .map-section {
        height: 400px;
    }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
    margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
    display: inline-block;
    padding: 8px 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 30px;
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.terms-of-service .tos-header p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
    margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.7;
    margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
    margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 15px;
    margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
    margin: 0;
    font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
    margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--surface-color);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
    margin: 0;
    font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 576px) {
    .terms-of-service .tos-content .content-section .prohibited-list {
        grid-template-columns: 1fr;
    }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: var(--surface-color);
    border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
    color: #dc3545;
    font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
    margin-bottom: 15px;
    font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
    margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 15px;
    margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
    margin: 0;
    font-size: 0.95rem;
}

.terms-of-service .tos-contact {
    margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 576px) {
    .terms-of-service .tos-contact .contact-box {
        flex-direction: column;
        text-align: center;
    }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
    font-size: 1.8rem;
    color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
    flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
    .terms-of-service .tos-contact {
        display: none;
    }

    .terms-of-service .content-section {
        page-break-inside: avoid;
    }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
    font-size: 1rem;
    line-height: 1.7;
}

.privacy .privacy-header {
    margin-bottom: 60px;
    text-align: center;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
    font-size: 2.8rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
}

.privacy .privacy-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
    margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
    margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
    font-size: 1.4rem;
    color: var(--heading-color);
    margin: 30px 0 20px;
    font-weight: 500;
}

.privacy .privacy-content .content-section p {
    margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
    margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
    margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--accent-color);
}

.privacy .privacy-contact {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy .privacy-contact p {
    margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
    margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
    margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
    color: var(--heading-color);
    font-weight: 600;
}

@media print {
    .privacy {
        font-size: 12pt;
        line-height: 1.5;
    }

    .privacy .privacy-header {
        text-align: left;
        border-bottom: 1pt solid #000;
        padding-bottom: 20pt;
        margin-bottom: 30pt;
    }

    .privacy h1 {
        font-size: 24pt;
    }

    .privacy h2 {
        font-size: 18pt;
        page-break-after: avoid;
    }

    .privacy h3 {
        font-size: 14pt;
        page-break-after: avoid;
    }

    .privacy p,
    .privacy ul {
        page-break-inside: avoid;
    }

    .privacy .contact-details {
        border: 1pt solid #000;
        padding: 15pt;
    }
}

@media (max-width: 767px) {
    .privacy .privacy-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .privacy .privacy-header .header-content h1 {
        font-size: 2.2rem;
    }

    .privacy .privacy-header .header-content .intro-text {
        font-size: 1.1rem;
    }

    .privacy .privacy-content .content-section {
        margin-bottom: 40px;
    }

    .privacy .privacy-content .content-section h2 {
        font-size: 1.6rem;
    }

    .privacy .privacy-content .content-section h3 {
        font-size: 1.3rem;
    }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
    padding: 80px 0;
    margin: 0 auto;
}

.error-404 .error-icon {
    font-size: 5rem;
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    color: color-mix(in srgb, var(--heading-color), transparent 10%);
    font-family: var(--heading-font);
    line-height: 1;
}

.error-404 .error-title {
    font-size: 2rem;
    color: var(--heading-color);
    font-weight: 600;
}

.error-404 .error-text {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    max-width: 600px;
    margin: 0 auto;
}

.error-404 .search-box {
    max-width: 500px;
    margin: 0 auto;
}

.error-404 .search-box .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    background-color: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .error-404 {
        padding: 60px 0;
    }

    .error-404 .error-code {
        font-size: clamp(4rem, 12vw, 8rem);
    }

    .error-404 .error-title {
        font-size: 1.5rem;
    }

    .error-404 .error-text {
        font-size: 1rem;
        padding: 0 20px;
    }

    .error-404 .search-box {
        margin: 0 20px;
    }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/



@media (max-width: 1199px) {

    /* وضع الشعار في اليمين */
    .header .logo {
        position: absolute;
        top: 50%;
        right: 15px;
        left: auto;
        transform: translateY(-50%);
        z-index: 9999;
    }

    /* وضع زر القائمة في اليسار */
    .mobile-nav-toggle {
        position: absolute;
        top: 50%;
        left: 15px;
        right: auto;
        transform: translateY(-50%);
        z-index: 9999;
    }
}




/* إظهار اسم المصنع في وضع الجوال فقط */
.logo .logo-text {
    display: none;
    /* إخفاؤه افتراضياً */
}

@media (max-width: 1199px) {
    .header .logo {
        position: absolute;
        top: 50%;
        right: 15px;
        left: auto;
        transform: translateY(-50%);
        z-index: 9999;
        display: flex;
        align-items: center;
    }

    .header .logo img {
        max-height: 36px;
        margin-left: 8px;
    }

    .header .logo .logo-text {
        display: inline-block;
        /* ✅ إظهاره فقط على الجوال */
        font-size: 20px;
        font-weight: 600;
        color: white;
        /* أو لون ثابت مثل #333 */
        white-space: nowrap;
    }

    .mobile-nav-toggle {
        position: absolute;
        top: 50%;
        left: 15px;
        right: auto;
        transform: translateY(-50%);
        z-index: 9999;
    }
}

.custom-icon {
    width: 95PX;
    height: 95px;
    object-fit: contain;
    display: block;
}





/*....................................................
.....................................................
.................................................*/

.section-title h3 {
    font-size: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title h3:after {
    position: absolute;
    content: '';
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 50px;
    height: 2px;
    background-color: #F28123;
    margin: 0 auto;
}

.section-title p {
    font-size: 15px;

    margin: 0 auto;
    color: #555;
    margin-top: 10px;
    line-height: 1.8;
}

.section-title {
    margin-bottom: 80px;
}




.orange-text {
    color: #F28123;
}



.room-filters ul li.active {
    background-color: #2196f3;
    color: #fff !important;
    border-color: #2196f3 !important;
}

.custom-title {
    text-align: center;
    /* لتوسيط النص */
    font-size: 30px;
    /* حجم الخط */
    font-weight: 600;
    /* سمك الخط */
    color: #2c3e50;
    /* لون الخط */
    border-bottom: 3px solid #ddd;
    /* خط سفلي */
    display: inline-block;
    /* لجعل الخط تحت الكلمة فقط */
    padding-bottom: 6px;
    /* مسافة بسيطة بين الخط والنص */
    margin: 40px auto;
    /* مسافة فوق وتحت وتوسيط العنصر بالكامل */
}







.transport-option p,
.goals-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--default-color);
    font-family: 'Tajawal', sans-serif; /* أو أي خط عربي تفضله */
}

.goals-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.goals-list li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 10px;
}

.goals-list li::before {
    content: "🎯";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 16px;
}







/* إعدادات عامة للقسم */




/* تنسيق قسم about */
.about .profile-image-wrapper {
  position: relative;
}

.about .profile-image-wrapper .profile-image {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgb(0, 0, 0);
  box-shadow: 0 10px 30px color-mix(in srgb, rgb(16, 11, 11), transparent 80%);
}

.about .profile-image-wrapper .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center -15px;
}

.about .profile-image-wrapper .signature-section {
  text-align: center;
}

.about .profile-image-wrapper .signature-section .signature {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
  opacity: 0.8;
}

.about .profile-image-wrapper .signature-section .quote {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin: 0 auto;
  max-width: 250px;
}

.about .about-content .intro {
  margin-bottom: 40px;
}

.about .about-content .intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.about .about-content .intro p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}



.about .about-content .intro {
    margin-bottom: 40px;
  }

  .about .about-content .intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
  }

  @media (max-width: 768px) {
    .about .about-content .intro h2 {
      font-size: 2rem;
      text-align: center;
    }
  }

  .about .about-content .intro p {
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
  }

  @media (max-width: 768px) {
    .about .about-content .intro p {
      text-align: center;
    }
  }

