* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
    background: #f7f7f7;
    font-family: "Roboto Condensed", sans-serif;
}

.pc {
    display: block;
}

.mob {
    display: none;
}

/*======== header =========*/
header {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

header video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

header h1 {
    font-size: 20px;
    font-weight: 500;
    color: #dcb668;
}

.section-title {
    font-weight: 700;
    font-size: 1.9rem;
}

.feature-box {
    display: flex;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.features {
    position: relative;
    background-image: url('/assets/images/fullconcept.jpg');
    padding: 80px 0px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* درجة الغمقان */
    z-index: -1;
}

.how-it-works .step-box {
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.how-it-works .step-box:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.how-it-works i {
    transition: transform 0.3s ease;
    color: #dcb668;
}

.how-it-works .step-box:hover i {
    transform: scale(1.15);
}

.faq-section .accordion-button.custom-accordion {
    background: #fff;
    /* خلفية نظيفة */
    color: #222;
    /* خط داكن */
    font-weight: 500;
    font-size: 20px;
    padding: 20px;
    border: 1px solid #eee;
    /* حدود ناعمة */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-section .accordion-button.custom-accordion:hover {
    background: #f9f5f0;
    /* لمسة subtle */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-section .accordion-button.custom-accordion:not(.collapsed) {
    background: #dcb668;
    /* اللون الرئيسي عند الفتح */
    color: #fff;
}

.faq-section .accordion-body {
    background: #fff;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 0.95rem;
    padding: 20px;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.compare-table thead {
    background-color: #f9f9f9;
}

.compare-table thead th {
    font-weight: 600;
    color: #222;
    padding: 15px 10px;
    border-bottom: 2px solid #eee;
}

.compare-table tbody td {
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.compare-table tbody tr:hover {
    background-color: #fff5e6;
    /* subtle highlight */
}

.compare-table .text-success {
    color: #dcb668 !important;
    font-weight: 500;
}

.compare-table .text-muted {
    color: #888 !important;
}



/*--------------------------*/

footer {
    margin-top: 100px;
    padding: 40px 0px;
    background-color: #fff;
}


footer .icons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

footer img {
    width: 160px;
}


footer .icons a {
    text-decoration: none;
    color: #000;

}

footer .icons a i {
    background-color: rgba(245, 234, 211, 0.4);
    width: 40px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 16px;
}

footer small {
    font-weight: 500;
    color: #000;
}

footer h6 {
    text-align: center;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 20px;
    font-family: "Marcellus", serif;
    color: #000;
}

footer p {
    color: #000;
    text-transform: capitalize;
    font-size: 16px;
}

footer p a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
}


.bookButton {
    position: fixed;
    z-index: 999999;
    bottom: 7%;
    right: 2%;
}






@media screen and (max-width: 1000px) {
    * {
        overflow-x: hidden !important;
    }

    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    i,
    li,
    a,
    span,
    small,
    ul,
    li,
    label {
        overflow-y: hidden !important;
    }

    .pc {
        display: none;
    }

    .mob {
        display: block;
    }

    section{
        padding: 0px 10px;
    }
    header {
        height: 40vh;
    }

    header video {
        height: auto;
        margin-top: 20%;
    }

    .feature-box {
        display: block;
    }

    .feature-box img{
        margin-bottom: 20px;
    }

    .feature-box ul{
        padding-left: 0;
    }

    footer {
        margin-top: 30px;
    }

    .bookButton {
        position: fixed;
        z-index: 999999;
        bottom: 3%;
        right: 3%;
    }

    .bookButton .buttonn {
        font-size: 16px;
        padding: 4px 15px;
    }


    .bookButton .button-whatsapp {
        font-size: 16px;
        padding: 4px 15px;
    }

}