/********** Template CSS **********/
:root {
    --primary: #B78D65;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}



/* =========================================
   TIRAZ PREMIUM DARK THEME OVERRIDES - V2 (MUTED GOLD)
   ========================================= */

/* 1. توحيد اللون الذهبي العتيق المطفى (Matte Antique Gold) - لضمان الشياكة */


/* 2. تحويل الموقع بالكامل للون الداكن الفخم */
body {
    background-color: #121212 !important; /* أسود فحمي غامق */
    color: #aaaaaa !important; /* نص رمادي فاتح مريح للعين */
}

/* 3. العناوين والنصوص الأساسية باللون الأبيض المريح */
h1, h2, h3, h4, h5, h6, .text-dark, h3.mb-0, h1.display-5, .display-1 {
    color: #e0e0e0 !important;
}
p.mb-2 {
    color: #999999 !important;
}

/* 4. تغيير خلفية النافبار العلوية (Navbar) لتكون داكنة جداً أبرز اللوجو */
.navbar.bg-white {
    background-color: #0d0d0d !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.5) !important;
}
.navbar-light .navbar-brand h1 {
    color: var(--primary) !important;
}
.navbar-light .navbar-nav .nav-link {
    color: #bbbbbb !important;
    font-weight: 600 !important;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

/* 5. نسف أي خلفية بيضاء أو فاتحة وتحويلها لدرجات أسود متدرجة */
.bg-light, .bg-white {
    background-color: #161616 !important; /* أفتح قليلاً من الخلفية الأساسية */
}
.bg-dark {
    background-color: #080808 !important; /* أغمق قليلاً */
}
.fact-item.bg-light {
    background-color: #1a1a1a !important;
}

/* 6. توحيد الأزرار لتكون ذهبية عتيقة أنيقة والنص عليها أسود */
.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #0d0d0d !important; /* النص أسود لتباين شيك */
    font-weight: 700 !important;
    border-radius: 4px !important;
}
.btn-primary:hover {
    background-color: #a68545 !important; /* تغميق بسيط عند الهوفر */
    border-color: #a68545 !important;
    color: #ffffff !important;
}
/* أزرار السوشيال ميديا في الفوتر */
.btn-outline-body {
    color: var(--primary) !important;
    border-color: #444 !important;
}
.btn-outline-body:hover {
    background-color: var(--primary) !important;
    color: #0d0d0d !important;
}

/* 7. الأيقونات والأسهم والقوائم باللون الذهبي الدافئ */
.text-primary, .text-primary i, i.text-primary, .fa-check, .fa-map-marker-alt, .fa-phone-alt, .fa-envelope-open {
    color: var(--primary) !important;
}
/* تحويل أيقونات الـ SVG (الصور) للون الذهبي الجديد */
.fact-item .fact-icon img, .service-item .service-text img {
    filter: invert(71%) sepia(37%) saturate(674%) hue-rotate(3deg) brightness(89%) contrast(91%) !important;
}

/* 8. ضبط أبعاد السلايدر (Carousel) وتعتيمه لبروز النص */
.header-carousel .owl-carousel-item {
    height: 70vh !important; /* تقليل الارتفاع قليلاً لنسبة أجمل */
    min-height: 500px !important;
    max-height: 700px !important;
}
.header-carousel .owl-carousel-item img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}
.owl-carousel-inner {
    background: rgba(0, 0, 0, 0.75) !important; /* زيادة التعتيم قليلاً */
}

/* 9. تظبيط المربعات والبطاقات (Cards) */
.service-item .service-text, .team-item, .bg-light.p-4, .project .nav .nav-link {
    background-color: #1a1a1a !important;
    border: 1px solid rgba(197, 160, 89, 0.05) !important; /* إطار ذهبي شبه شفاف */
}
.fact-icon {
    background-color: #0d0d0d !important;
    border: 1px solid var(--primary) !important;
}
.service-item:hover .service-text {
    background: rgba(197, 160, 89, 0.05) !important; /* خلفية ذهبية خفيفة جداً عند الهوفر */
}

