:root {
    --gold-primary: #d4a34b;
    --gold-gradient: linear-gradient(90deg, #d4a34b, #eac775);
    --gold-gradient-dark: linear-gradient(135deg, #b88628, #d4a34b);
    --bg-black: #111111;
    --bg-dark: #191919;
    --bg-card: #202020;
    --text-white: #ffffff;
    --text-muted: #a5a5a5;
    --text-dark: #333333;
    --radius-main: 16px;
}

@font-face {
    font-family: 'MainFont';
    src: url('../assets/fonts/Cairo-VariableFont_slnt,wght.ttf');
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'MainFont';
}

/* General */

a{
    text-decoration: none;

}

ul, ol{
    list-style-type: none !important;
}

i{
    font-style: normal !important;
}

/*  END General*/
body {
    background-color: var(--bg-black);
    color: var(--text-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    direction: rtl;
}

header{
    /* max-width: 1500px; */
    width: 100%;
    position: relative;
    margin: 0px auto 0px;
    padding: 50px 0px 0px;
    display: grid;
    grid-template-columns: 30% 50% 20%;
    z-index: 1;
    background: rgb(0 0 0 / 19%);
}

header > div{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

header > div img{
    height: 100%;
}

header .navbar nav{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
}

header .navbar nav ul, header ol{
    list-style-type: none;
    display: inline-block;
}

header .navbar nav ul li, header ol li{
    display: inline-block;
    margin: 7px !important;
}

header .navbar nav ul li a{
    transition: all 0.3s ease-in-out;
    color: var(--text-white);
    font-size: 27px;
    margin: 13px;
}

header ol li a{
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #d4a34b;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    font-size: 21px;
    color: #d4a34b;
}

header ol li a i{
    font-weight: 700;
}

.navbar a.active, .navbar a:hover, header .navbar nav ul li .active {
    color: var(--gold-primary);
    font-weight: 700;
} 

.mirror{
    /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #00000073; */
}

.hidden_navbar{
    display: none;
}

/* Hero Section */
.hero-video{
    position: fixed;
    /* transform: scaleX(-1) rotate(360deg); */
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: -1;
}

.hero-video video{
    width: 100%; 
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgb(0 0 0 / 19%), rgb(0 0 0 / 50%));
    top: 0px;
    left: 0px;
    z-index: 1;
}
.hero-title {
    font-size: 7rem;
    font-weight: 100;
    line-height: 1.5;
    margin-bottom: 30px;
}
.play-btn-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 50px;
    margin-bottom: 25px;
    cursor: pointer;
    backdrop-filter: blur(4px);
}
.hero-section #openVideoModal i:first-of-type{
    display: none;
}
.btn-gold-action {
    background: var(--gold-gradient);
    color: var(--text-white);
    border: none;
    font-weight: bold;
    padding: 9px 40px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    width: 30%;
    font-size: 2em;
    margin: 27px;
}
.btn-outline-action {
    border: 1px solid var(--gold-primary);
    color: var(--text-white);
    background: transparent;
    padding: 9px 40px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    width: 30%;
    font-size: 2em;
    transition: 0.3s;
}


.btn-gold-action:hover{filter:brightness(1.1)}
.btn-outline-action:hover, .fload_btns > div:first-of-type button:hover{background:var(--gold-primary);color:var(--text-white); font-weight: 900;}

/* Floating WhatsApp */
.fload_btns{
    position: fixed;
    bottom: 50px;
    left: 50px;
    width: 100px;
    z-index: 999;
}

.fload_btns > div{
    width: 77%;
    height: 77px;
    margin-bottom: 30px;
    cursor: pointer;
}

.fload_btns > div:first-of-type button{
    background: transparent;
    color: var(--gold-primary);
    border: 5px solid var(--gold-primary);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    font-size: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.fload_btns > div:first-of-type button i{
    font-weight: bolder;
}

.fload_btns > div:last-of-type button{
    background: #25d366;
    border: 3px solid #25d366;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fload_btns > div:last-of-type button a{
    color: #fff;
    font-size: 50px;
}

.about{
    width: 100%;
    background-color: var(--text-white);
    margin-bottom: -11px;
}

.about .container{
    width: 100%;
    max-width: 1500px;
    text-align: center;
    color: var(--text-muted);
    margin: 0px auto;
    padding-top: 150px;
}

.about .container h2{
    font-size: 5em;
    color: var(--gold-primary);
}

.about .container p{
    font-size: 1.5em;
    color: #000;
}
.about img{
    margin-top: 100px;
    width: 100%;
}

.assistant-bot{
    animation: floating 3s ease-in-out infinite;
}

/* الموجات المتلاشية */
.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #25d366;
    border-radius: 50%;
    animation: pulse 2s linear infinite;
    opacity: 0;
}

/* Vision & Mision */
.vision{
    width: 100%;
    background-color: var(--bg-black);
    padding: 150px 0px;
}
.vision .container{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 150px;
}

.vision .container .vision-text > div {
    width: 450px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    margin: 0px 0px 50px;
}

.vision-text div h3 {
    width: 100%;
    font-size: 3em;
    color: var(--gold-primary);
}

.vision-text div p{
    text-align: justify;
    font-size: 1.5em;
}

.vision .container .vision-img{
    position: relative;
}

.vision .container .vision-img::after{
    content: "";
    position: absolute;
    top: 21px;
    right: -100px;
    background: var(--gold-primary);
    width: 300px;
    height: 30px;
    z-index: 1;
}

.vision .container .vision-img::before{
    content: "";
    position: absolute;
    bottom: -88px;
    left: -151px;
    background: linear-gradient(45deg, var(--gold-primary), #efcb8a);
    width: 500px;
    height: 500px;
    z-index: 0;
}

.vision .container .vision-img{
    position: relative;
}

.vision .container .vision-img img{
    width: 700px;
    position: relative;
    z-index: 1;
}

/* END Vision & Mision */
 /* تكبير عرض الحاوية بالكامل ليتسع للأبعاد الجديدة */
.services-section{
    width: 100%;
    background-color: var(--bg-black);
    padding: 0px 0px 50px;
}

 .services-section .container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 0px auto;
}

.section-title {
    color: var(--gold-primary);
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 2px;
}

/* حاوية المعرض العلوي بحجم مضاعف */
.slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-viewport {
    width: 100%;
    height: 600px; /* زيادة الارتفاع ليتناسب مع الكروت الكبيرة */
    position: relative;
    perspective: 1200px;
    overflow: visible;
}

.cards-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* أبعاد الكارت أصبحت أكبر بمرتين تقريباً (460px × 560px) */
.service-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 460px;
    height: 560px;
    border-radius: var(--radius-main);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.6s ease,
                filter 0.6s ease,
                z-index 0.6s ease;
    transform-origin: center center;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* كارت الشرح بالنصف السفلي بحجم وخطوط أوضح */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    color: var(--text-dark);
    padding: 24px 20px;
    text-align: center;
    border-radius: 21px 21px var(--radius-main) var(--radius-main);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.45s ease;
    box-shadow: 0 -8px 25px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card.active .card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.card-overlay h4 {
    font-size: 1.35rem;
    color: var(--gold-gradient-dark);
    font-weight: 800;
}

.card-overlay p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.btn-more {
    background-color: var(--gold-primary);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 6px;
    transition: background 0.3s;
}

.btn-more:hover {
    background: var(--gold-gradient-dark);
}

/* تكبير أزرار التنقل يميناً ويساراً */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    background: rgba(18, 19, 22, 0.6);
    backdrop-filter: blur(5px);
    color: var(--gold-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--gold-primary);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.nav-btn.prev { right: 10px; }
.nav-btn.next { left: 10px; }

/* مؤشرات النقاط */
.dots-container {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #444444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--gold-primary);
    transform: scale(1.4);
}

/* الحاوية السفلية */
.bottom-details-box {
    width: 100%;
    max-width: 1200px;
    background: #ffffff;
    color: var(--text-dark);
    border-radius: var(--radius-main);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    min-height: 380px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.bottom-details-box.fade {
    opacity: 0;
    transform: translateY(12px);
}

.box-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.box-content {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
}

.box-content h3 {
    color: var(--gold-gradient-dark);
    font-size: 1.8rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.box-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.btn-order {
    align-self: flex-start;
    background-color: var(--gold-primary);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.btn-order:hover {
    background: var(--gold-gradient-dark);
}

/* التجاوب مع الشاشات الأصغر */
@media (max-width: 1100px) {
    .service-card {
        width: 360px;
        height: 460px;
    }
    .slider-viewport {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .service-card {
        width: 290px;
        height: 390px;
    }
    .slider-viewport {
        height: 420px;
    }
    .bottom-details-box {
        grid-template-columns: 1fr;
    }
    .box-image {
        height: 250px;
    }
    .nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* Request Form */
.requestForm{
    width: 100%;
    background: var(--bg-black);
}

.requestForm .container{
    width: 100%;
    margin: 0px auto;
    max-width: 1200px;
    background: var(--text-white);
    border-radius: 21px;
    padding: 50px 0px;
}

.requestForm .container form{
    width: 100%;
    color: var(--bg-black);
    display: grid;
    grid-template-columns: 40% 40%;
    grid-template-rows: 17% 17% 17% 17% 27%;
    gap: 17px;
    justify-content: center;
    align-content: space-around;
}

.requestForm .container form div {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
}

.requestForm .container form div:last-of-type input{
    position: relative;
}

.requestForm .container form div:last-of-type input::after{
    content: "إرفاق صورة للخدمة (إختياري)";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #eee;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-indent: 17px;
    font-size: 1em;
    color: #777;
}

.requestForm .container form lable {
    color: var(--gold-primary);
    font-size: 1.5em;
    font-weight: 700;
}

.requestForm .container form input, .requestForm .container form select {
    width: 100%;
    height: 70px;
    background: #eee;
    border: 0px;
    border-radius: 11px;
    text-indent: 17px;
    font-size: 1em;
    color: #777;
}

.requestForm .container form button {
    width: 205%;
    height: 70px;
    background: var(--gold-primary);
    font-size: 1.5em;
    font-weight: 700;
    color: var(--text-white);
    border: 0px;
    border-radius: 11px;
    cursor: pointer;
}

/* END Request Form */


/* Product Slider */
 /* ------------------ القسم العلوي ------------------ */
.top-gallery-section {
    background-color: var(--bg-dark);
    padding: 60px 0 90px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-title {
    color: var(--gold-primary);
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 45px;
    letter-spacing: 1px;
    text-align: center;
}

.dual-track-wrapper {
    position: relative;
    width: 100%;
    max-width: 1450px;
    overflow: hidden;
    padding: 20px 0;
}

/* تدرجات الظلام الجانبية */
.dual-track-wrapper::before,
.dual-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 220px;
    z-index: 10;
    pointer-events: none;
}

.dual-track-wrapper::before {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark) 25%, rgba(25, 25, 25, 0) 100%);
}

.dual-track-wrapper::after {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark) 25%, rgba(25, 25, 25, 0) 100%);
}

.track-row {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    transition: transform 0.2s cubic-bezier(0.1, 0.9, 0.2, 1);
    will-change: transform;
    width: max-content;
}

.dual-track-wrapper .track-row:first-of-type{
    transform: translateX(-180px);
}

/* مضاعفة حجم البطاقات (360px × 360px) */
.product-card {
    position: relative;
    width: 360px;
    height: 360px;
    background: #2a2a2a;
    border-radius: var(--radius-main);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    border: 3px solid transparent;
    border-radius: 17px;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(213, 170, 89, 0.6);
}

.product-card.selected {
    border-color: var(--gold-primary);
    box-shadow: 0 0 30px rgba(213, 170, 89, 0.5);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card .card-footer-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    padding: 14px 0;
    text-align: center;
    border-radius: 0 0 var(--radius-main) var(--radius-main);
}

.product-card .card-footer-tag span {
    color: var(--gold-primary);
    font-size: 1.5rem;
    font-weight: 800;
}

/* ------------------ القسم السفلي وتفاصيل الطلب ------------------ */
.details-section {
    background-color: var(--text-white);
    color: var(--text-dark);
    padding: 70px 20px 90px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* حاوية التفاصيل مع موضع نسبي للأزرار الجانبية */
.details-outer-wrap {
    position: relative;
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.details-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    transition: opacity 0.25s ease;
}

.details-container.updating {
    opacity: 0.2;
}

.product-images-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-img-box {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-main);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background: #e5e5e8;
}

.detail-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info-col {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.item-main-title {
    color: var(--gold-primary);
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.item-main-desc {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.specs-title {
    color: var(--gold-primary);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table td {
    padding: 11px 0;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

.specs-table td.spec-val {
    text-align: left;
    color: #555;
    font-weight: 500;
}

.location-info {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 22px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 24px;
}

.current-price {
    color: var(--gold-primary);
    font-size: 2.1rem;
    font-weight: 900;
}

.current-price span {
    font-size: 1.1rem;
}

.old-price-wrap {
    color: #777;
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.old-price {
    text-decoration: line-through;
    font-size: 1.5rem;
    font-weight: 800;
    color: #888;
}

.btn-order-now {
    width: 100%;
    background-color: var(--gold-primary);
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 18px rgba(213, 170, 89, 0.35);
}

.btn-order-now:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}

/* ------------------ أزرار التنقل الجانبية في المنتصف للخارج ------------------ */
.side-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    background: #ffffff;
    color: var(--gold-primary);
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.side-nav-btn:hover {
    background: var(--gold-primary);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.side-nav-btn.prev {
    right: -75px;
}

.side-nav-btn.next {
    left: -75px;
}

/* مؤشر النقاط في الأسفل */
.bottom-dots-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.bottom-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #d1d1d6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bottom-dot.active {
    background-color: var(--gold-primary);
    transform: scale(1.35);
}

@media (max-width: 1280px) {
    .side-nav-btn.prev { right: -25px; }
    .side-nav-btn.next { left: -25px; }
}

@media (max-width: 900px) {
    .details-container { grid-template-columns: 1fr; }
    .side-nav-btn.prev { right: 5px; }
    .side-nav-btn.next { left: 5px; }
}

/* END Product Slider */

/* Help & Support */
.help_Support{
    width: 100%;
    background: var(--bg-black);
    padding: 0px 0px 50px;
}

.help_Support .container{
    width: 100%;
    max-width: 1500px;
    margin: 0px auto;
    padding-top: 150px; 
}

.help_Support .container .holder{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 150px auto;
}

.help_Support .container .holder .faq{
    width: 100%;
    height: 100%;
    padding: 21px;
}

.help_Support .container .holder .faq h3{
    font-size: 2em;
    color: var(--gold-primary);
    margin-bottom: 21px;
    font-weight: 700;
}

.help_Support .container .holder .faq div {
    width: 100%;
    margin-bottom: 32px;
}

.help_Support .container .holder .help_form{
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column wrap;
    align-content: flex-end;
    align-items: center;
}

.help_Support .container .holder .help_form textarea{
    width: 450px;
    height: 250px;
    border: 0px;
    border-radius: 7px;
    padding: 17px;
    font-size: 1.1em;
    margin: 11px;
}

.help_Support .container .holder .help_form button{
    width: 450px;
    padding: 7px 17px;
    border: 0px;
    border-radius: 7px;
    background: var(--gold-gradient);
    font-size: 1.5em;
    font-weight: 700;
    color: var(--text-white);
}

/* END Help & Support */

/* Footer */
footer{
    width: 100%;
    background: var(--bg-card);
    background-image: url(../assets/imgs/footer_pattern.png);
    background-repeat: no-repeat;
    background-size: 700px;
    background-position: -373px -50px;
}

footer .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 150px 0px;
    width: 100%;
    max-width: 1500px;
    margin: 0px auto;
    padding-right: 32px;
}

footer .container .details, footer .container .footer_navbar{
    width: 100%;
    max-width: 700px;
}

footer .container .details .logo img{
    width: 300px;
}

footer .container .details p{
    margin-top: 50px;
}

footer .container .details ol li a{
    color: var(--text-white);
}


footer .container .footer_navbar ul li a {
    color: var(--text-whait);
    font-size: 1.3em;
    border-bottom: 3px solid var(--gold-primary);
    display: block;
    transition: .3s;
    width: 70%;
    padding: 7px 0px;
}

footer .container .footer_navbar ul li a:hover{
    color: var(--gold-primary);
    font-weight: 700;
}

footer .container .footer_navbar ul li:first-of-type a{
    border-top: 3px solid var(--gold-primary);
}

footer .container .details ol li span a{
    width: 33px;
    height: 33px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    border-radius: 50px;
    margin-left: 7px;
}

/* END Footer */

/* Start Animtion */

/* Float Animation */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
/* Wave Animation */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* END Animation */

/* Start Media Query */
/* Tablet */
@media (max-width: 1300px) {
    header > div img {
        height: 48px;
    }

    header .navbar nav ul li a {
        font-size: 21px;
        margin: 13px;
    }

    header .social_link{
        justify-content: center;    
    }

    .hero-title {
        font-size: 5rem;
    }

    .requestForm .container {
        width: 90%;
    }

    .details-outer-wrap {
        width: 90%;
    }

    footer .container {
        flex-flow: column nowrap;
    }

    footer .container .details{
        order: 2;
        text-align: center;
        padding-top: 150px;
    }
    footer .container .footer_navbar{
        order: 1;
    }
}

/* Smart Phone */
@media (max-width: 1111px) {
    header{
        grid-template-columns: 50% 30%;
        justify-content: space-between;
        align-items: center;
    }

    header .social_link {
        justify-content: flex-end;
    }

    .navbar, .social_link ol{
        display: none;
    }

    header .social_link .navbar_btn{
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 7px;
        cursor: pointer;
    }

    header .social_link .navbar_btn div {
        width: 50px;
        height: 7px;
        background: var(--gold-primary);
    }
    .hidden_navbar{
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: var(--bg-black);
        width: 100%;
        height: 100%;
        z-index: 9999;
        animation: all .3s ease-in-out;
    }
    .hidden_navbar .top_nav{
        width: 100%;
        height: 100px;
        padding: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hidden_navbar .top_nav .nav-logo{
        width: 100%;
        height: 50px;
    }

    .hidden_navbar .top_nav .nav-logo img{
        width: 150px;
    }

    .hidden_navbar .top_nav .close-navbar{
        cursor: pointer;
    }

    .hidden_navbar .top_nav .close-navbar div {
        width: 50px;
        height: 10px;
        background: var(--gold-primary);
        transform: rotate(45deg);
    }

    .hidden_navbar .top_nav .close-navbar div:last-of-type{
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hidden_navbar .nav-links{
        width: 70%;
        margin: 0px auto;
        padding: 150px 50px;
    }

    .hidden_navbar .nav-links ol li a {
        color: var(--text-white);
        display: block;
        border-bottom: 1px solid var(--gold-primary);
        margin: 17px;
    }

    .hidden_navbar .nav-bottom{
        text-align: center;
    }

    .hidden_navbar .nav-bottom ul{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 17px;
    }

    .hidden_navbar .nav-bottom ul li{
        width: 50px;
        height: 50px;
        border: 3px solid var(--gold-primary);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hidden_navbar .nav-bottom ul li a{
        display: block;
        color: var(--text-white);
        font-size: 1.3em;
    }

    .vision .container .vision-img img {
        width: 300px;
    }

    .vision .container {
        flex-flow: column nowrap;
    }

    .vision .container .vision-img::before {
        content: "";
        position: absolute;
        bottom: -45px;
        left: -65px;
        background: linear-gradient(45deg, var(--gold-primary), #efcb8a);
        width: 300px;
        height: 300px;
        z-index: 0;
    }

    .vision .container .vision-img::after {
        content: "";
        position: absolute;
        top: 21px;
        right: -43px;
        background: var(--gold-primary);
        width: 100px;
        height: 15px;
        z-index: 1;
    }

    .help_Support .container .holder {
        flex-flow: column wrap;
        justify-content: center;
        align-content: center;
    }

    .help_Support .container .holder .faq {
        width: 450px;
        margin: 50px auto 0px;
        order: 2;
    }

    .help_Support .container .holder .help_form {
        align-content: center;
    }

    footer .container .details, footer .container .footer_navbar {
        width: 100%;
        max-width: 300px;
    }
}

/* =========================================
   Responsive & Media Queries (الشاشات المتجاوبة)
   ========================================= */

/* تحسين الخطوط والعناصر العامة لتكون مرنة */
.hero-title { font-size: clamp(2.5rem, 6vw, 7rem) !important; }
.section-title, .main-title { font-size: clamp(2rem, 5vw, 2.8rem) !important; }
.about .container h2, .vision-text div h3 { font-size: clamp(2.5rem, 5vw, 5em) !important; }
.btn-gold-action, .btn-outline-action {
    width: 300px !important;
    min-width: 140px;
    font-size: clamp(1.2rem, 3vw, 2rem) !important;
    padding: 10px 25px !important;
    margin: 10px !important;
}

/* شاشات اللابتوب والتابلت الكبيرة (أقل من 1300px) */
@media (max-width: 1300px) {
    header { grid-template-columns: 20% 60% 20%; padding-top: 30px; }
    header .navbar nav ul li a { font-size: 1.3rem; margin: 8px; }
}

/* شاشات التابلت والهواتف الأفقية (أقل من 992px) */
@media (max-width: 992px) {
    /* Navbar (الهاتف) */
    header { grid-template-columns: 50% 50%; padding: 20px; position: absolute; background: transparent; z-index: 2;}
    header .social_link { justify-content: flex-end; }
    .navbar, .social_link ol { display: none !important; }
    header .social_link .navbar_btn {
        display: flex; flex-flow: column nowrap; gap: 6px; cursor: pointer;
    }
    header .social_link .navbar_btn div { width: 40px; height: 5px; background: var(--gold-primary); }
   
    /* Hero & About */
    .hero-section .d-flex { flex-wrap: wrap; justify-content: center; }
    
    .fload_btns {
        bottom: 0px;
        left: 21px;
        width: 65px;
    }
   
    .fload_btns > div {
        height: 50px;
        /*padding: 17px 21px;*/
    }
    
    .fload_btns > div:last-of-type button a {
        font-size: 37px;
    }
   
    .dual-track-wrapper {
    	overflow: auto
    }
   
    .dual-track-wrapper::-webkit-scrollbar{
            width: 6px;
        }
    
    .dual-track-wrapper::-webkit-scrollbar-thumb {
        background-color: var(--border-color);
        border-radius: 10px;
    }
    
    .vision .container .vision-text > div {
        width: 90%;
        margin: 0px auto 50px;
    }
    .services-section .container{
        overflow: hidden;
    }
    
    .hero-section {
    	position: absolute;
    	height: 100vh;
        width: 100%;
    }
    
    .hero-video {
        position: relative;
        top: 0px;
        left: 0px;
        width: 100%;
        z-index: -1;
        height: 100vh;
        overflow: hidden;
	}
    
    .hero-video video {
        object-fit: cover;
        object-position: center center;
        transform: translate(-50%, -50%);
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
	}

    .vision .container .vision-img::before {
        bottom: -9px;
        left: -17px;
    }

        .vision .container .vision-img::after {
            right: -21px;
        }

    .help_Support .container .holder .help_form textarea, .help_Support .container .holder .help_form button, .help_Support .container .holder .faq{
        width: 90%;
        margin: 7px auto;
    }

    /* Services Form */
    .requestForm .container form {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
        padding: 17px;
    }

    .requestForm .container form button { width: 100%; height: 60px; font-size: 1.3em; }
}

/* شاشات الهواتف الذكية (أقل من 768px) */
@media (max-width: 768px) {
    .hidden_navbar .nav-links { width: 90%; padding: 100px 20px 50px; text-align: center; }
   .hidden_navbar .nav-links ol{text-align: right;}

    /* Services Slider */
    .service-card { width: 280px; height: 380px; }
    .slider-viewport { height: 420px; }
    .bottom-details-box { grid-template-columns: 1fr; text-align: center; overflow: hidden; width: 90%;}
    .box-content { align-items: center; text-align: center; padding: 25px 20px; }
    .btn-order { align-self: center; }
    .nav-btn { width: 40px; height: 40px; font-size: 1.2rem; }
    .nav-btn.prev { right: 0; }
    .nav-btn.next { left: 0; }

   
    /* Request form */
    .requestForm .container { padding-top: 30px; padding-bottom: 30px; margin-top: 20px;}
    .requestForm .container form lable { font-size: 1.2em; }
    .requestForm .container form input, .requestForm .container form select { height: 55px; }
}

/* شاشات الهواتف الصغيرة جداً (أقل من 480px) */
@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem !important; }
    header > div img { height: 35px; }
}