/* 10. تظبيط حقول الإدخال (الأنماط أنيقة وداكنة) */
.form-control, .form-select {
    background-color: #222222 !important;
    border: 1px solid #333333 !important;
    color: #ffffff !important;
    border-radius: 2px !important;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(197, 160, 89, 0.15) !important;
}

/* 11. الفوتر واللاين الذهبي */
.footer.bg-dark {
    background-color: #080808 !important;
    border-top: 1px solid rgba(197, 160, 89, 0.3) !important;
}
.footer .btn.btn-link {
    color: #888888 !important;
}

/* =========================================
   إصلاح ألوان الشريط العلوي (Topbar) الإجبارية
   ========================================= */
/* 1. النص فقط باللون الفاتح */
.container-fluid.bg-dark .text-body {
    color: #e0e0e0 !important; 
    transition: 0.3s;
}

/* 2. الأيقونات ترجع للون الذهبي بتاع طراز */
.container-fluid.bg-dark .text-body i {
    color: var(--primary) !important;
}

/* 3. تأثير الهوفر: النص يقلب ذهبي لما تقف عليه */
.container-fluid.bg-dark .text-body:hover {
    color: var(--primary) !important;
}

/* =========================================
   تغيير اللون الذهبي الإجباري للموقع بالكامل (#af7e3c)
   ========================================= */

/* 1. النصوص والأيقونات */
.text-primary, 
.text-primary i, 
i.text-primary, 
.fa-check, 
.fa-map-marker-alt, 
.fa-phone-alt, 
.fa-envelope,
.fa-envelope-open,
.navbar-brand h1 {
    color: #af7e3c !important;
}

/* 2. الأزرار الأساسية */
.btn-primary {
    background-color: #af7e3c !important;
    border-color: #af7e3c !important;
    color: #121212 !important; /* لون النص أسود فخم */
}
.btn-primary:hover {
    background-color: #8f652d !important; /* درجة أغمق سنة لما تقف عليه بالماوس */
    border-color: #8f652d !important;
    color: #ffffff !important;
}

/* 3. أزرار السوشيال ميديا في الفوتر */
.btn-outline-body {
    color: #af7e3c !important;
}
.btn-outline-body:hover {
    background-color: #af7e3c !important;
    border-color: #af7e3c !important;
    color: #121212 !important;
}

/* 4. الإطارات والحدود (Borders) */
.border-primary,
.fact-icon,
.header-carousel .owl-dots .owl-dot.active,
.testimonial-carousel .owl-dots .owl-dot.active img,
.project .nav .nav-link.active {
    border-color: #af7e3c !important;
}

/* 5. تأثيرات الهوفر (لما تقف بالماوس على أي حاجة) */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.navbar .nav-item:hover .dropdown-toggle::after,
.container-fluid.bg-dark .text-body:hover,
.container-fluid.bg-dark .text-body:hover i,
.footer .btn.btn-link:hover,
.footer .copyright a:hover,
.service-item:hover h3,
.team-item:hover h3 {
    color: #af7e3c !important;
}

/* خط أسفل الخدمات عند الهوفر */
.service-item:hover .service-text {
    border-bottom-color: #af7e3c !important;
}

/* 6. تأثيرات الفلاتر للصور (الأيقونات بصيغة png) */
.fact-item .fact-icon img, .service-item .service-text img {
    /* فلتر مقارب جداً لدرجة #af7e3c */
    filter: invert(56%) sepia(35%) saturate(765%) hue-rotate(352deg) brightness(89%) contrast(85%) !important;
}


/* =========================================
   تعتيم خلفيات العناوين في الصفحات الداخلية لبروز الفهرس
   ========================================= */

/* 1. عمل طبقة تعتيم فوق الصورة مباشرة */
.page-header {
    position: relative;
}
.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.75) !important; /* درجة تعتيم 75% بلون فحمي */
    z-index: 1;
}

/* 2. رفع العناوين والفهرس فوق طبقة التعتيم عشان تنور */
.page-header > .container {
    position: relative;
    z-index: 2;
}

/* 3. تظبيط ألوان الفهرس (الروابط) عشان تبقى أوضح وأشيك */
.breadcrumb-item a, 
.breadcrumb-item a.text-white {
    color: #e0e0e0 !important; /* أوف وايت مريح */
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: 0.3s;
}
.breadcrumb-item a:hover {
    color: #af7e3c !important; /* تقلب للدهبي المعتق عند الماوس */
}
.breadcrumb-item.active {
    color: #af7e3c !important;
    font-weight: 700 !important;
}

/* تلوين الشرطة المايلة (/) اللي بين الكلمات */
.breadcrumb-item + .breadcrumb-item::before {
    color: #888888 !important; 
}


/* =========================================
   تصميم كروت سابقة الأعمال (Portfolio Cards)
   ========================================= */

.tiraz-project-card {
    background: #1a1a1a;
    border: 1px solid rgba(175, 126, 60, 0.15); /* إطار دهبي خفيف جداً */
    border-radius: 4px;
    overflow: hidden;
    transition: 0.5s ease-in-out;
}

.tiraz-project-card:hover {
    transform: translateY(-10px); /* الكارت بيترفع لفوق شوية */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border-color: rgba(175, 126, 60, 0.5);
}

.tiraz-project-card .project-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3; /* لتوحيد مقاسات كل الصور غصب عنها */
}

.tiraz-project-card .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.tiraz-project-card:hover .project-img img {
    transform: scale(1.1); /* زوم بطيء للصورة */
}

.tiraz-project-card .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.7); /* فاميه غامق */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s ease;
}

.tiraz-project-card:hover .project-overlay {
    opacity: 1;
}

.tiraz-project-card .project-info {
    border-top: 1px solid rgba(175, 126, 60, 0.15);
}

.tiraz-project-card .project-info h4 {
    color: #e0e0e0;
    font-size: 1.25rem;
    transition: 0.3s;
}

.tiraz-project-card:hover .project-info h4 {
    color: #af7e3c !important; /* العنوان ينور دهبي */
}


/* =========================================
   تصميم سلايدر البورتفوليو الداخلي (Project Details Gallery)
   ========================================= */

/* تظبيط حجم الصور وإطارها الذهبي */
.project-gallery-carousel .gallery-item {
    padding: 10px 0;
}
.project-gallery-carousel .gallery-item img {
    height: 60vh;
    min-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(175, 126, 60, 0.3);
    transition: 0.5s;
    opacity: 0.5; /* تعتيم الصور الجانبية */
    transform: scale(0.9);
}

/* تنوير وتكبير الصورة اللي في النص (المركزية) */
.project-gallery-carousel .owl-item.center .gallery-item img {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: #af7e3c !important;
}

/* تظبيط أسهم التقليب */
.project-gallery-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 2;
    pointer-events: none; /* عشان الأسهم متقفلش الكليكات على الصورة */
}
.project-gallery-carousel .owl-nav .owl-prev,
.project-gallery-carousel .owl-nav .owl-next {
    pointer-events: auto;
    width: 55px;
    height: 55px;
    background: rgba(18, 18, 18, 0.9) !important;
    color: #af7e3c !important;
    border: 1px solid #af7e3c !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: 0.3s;
}
.project-gallery-carousel .owl-nav .owl-prev:hover,
.project-gallery-carousel .owl-nav .owl-next:hover {
    background: #af7e3c !important;
    color: #121212 !important;
}

/* =========================================
   تنسيقات الشاشة المنبثقة للمشاريع (Project Modal)
   ========================================= */

/* إطار الشاشة */
.tiraz-modal {
    border: 1px solid var(--primary) !important;
    border-radius: 15px !important;
    overflow: hidden;
}

/* إجبار السلايدر على أخذ مساحة كاملة ومنع التداخل */
.tiraz-modal .carousel-inner,
.tiraz-modal .carousel-item {
    height: 100%;
}

/* طول ثابت للصور عشان السلايدر ما يضربش */
.tiraz-modal .modal-img {
    height: 500px !important; 
    object-fit: cover !important;
    width: 100%;
    background-color: #121212;
}

/* تظبيط شكل أسهم التقليب */
.tiraz-modal .custom-arrow {
    background-color: var(--primary) !important;
    border-radius: 50%;
    padding: 20px;
    background-size: 50%;
    opacity: 0.9;
    transition: 0.3s;
}

.tiraz-modal .carousel-control-prev:hover .custom-arrow,
.tiraz-modal .carousel-control-next:hover .custom-arrow {
    opacity: 1;
    transform: scale(1.1);
}

/* تظبيط الطول في شاشات الموبايل */
@media (max-width: 991px) {
    .tiraz-modal .modal-img {
        height: 350px !important;
    }
}



/* =========================================
   التصميم المودرن لسلايدر المشاريع (Modern Modal)
   ========================================= */

/* إجبار الصورة على أخذ طول ثابت يملى نص الشاشة وميضربش السلايدر */
.modern-hero-img {
    height: 600px !important;
    object-fit: cover !important;
    width: 100% !important;
    background-color: #121212; /* عشان لو الصورة تقيلة بيحمل لون أنيق لحد ما تظهر */
}

/* تصميم أسهم التقليب بشكل راقي */
.modern-nav-icon {
    background-color: var(--primary) !important;
    border-radius: 50%;
    width: 45px !important;
    height: 45px !important;
    background-size: 50% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    transition: 0.3s;
}

.carousel-control-prev:hover .modern-nav-icon,
.carousel-control-next:hover .modern-nav-icon {
    transform: scale(1.1);
    background-color: #ffffff !important; /* تقلب أبيض لما الماوس ييجي عليها */
}

/* تظبيط الارتفاع في الموبايل عشان ميبقاش طويل جداً */
@media (max-width: 991px) {
    .modern-hero-img {
        height: 350px !important;
    }
}



/* =========================================
   الهوية الجديدة لشركة طراز (Premium Dark)
   ========================================= */

/* خلفية الموقع بالكامل */
body {
    background-color: #121212 !important;
    color: #cccccc !important;
}

/* العناوين الأساسية */
h1, h2, h3, h4, h5, h6, .text-dark {
    color: #ffffff !important;
}
.section-title {
    color: #af7e3c !important;
    font-weight: 800;
    letter-spacing: 1px;
}

/* كروت الخدمات المودرن */
.tiraz-service-card {
    background: #1a1a1a;
    border: 1px solid rgba(175, 126, 60, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.tiraz-service-card:hover {
    transform: translateY(-10px);
    border-color: #af7e3c;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.tiraz-service-icon {
    width: 80px;
    height: 80px;
    background: rgba(175, 126, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    color: #af7e3c;
    font-size: 35px;
    transition: 0.4s;
}
.tiraz-service-card:hover .tiraz-service-icon {
    background: #af7e3c;
    color: #121212;
}

/* فورم طلب المقايسة (Glassmorphism) */
.tiraz-glass-form {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(175, 126, 60, 0.3);
    border-radius: 20px;
    padding: 50px;
}
.tiraz-glass-form .form-control, .tiraz-glass-form .form-select {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid #333 !important;
    color: #fff !important;
    border-radius: 8px;
}
.tiraz-glass-form .form-control:focus {
    border-color: #af7e3c !important;
    box-shadow: none;
}

/* إخفاء أي خلفيات بيضاء قديمة */
.bg-light, .bg-white {
    background-color: transparent !important;
}



/* ============================================== */
        /* كسر أوامر البوتستراب الإجبارية (Fix Text Colors) */
        /* ============================================== */
        
        /* تفتيح كلاسات النصوص اللي البوتستراب مغمقها */
        .text-muted, .text-secondary {
            --bs-secondary-color: #d1d1d1 !important; /* بنغير قيمة المتغير نفسه لرمادي فاتح */
            color: #d1d1d1 !important;
        }

        /* تفتيح الكلام المكتوب جوه الفورم (Placeholders) عشان يبان على الخلفية الغامقة #222 */
        .form-control::placeholder, .form-select::placeholder {
            color: #999999 !important;
        }
