/* ===== Brand Palette Root Variables ===== */
:root {
    --primary-color: #cc945b;
    --primary: #cc945b;
    --secondary-color: #152147;
    --secondary: #152147;
    --color-primary: #cc945b;
    --color-secondary: #152147;
    --gold: #cc945b;
    --navy: #152147;
}

/* ===== Vision / Values / Quality Section (Home) ===== */
.vvq-section {

    /* background-color: #faf4ee; */
    position: relative;
    overflow: hidden;
    padding: 0;
}
.vvq-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px solid rgba(204, 148, 91,0.10);
    pointer-events: none;
}
.vvq-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(204, 148, 91,0.07);
    pointer-events: none;
}

/* بطاقة مشتركة */
.vvq-card {
    padding: 52px 48px;
    position: relative;
    border-left: 1px solid rgba(21, 33, 71,0.08);
    border-bottom: 1px solid rgba(21, 33, 71,0.08);
    transition: background 0.4s;
    overflow: hidden;
}
.vvq-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 70%;
    background: url('/front/assets/images/m-logo.webp?v=3') center/contain no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    filter: grayscale(1) brightness(0.3);
}
.vvq-card--vision {
    border-bottom: 1px solid rgba(21, 33, 71,0.08);
}
.vvq-card--values {
    border-bottom: 1px solid rgba(21, 33, 71,0.08);
}
.vvq-card--quality {
    border-left: none;
}
.vvq-card:hover::after {
    opacity: 0.07;
}

/* أيقونة الركن */
.vvq-corner-icon {
    position: absolute;
    top: 28px;
    left: 32px;
    font-size: 80px;
    color: rgba(204, 148, 91,0.11);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s;
}
.vvq-card:hover .vvq-corner-icon {
    color: rgba(204, 148, 91,0.22);
}

/* الأرقام */
.vvq-num {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #cc945b;
    margin-bottom: 18px;
    font-family: 'TheSans', sans-serif;
}
.vvq-num::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: #cc945b;
    vertical-align: middle;
    margin-left: 10px;
}

/* عنوان البطاقة */
.vvq-title {
    font-size: 28px;
    font-weight: 700;
    color: #152147;
    margin: 0 0 28px;
    font-family: 'TheSans', sans-serif;
    position: relative;
    padding-bottom: 18px;
}
.vvq-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 2px;
    background: #cc945b;
}

/* قائمة رؤيتنا */
.vvq-vision-list {
    list-style: square;
    padding: 0;
    margin: 0;
}
.vvq-vision-list li {
    color: #6b7a7a;
    font-size: 16px;
    line-height: 1.7;
    padding: 11px 0;
    border-bottom: 1px solid rgba(21, 33, 71,0.07);
    padding-right: 28px;
    position: relative;
    transition: color 0.3s;
}
.vvq-vision-list li:last-child {
    border-bottom: none;
}
.vvq-vision-list li:hover {
    color: #152147;
}

/* نص تمهيدي للقيم */
.vvq-lead {
    font-size: 15px;
    line-height: 1.8;
    color: #6b7a7a;
    margin-bottom: 22px;
}

/* تاجز القيم */
.vvq-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.vvq-tags div {
    display: inline-block;
    padding: 7px 16px;
    border: 1px solid rgba(204, 148, 91,0.40);
    color: #152147;
    font-size: 13.5px;
    border-radius: 30px;
    transition: all 0.3s;
    cursor: default;
    background: #faf4ee;
}
.vvq-tags div:hover {
    background: #cc945b;
    border-color: #cc945b;
    color: #fff;
}

/* محتوى الجودة */
.vvq-quality-body p {
    font-size: 14px;
    line-height: 1.85;
    color: #6b7a7a;
    margin-bottom: 14px;
}
.vvq-quality-body p:last-of-type {
    margin-bottom: 0;
}
.vvq-quality-sub {
    color: #152147 !important;
    font-weight: 600;
    margin-top: 28px !important;
    margin-bottom: 14px !important;
}
.vvq-quality-list {
    list-style: square;
    padding: 0;
    margin: 0;
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr; */
    /* gap: 24px 24px; */
    margin-bottom: 35px;
}

.vvq-quality-list li {
    color: #6b7a7a;
    font-size: 15px;
    padding-right: 24px;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* إحصائيات الجودة */
.vvq-stats {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(204, 148, 91,0.25);
    padding: 48px 48px;
}
.vvq-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    flex: 1;
    padding: 0 16px;
    border-left: 1px solid rgba(21, 33, 71,0.08);
}
.vvq-stat-item:last-child {
    border-left: none;
}
.vvq-stat-num {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #152147;
    line-height: 1;
    font-family: 'TheSans', sans-serif;
}
.vvq-stat-num span {
    font-size: 24px;
    color: #cc945b;
}
.vvq-stat-label {
    display: block;
    font-size: 13px;
    color: #6b7a7a;
    font-weight: 600;
}

/* ===== How We Protect Section (Home Page) - Crystal Clear White Contrast ===== */
.service-area.style-two {
    background-color: #152147 !important;
    position: relative;
}

.service-area.style-two .section-sub-title span {
    color: #cc945b !important;
    font-weight: 700 !important;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.service-area.style-two .section_title h1,
.service-area.style-two .section_title h2,
.service-area.style-two .section_title h3,
.service-area.style-two .section_title h4 {
    color: #ffffff !important; /* Force pure white title */
    font-weight: 800 !important;
}

.service-area.style-two .section-title-desc p,
.service-area.style-two .section-title-desc2 p {
    color: #E2E8F0 !important; /* Crisp readable light text */
    font-size: 16px;
    line-height: 1.8;
}

.service-area.style-two .service-title .title,
.service-area.style-two .service-title h3,
.service-area.style-two .service-title h2 {
    color: #ffffff !important;
}

.service-area.style-two .service-title a,
.service-area.style-two .service-box .title a,
.service-area.style-two .service-box h3.title a {
    color: #ffffff !important; /* Force pure white title */
    font-weight: 700 !important;
    transition: color 0.3s ease !important;
}

.service-area.style-two .service-box.active .service-title a,
.service-area.style-two .service-box.active h3.title a,
.service-area.style-two .service-box:hover .service-title a,
.service-area.style-two .service-box:hover h3.title a {
    color: #cc945b !important; /* Gold on active/hover */
}

.service-area.style-two .service-title p.description_text,
.service-area.style-two .service-box p.description_text {
    color: #CBD5E1 !important; /* Crisp readable light description */
    font-size: 15px;
    line-height: 1.6;
}

.service-area.style-two .service-btn a i {
    color: #ffffff !important;
}

.service-area.style-two .service-box.active .service-btn a i,
.service-area.style-two .service-box:hover .service-btn a i,
.service-area.style-two .service-btn a:hover i {
    color: #ffffff !important;
    background: #cc945b !important;
    border-color: #cc945b !important;
}

/* ===== How We Protect Page ===== */
.hwp-intro {
    background: #faf4ee;
    border-right: 4px solid #cc945b;
    padding: 28px 36px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 48px;
    font-size: 17px;
    line-height: 2;
    color: #4a5568;
    font-style: italic;
}

.hwp-phase {
    margin-bottom: 42px;
    position: relative;
}
.hwp-phase-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}
.hwp-phase-num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #152147;
    color: #cc945b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    font-family: 'TheSans', sans-serif;
    line-height: 1;
}
.hwp-phase-title-wrap {}
.hwp-phase-title {
    font-size: 22px;
    font-weight: 700;
    color: #152147;
    margin: 0 0 6px;
    font-family: 'TheSans', sans-serif;
}
.hwp-phase-sub {
    font-size: 14.5px;
    color: #cc945b;
    font-weight: 600;
    margin: 0;
}

.hwp-phase-body {
    background: #fff;
    border: 1px solid rgba(21, 33, 71,0.08);
    border-top: 3px solid #cc945b;
    border-radius: 0 0 8px 8px;
    padding: 32px 36px;
}

.hwp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
}
.hwp-list.single-col {
    grid-template-columns: 1fr;
}
.hwp-list li {
    position: relative;
    padding-right: 26px;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
}
.hwp-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cc945b;
    flex-shrink: 0;
}

.hwp-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 6px 0 42px;
}
.hwp-divider::before,
.hwp-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(21, 33, 71,0.10);
}
.hwp-divider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cc945b;
}

.hwp-cta {
    background: #152147;
    border-radius: 8px;
    padding: 40px 48px;
    text-align: center;
    margin-top: 16px;
}
.hwp-cta h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    font-family: 'TheSans', sans-serif;
    margin-bottom: 8px;
}
.hwp-cta p {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    margin-bottom: 24px;
}
.hwp-cta .lexpro-btn a {
    display: inline-block;
    padding: 13px 36px;
    background: #cc945b;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}
.hwp-cta .lexpro-btn a:hover {
    background: #b07a45;
}

/* ===== Vision Page ===== */
.vp-intro {
    font-size: 17px;
    line-height: 2;
    color: #4a5568;
    margin-bottom: 40px;
}

.vp-principles {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}
.vp-principles li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(21, 33, 71,0.07);
}
.vp-principles li:last-child {
    border-bottom: none;
}
.vp-principle-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #faf4ee;
    border: 1px solid rgba(204, 148, 91,0.35);
    color: #cc945b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    font-family: 'TheSans', sans-serif;
    margin-top: 2px;
}
.vp-principle-text {
    font-size: 16.5px;
    color: #2d3748;
    font-weight: 600;
    line-height: 1.6;
}
.vp-principle-text div {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #6b7a7a;
    margin-top: 4px;
}

.vp-cta {
    background: #152147;
    border-radius: 8px;
    padding: 36px 44px;
    text-align: center;
    margin-top: 16px;
}
.vp-cta h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    font-family: 'TheSans', sans-serif;
    margin-bottom: 8px;
}
.vp-cta p {
    color: rgba(255,255,255,0.65);
    font-size: 14.5px;
    margin-bottom: 22px;
}
.vp-cta .lexpro-btn a {
    display: inline-block;
    padding: 12px 34px;
    background: #cc945b;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}
.vp-cta .lexpro-btn a:hover {
    background: #b07a45;
}

/* ===== Values Page ===== */
.val-intro {
    font-size: 17px;
    line-height: 2;
    color: #4a5568;
    margin-bottom: 40px;
}

.val-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 44px;
}
.val-card {
    background: #faf4ee;
    border: 1px solid rgba(204, 148, 91,0.25);
    border-top: 3px solid #cc945b;
    border-radius: 0 0 6px 6px;
    padding: 26px 28px;
    transition: box-shadow 0.3s;
}
.val-card:hover {
    box-shadow: 0 6px 24px rgba(21, 33, 71,0.08);
}
.val-card-icon {
    font-size: 28px;
    color: #cc945b;
    margin-bottom: 14px;
    line-height: 1;
}
.val-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #152147;
    margin: 0 0 8px;
    font-family: 'TheSans', sans-serif;
}
.val-card-desc {
    font-size: 13.5px;
    color: #6b7a7a;
    line-height: 1.75;
    margin: 0;
}

.val-cta {
    background: #152147;
    border-radius: 8px;
    padding: 36px 44px;
    text-align: center;
}
.val-cta h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    font-family: 'TheSans', sans-serif;
    margin-bottom: 8px;
}
.val-cta p {
    color: rgba(255,255,255,0.65);
    font-size: 14.5px;
    margin-bottom: 22px;
}
.val-cta .lexpro-btn a {
    display: inline-block;
    padding: 12px 34px;
    background: #cc945b;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}
.val-cta .lexpro-btn a:hover {
    background: #b07a45;
}

/* ===== Quality Page ===== */
.qp-intro {
    font-size: 17px;
    line-height: 2;
    color: #4a5568;
    margin-bottom: 36px;
}
.qp-body p {
    font-size: 16px;
    line-height: 2;
    color: #4a5568;
    margin-bottom: 20px;
}

.qp-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #152147;
    font-family: 'TheSans', sans-serif;
    margin: 36px 0 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(204, 148, 91,0.30);
    position: relative;
}
.qp-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 48px;
    height: 2px;
    background: #cc945b;
}

.qp-principles {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.qp-principles li {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #faf4ee;
    border: 1px solid rgba(204, 148, 91,0.20);
    border-radius: 6px;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #152147;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.qp-principles li:hover {
    border-color: rgba(204, 148, 91,0.50);
    box-shadow: 0 4px 16px rgba(21, 33, 71,0.07);
}
.qp-principles li i {
    font-size: 20px;
    color: #cc945b;
    flex-shrink: 0;
}

.qp-cta {
    background: #152147;
    border-radius: 8px;
    padding: 36px 44px;
    text-align: center;
    margin-top: 8px;
}
.qp-cta h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    font-family: 'TheSans', sans-serif;
    margin-bottom: 8px;
}
.qp-cta p {
    color: rgba(255,255,255,0.65);
    font-size: 14.5px;
    margin-bottom: 22px;
}
.qp-cta .lexpro-btn a {
    display: inline-block;
    padding: 12px 34px;
    background: #cc945b;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}
.qp-cta .lexpro-btn a:hover {
    background: #b07a45;
}

/* ===== Sector Detail & Service Detail Pages ===== */
.sp-intro {
    background: #faf4ee;
    border-right: 4px solid #cc945b;
    padding: 26px 32px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 2;
    color: #4a5568;
}

.sp-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(204, 148, 91, 0.25);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 44px;
}

.sp-stat {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-inline-end: 1px solid rgba(204, 148, 91, 0.20);
}

[dir="rtl"] .sp-stat {
    border-left: 1px solid rgba(204, 148, 91, 0.20);
    border-right: none;
}

[dir="ltr"] .sp-stat {
    border-right: 1px solid rgba(204, 148, 91, 0.20);
    border-left: none;
}

.sp-stat:last-child {
    border-inline-end: none;
    border-left: none;
    border-right: none;
}

.sp-stat-num {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #152147;
    font-family: 'TheSans', sans-serif;
    line-height: 1.1;
}

.sp-stat-num em {
    font-style: normal;
    font-size: 15px;
    color: #cc945b;
    display: block;
    font-weight: 600;
}

.sp-stat-label {
    font-size: 12.5px;
    color: #6b7a7a;
    margin-top: 6px;
    display: block;
}

.sp-section-title {
    font-size: 19px;
    font-weight: 700;
    color: #152147;
    font-family: 'TheSans', sans-serif;
    margin: 38px 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(204, 148, 91, 0.25);
    position: relative;
    text-align: start;
}

.sp-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    inset-inline-start: 0;
    width: 44px;
    height: 2px;
    background: #cc945b;
}

[dir="rtl"] .sp-section-title::after {
    right: 0;
    left: auto;
}

[dir="ltr"] .sp-section-title::after {
    left: 0;
    right: auto;
}

.sp-section-title i {
    color: #cc945b;
    font-size: 18px;
    margin-inline-end: 10px;
}

[dir="rtl"] .sp-section-title i {
    margin-left: 10px;
    margin-right: 0;
}

[dir="ltr"] .sp-section-title i {
    margin-right: 10px;
    margin-left: 0;
}

.sp-section-intro {
    font-size: 15px;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 18px;
    text-align: start;
}

.sp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.sp-list li {
    position: relative;
    padding: 10px 0;
    padding-inline-start: 26px;
    padding-inline-end: 0;
    border-bottom: 1px solid rgba(21, 33, 71, 0.05);
    font-size: 15px;
    color: #374151;
    line-height: 1.65;
    text-align: start;
}

[dir="rtl"] .sp-list li {
    padding: 10px 26px 10px 0;
}

[dir="ltr"] .sp-list li {
    padding: 10px 0 10px 26px;
    text-align: left;
}

.sp-list li:last-child {
    border-bottom: none;
}

.sp-list li::before {
    content: '';
    position: absolute;
    top: 17px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cc945b;
}

[dir="rtl"] .sp-list li::before {
    right: 0;
    left: auto;
}

[dir="ltr"] .sp-list li::before {
    left: 0;
    right: auto;
}

.sp-list-grid {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 32px;
}

.sp-list-grid li {
    position: relative;
    padding: 6px 0;
    padding-inline-start: 22px;
    padding-inline-end: 0;
    font-size: 14.5px;
    color: #374151;
    line-height: 1.6;
    text-align: start;
}

[dir="rtl"] .sp-list-grid li {
    padding-right: 22px;
    padding-left: 0;
}

[dir="ltr"] .sp-list-grid li {
    padding-left: 22px;
    padding-right: 0;
    text-align: left;
}

.sp-list-grid li::before {
    content: '';
    position: absolute;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cc945b;
}

[dir="rtl"] .sp-list-grid li::before {
    right: 0;
    left: auto;
}

[dir="ltr"] .sp-list-grid li::before {
    left: 0;
    right: auto;
}

.sp-numbered-block {
    margin-bottom: 28px;
    background: #fff;
    border: 1px solid rgba(21, 33, 71, 0.07);
    border-inline-start: 3px solid #cc945b;
    border-radius: 6px;
    overflow: hidden;
}

[dir="rtl"] .sp-numbered-block {
    border-right: 3px solid #cc945b;
    border-left: 1px solid rgba(21, 33, 71, 0.07);
}

[dir="ltr"] .sp-numbered-block {
    border-left: 3px solid #cc945b;
    border-right: 1px solid rgba(21, 33, 71, 0.07);
}

.sp-numbered-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: #faf4ee;
    border-bottom: 1px solid rgba(204, 148, 91, 0.15);
}

.sp-numbered-block-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #152147;
    color: #cc945b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    font-family: 'TheSans', sans-serif;
}

.sp-numbered-block-title {
    font-size: 16px;
    font-weight: 700;
    color: #152147;
    margin: 0;
    font-family: 'TheSans', sans-serif;
}

.sp-numbered-block-body {
    padding: 20px 24px;
}

.sp-feature-card {
    background: #fff;
    border: 1px solid rgba(204, 148, 91, 0.20);
    border-radius: 8px;
    padding: 22px 24px;
    margin-bottom: 18px;
}

.sp-feature-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #cc945b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'TheSans', sans-serif;
}

.sp-feature-card-title i {
    font-size: 18px;
}

.sp-divider {
    border: none;
    border-top: 1px solid rgba(204, 148, 91, 0.20);
    margin: 36px 0;
}

.sp-cta {
    background: #152147;
    border-radius: 8px;
    padding: 36px 44px;
    text-align: center;
    margin-top: 16px;
}

.sp-cta h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    font-family: 'TheSans', sans-serif;
    margin-bottom: 8px;
}

.sp-cta p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14.5px;
    margin-bottom: 22px;
}

.sp-cta .lexpro-btn a {
    display: inline-block;
    padding: 12px 34px;
    background: #cc945b;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.sp-cta .lexpro-btn a:hover {
    background: #b07a45;
}

/* ===== Sidebar Services & Sectors List Styling (Original Design with Current Gold) ===== */
.widget-category ul li a {
    padding: 14px 26px !important;
    width: 100% !important;
    display: inline-block !important;
    margin-bottom: 14px !important;
    border-radius: 5px !important;
    position: relative !important;
    z-index: 1 !important;
    transition: 0.5s !important;
    text-transform: capitalize !important;
    font-size: 16px !important;
    color: #616161 !important;
    font-weight: 400 !important;
    background-color: #ffffff !important;
    border: none !important;
}

.widget-category ul li a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: #cc945b !important;
    z-index: -1;
    border-radius: 5px;
    transition: 0.5s ease;
}

html[dir="rtl"] .widget-category ul li a:before,
body.rtl .widget-category ul li a:before {
    right: 50%;
    left: auto;
}

html[dir="ltr"] .widget-category ul li a:before,
body.ltr .widget-category ul li a:before {
    left: 50%;
    right: auto;
}

.widget-category ul li a:hover {
    color: #ffffff !important;
}

.widget-category ul li a:hover:before {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
}

.widget-category ul li a img {
    margin-left: 12px;
    margin-right: 0;
    transition: 0.5s;
    vertical-align: middle;
}

html[dir="ltr"] .widget-category ul li a img {
    margin-right: 12px;
    margin-left: 0;
}

.widget-category ul li a:hover img,
.widget-category ul li a.active img {
    filter: brightness(0) invert(1) !important;
}

.widget-category ul li i {
    display: inline-block;
    font-size: 17px;
    opacity: 0;
    transition: 0.5s;
    line-height: 1.4;
}

html[dir="rtl"] .widget-category ul li i {
    float: left;
}

html[dir="ltr"] .widget-category ul li i {
    float: right;
}

.widget-category ul li a:hover i {
    opacity: 1 !important;
    color: #ffffff !important;
}

.widget-sidber-content h4::before {
    background-color: #cc945b !important;
}

.sp-sidebar-sectors .widget-category ul li a.active,
.sp-sidebar-services .widget-category ul li a.active {
    background-color: #cc945b !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

.sp-sidebar-sectors .widget-category ul li a.active i,
.sp-sidebar-services .widget-category ul li a.active i {
    opacity: 1 !important;
    color: #ffffff !important;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
    .vvq-stats {
        flex-direction: column;
        padding: 24px;
    }
    
    .vvq-stat-item {
        border-left: none;
        border-bottom: 1px solid rgba(21, 33, 71,0.08);
        padding: 16px 0;
    }
    
    .vvq-stat-item:last-child {
        border-bottom: none;
    }
    
    .vvq-quality-list {
        grid-template-columns: 1fr;
    }
    
    .hwp-intro {
        padding: 20px 20px;
        font-size: 15.5px;
    }
    
    .hwp-phase-body {
        padding: 24px 20px;
    }
    
    .hwp-list {
        grid-template-columns: 1fr;
    }
    
    .hwp-cta {
        padding: 28px 24px;
    }
    
    .hwp-phase-num {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .vp-cta {
        padding: 24px 20px;
    }
    
    .vp-principles li {
        gap: 14px;
    }
    
    .val-grid {
        grid-template-columns: 1fr;
    }
    
    .val-cta {
        padding: 24px 20px;
    }
    
    .qp-principles {
        grid-template-columns: 1fr;
    }
    
    .qp-cta {
        padding: 24px 20px;
    }
    
    .sp-stats-bar {
        grid-template-columns: 1fr;
    }
    
    .sp-stat {
        border-left: none;
        border-bottom: 1px solid rgba(204, 148, 91, 0.20);
    }
    
    .sp-stat:last-child {
        border-bottom: none;
    }
    
    .sp-list-grid {
        grid-template-columns: 1fr;
    }
    
    .sp-cta {
        padding: 24px 20px;
    }
    
    .sp-intro {
        padding: 18px 20px;
        font-size: 15px;
    }
}
.vvq-quality-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url(../images/logo-dot.webp?v=3) center / contain no-repeat;
}
.vvq-vision-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url(../images/logo-dot.webp?v=3) center / contain no-repeat;
}
.service-icon .bi{
    font-size: 45px;
    color: #152147;
}
.single-service-box:hover .service-icon .bi{
    font-size: 45px;
    color: #cc945b;
}

/* ===== Simplified Clean How We Protect Section ===== */
.service-area.style-two {
    padding: 90px 0;
    position: relative;
    background-color: #152147;
}

.service-area.style-two .service-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(204, 148, 91, 0.25);
    border-radius: 0;
    margin-bottom: 0;
    padding: 24px 0;
    position: relative;
    transition: all 0.3s ease;
}

.service-area.style-two .service-box:last-child {
    border-bottom: none;
}

.service-area.style-two .service-box::after,
.service-area.style-two .service-box::before {
    display: none !important;
}

.service-area.style-two .service-box:hover,
.service-area.style-two .service-box.active {
    background: transparent;
    border-color: rgba(204, 148, 91, 0.5);
    transform: none;
    box-shadow: none;
}

.service-area.style-two .service-box .service-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.service-area.style-two .service-box .service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: none;
}

.service-area.style-two .service-box:hover .service-icon img,
.service-area.style-two .service-box.active .service-icon img,
.service-area.style-two .service-box .service-icon:hover img {
    transform: scale(1.10);
    filter: brightness(0) invert(1) !important;
}

.service-area.style-two .service-box:hover .service-icon i,
.service-area.style-two .service-box.active .service-icon i {
    color: #ffffff !important;
}

.service-area.style-two .service-title {
    flex: 1;
    padding: 0 8px;
}

.service-area.style-two .service-title h2.title {
    margin: 0 0 6px 0;
}

.service-area.style-two .service-title h2.title a {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    padding: 0;
    transition: color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.service-area.style-two .service-box:hover .service-title h2.title a,
.service-area.style-two .service-box.active .service-title h2.title a {
    color: #cc945b;
}

.service-area.style-two .service-title p.description_text {
    font-size: 15px;
    line-height: 1.7;
    color: #BDC3D3;
    margin: 0;
}

.service-area.style-two .service-btn a {
    display: inline-block;
}

.service-area.style-two .service-btn a i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    line-height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(204, 148, 91, 0.3);
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.service-area.style-two .service-box:hover .service-btn a i,
.service-area.style-two .service-box.active .service-btn a i,
.service-area.style-two .service-btn a:hover i {
    background: #cc945b !important;
    color: #ffffff !important;
    border-color: #cc945b !important;
    transform: translateX(-4px);
}

/* ===== Luxury Mobile Header & Menu Matching Desktop ===== */
.mobile-menu-area {
    background-color: #152147 !important;
    padding: 10px 0 !important;
    position: relative;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(204, 148, 91, 0.2);
}

.mean-container .mean-bar {
    background: #152147 !important;
    min-height: 50px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.mobile-logo {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    padding: 5px 15px !important;
    z-index: 1000;
}

.mobile-logo img,
.mobile-logo a img {
    max-height: 42px !important;
    width: auto !important;
    object-fit: contain;
}

.mean-container a.meanmenu-reveal {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    float: left !important;
    margin: 5px 15px !important;
    padding: 9px 8px !important;
    width: 34px !important;
    height: 30px !important;
    color: #cc945b !important;
    border: 1px solid rgba(204, 148, 91, 0.45) !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

.mean-container a.meanmenu-reveal span {
    background: #cc945b !important;
    height: 2px !important;
    margin-top: 3px !important;
    width: 18px !important;
    display: block !important;
}

.mean-container a.meanmenu-reveal span:first-child {
    margin-top: 0 !important;
}

.mean-container .mean-nav {
    background: #0f162c !important;
    margin-top: 10px !important;
    border-top: 1px solid rgba(204, 148, 91, 0.25) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4) !important;
    float: right !important;
    width: 100% !important;
}

.mean-container .mean-nav ul {
    background: transparent !important;
    padding: 8px 0 !important;
}

.mean-container .mean-nav ul li {
    background: transparent !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    float: right !important;
    width: 100% !important;
}

.mean-container .mean-nav ul li:first-child {
    border-top: none !important;
}

.mean-container .mean-nav ul li a {
    background: transparent !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 13px 20px !important;
    text-align: right !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.25s ease !important;
}

.mean-container .mean-nav ul li a:hover,
.mean-container .mean-nav ul li a:active {
    background: rgba(204, 148, 91, 0.12) !important;
    color: #cc945b !important;
    padding-right: 25px !important;
}

.mean-container .mean-nav ul li.mobile-btn-item {
    padding: 14px 20px 18px !important;
    border-top: 1px solid rgba(204, 148, 91, 0.2) !important;
}

.mean-container .mean-nav ul li a.mobile-consultation-btn {
    background-color: #cc945b !important;
    color: #ffffff !important;
    text-align: center !important;
    border-radius: 8px !important;
    padding: 13px 20px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    display: block !important;
    margin: 0 !important;
    box-shadow: 0 4px 15px rgba(204, 148, 91, 0.35) !important;
    border: none !important;
}

.mean-container .mean-nav ul li a.mobile-consultation-btn:hover {
    background-color: #b37e49 !important;
    color: #ffffff !important;
    padding-right: 20px !important;
    transform: translateY(-1px);
}

/* ===== Unified Hero Subtitle Badge & Headings Hierarchy ===== */
.style-one .hero-content .hero-pill {
    display: inline-flex !important;
    align-items: center !important;
    max-width: 100% !important;
    margin: 0 0 24px !important;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    text-transform: none !important;
    color: #E3E8F5 !important;
    font-weight: 500 !important;
    border-radius: 30px !important;
    background-color: rgba(21, 33, 71, 0.92) !important;
    border: 1px solid rgba(204, 148, 91, 0.4) !important;
    padding: 8px 24px !important;
    position: relative !important;
    z-index: 1 !important;
    white-space: normal !important;
}

.style-one .hero-content .hero-pill::before,
.style-one .hero-content h1::before,
.style-one .hero-content h1::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
}

.style-one .hero-content h1 {
    font-size: 62px !important;
    line-height: 80px !important;
    color: #E3E8F5 !important;
    font-weight: 600 !important;
    margin: 0 0 20px 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: block !important;
    max-width: 100% !important;
    box-shadow: none !important;
}

.style-one .hero-content h1 span {
    display: inline-block;
    color: #cc945b !important;
}

@media (max-width: 991px) {
    .style-one .hero-content h1 {
        font-size: 38px !important;
        line-height: 52px !important;
    }
}

@media (max-width: 767px) {
    .style-one .hero-content h1 {
        font-size: 28px !important;
        line-height: 40px !important;
    }
}

/* Section Titles (H2) */
.section_title h2 {
    font-size: 38px;
    line-height: 50px;
    color: #152147;
    font-weight: 700;
    margin: 0 0 15px;
}
.service-area.style-one .section_title h2,
.case-study-area.style-one .section_title h2,
.blog-area.style-one .section_title h2,
.about-area.style-one .section_title h2,
.service-area.style-two .section_title h2 {
    font-size: 38px;
    line-height: 50px;
    color: #152147;
    font-weight: 700;
    margin: 0 0 15px;
}

@media (max-width: 767px) {
    .section_title h2,
    .service-area.style-one .section_title h2,
    .case-study-area.style-one .section_title h2,
    .blog-area.style-one .section_title h2,
    .about-area.style-one .section_title h2,
    .service-area.style-two .section_title h2 {
        font-size: 26px;
        line-height: 36px;
    }
}

/* Card Titles (H3) */
.single-service-box .service-content h3,
.single-service-box .service-content h3 a {
    font-size: 20px;
    font-weight: 600;
    color: #152147;
    margin-bottom: 12px;
    line-height: 1.4;
}
.service-box .service-title h3.title,
.service-box .service-title h3.title a {
    font-size: 22px;
    font-weight: 600;
    color: #152147;
    margin-bottom: 10px;
}
.single-blog-box .blog-content h3,
.single-blog-box .blog-content h3 a {
    font-size: 18px;
    font-weight: 600;
    color: #152147;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Footer Contact Title (H2) */
.footer-area.style-one .footer-contact-title h2.fc-main-title {
    font-size: 32px;
    color: #ffffff;
    font-weight: 600;
    margin: 20px 0 45px;
    text-transform: none;
}

/* Breadcrumb & Inner Page Titles (H1) */
.breadcumb-content h1,
.breadcumb-title h1,
.rts-section-title h1 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}
.rts-section-title h1 {
    color: #152147;
}
@media (max-width: 768px) {
    .breadcumb-content h1,
    .breadcumb-title h1,
    .rts-section-title h1 {
        font-size: 26px;
        line-height: 36px;
    }
}

/* ===== Clean 4-Column Professional Sectors Component (No Hover Jump, No Stroke) ===== */
.sectors-luxury-area {
    padding: 60px 0 70px;
    background: #f8fafc;
    position: relative;
}

.sector-header-row {
    border-bottom: none !important;
    padding-bottom: 8px;
}

.sector-header-box {
    text-align: start !important;
}

.sector-header-box .section_title h2 {
    font-size: 30px;
    font-weight: 800;
    color: #152147;
    line-height: 1.25;
    margin: 0 0 8px 0;
}

.sector-title-sub {
    font-size: 15.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    max-width: 650px;
}

.luxury-sector-card {
    padding: 0;
}

.luxury-sector-box {
    display: block !important;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #152147;
    box-shadow: 0 4px 16px rgba(21, 33, 71, 0.09);
    border: none !important; /* No Stroke */
    text-decoration: none !important;
}

.luxury-sector-img-wrap {
    position: relative;
    height: 310px;
    width: 100%;
    overflow: hidden;
    background: #152147;
}

.luxury-sector-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
}

.luxury-sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 33, 71, 0.05) 0%, rgba(21, 33, 71, 0.45) 45%, rgba(21, 33, 71, 0.96) 88%, #152147 100%);
    pointer-events: none;
    z-index: 1;
}

.luxury-sector-badge {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    background: rgba(21, 33, 71, 0.88);
    backdrop-filter: blur(6px);
    color: #cc945b;
    border: none !important; /* No Stroke */
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 700;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.luxury-sector-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 16px 16px;
    z-index: 2;
    text-align: start !important;
}

.luxury-sector-title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 6px 0;
}

.luxury-sector-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12.5px;
    line-height: 1.5;
    margin: 0 0 8px 0;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.luxury-sector-link-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cc945b;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .sector-header-box .section_title h2 {
        font-size: 24px;
    }
    .luxury-sector-img-wrap {
        height: 280px;
    }
    .sector-header-row {
        margin-bottom: 12px !important;
    }
}

/* ===== Universal High-Contrast Button System Across Entire Platform ===== */

/* 1. All Gold Platform Buttons (Lexpro, Prolegal, Service, About, Hero, Project, Consultation) */
.lexpro-btn a,
.prolegal-btn a,
.header-button .lexpro-btn a,
.header-button a,
.service-area.style-two .service-button a,
.service-button a,
.about-area .about-btn a,
.about-btn a,
.hero-btn a,
.project-section-btn a,
.pricing-btn a,
.mobile-consultation-btn,
.cf-btn--primary,
.contact-form-btn button,
button.cf-btn,
.btn-primary {
    background-color: #cc945b !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent !important;
}

/* Background animation bubbles / pseudo elements */
.lexpro-btn a span,
.prolegal-btn a span,
.header-button .lexpro-btn a span,
.service-area.style-two .service-button a:before,
.service-button a:before,
.about-area.style-two .about-btn a:before,
.about-btn a:before,
.hero-btn a:before,
.project-area.style-one .project-section-btn a:before,
.pricing-btn a:before {
    background-color: #152147 !important; /* Dark Navy bubble */
    background: #152147 !important;
    z-index: -1 !important;
    opacity: 1 !important;
}

/* Universal Hover State for All Gold Buttons */
.lexpro-btn a:hover,
.prolegal-btn a:hover,
.header-button .lexpro-btn a:hover,
.header-button a:hover,
.slider-btn .lexpro-btn a:hover,
.service-area.style-two .service-button a:hover,
.service-button a:hover,
.about-area .about-btn a:hover,
.about-btn a:hover,
.hero-btn a:hover,
.project-section-btn a:hover,
.pricing-btn a:hover,
.mobile-consultation-btn:hover,
.cf-btn--primary:hover,
.contact-form-btn button:hover,
button.cf-btn:hover,
.btn-primary:hover,
.sp-cta .lexpro-btn a:hover,
.hwp-cta .lexpro-btn a:hover,
.vp-cta .lexpro-btn a:hover,
.val-cta .lexpro-btn a:hover,
.qp-cta .lexpro-btn a:hover {
    background-color: #152147 !important; /* Rich Dark Navy */
    background: #152147 !important;
    color: #cc945b !important;             /* Crisp High-Contrast Bright Gold Text */
    border-color: #cc945b !important;
    box-shadow: 0 6px 20px rgba(21, 33, 71, 0.3) !important;
}

/* Header Consultation Button Specifics */
.header-button .lexpro-btn a {
    padding: 13px 24px !important;
    font-size: 15px !important;
    box-shadow: 0 4px 14px rgba(204, 148, 91, 0.25) !important;
}

.header-button .lexpro-btn a:hover {
    box-shadow: 0 6px 18px rgba(21, 33, 71, 0.35) !important;
}

/* Mobile Menu Consultation Button */
.mobile-consultation-btn {
    display: block !important;
    text-align: center !important;
    padding: 12px 20px !important;
    margin: 12px 15px !important;
}

/* Outline Buttons */
.cf-btn--outline,
.btn-outline,
.btn-outline-primary {
    border: 2px solid #cc945b !important;
    color: #cc945b !important;
    background: transparent !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    transition: all 0.35s ease !important;
    text-decoration: none !important;
}

.cf-btn--outline:hover,
.btn-outline:hover,
.btn-outline-primary:hover {
    background: #152147 !important;
    border-color: #152147 !important;
    color: #cc945b !important;
}

/* ===== Single Service Box Hover Fix (White Text on Dark Hover) ===== */
.single-service-box:hover,
.style-one .single-service-box:hover,
.style-inner .single-service-box:hover {
    background-color: #152147 !important;
    background: #152147 !important;
}

.single-service-box:hover .service-content h1,
.single-service-box:hover .service-content h2,
.single-service-box:hover .service-content h3,
.single-service-box:hover .service-content h4,
.style-one .single-service-box:hover .service-content h1,
.style-one .single-service-box:hover .service-content h2,
.style-one .single-service-box:hover .service-content h3,
.style-one .single-service-box:hover .service-content h4,
.style-inner .single-service-box:hover .service-content h1,
.style-inner .single-service-box:hover .service-content h2,
.style-inner .single-service-box:hover .service-content h3,
.style-inner .single-service-box:hover .service-content h4 {
    color: #ffffff !important; /* Force pure white title on hover */
}

.single-service-box:hover .service-content p,
.style-one .single-service-box:hover .service-content p,
.style-inner .single-service-box:hover .service-content p {
    color: #CBD5E1 !important; /* Crisp readable light text on hover */
}

.single-service-box:hover .service-icon i,
.style-one .single-service-box:hover .service-icon i,
.style-inner .single-service-box:hover .service-icon i {
    color: #cc945b !important; /* Gold icon on hover */
}

.single-service-box:hover .service-icon-arrow a,
.style-one .single-service-box:hover .service-icon-arrow a,
.style-inner .single-service-box:hover .service-icon-arrow a {
    color: #cc945b !important; /* Bright Gold arrow on hover */
}

.single-service-box:hover .service-icon-arrow a i,
.style-one .single-service-box:hover .service-icon-arrow a i,
.style-inner .single-service-box:hover .service-icon-arrow a i {
    color: #cc945b !important;
}

/* ===== Luxury Contact Page Styling (Simplified & Clean Navy) ===== */
.contact-area.style-two {
    background-color: #f8fafc;
    padding: 70px 0;
}

.luxury-contact-sidebar {
    background: #152147;
    border-radius: 14px;
    padding: 38px 32px;
    box-shadow: 0 10px 30px rgba(21, 33, 71, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.luxury-contact-main-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.luxury-contact-subtitle {
    font-size: 14.5px;
    color: #BDC3D3;
    line-height: 1.65;
}

.luxury-contact-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 28px 0;
}

.luxury-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease;
}

.luxury-contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.luxury-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(204, 148, 91, 0.15);
    border: 1px solid rgba(204, 148, 91, 0.3);
    color: #cc945b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.luxury-contact-item:hover .luxury-contact-icon {
    background: #cc945b;
    color: #152147;
    border-color: #cc945b;
}

.luxury-contact-info {
    flex: 1;
    min-width: 0;
    text-align: start !important;
}

.luxury-contact-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #cc945b;
    margin-bottom: 3px;
    text-align: start !important;
}

.luxury-contact-val {
    margin: 0;
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
    text-align: start !important;
}

.luxury-contact-val a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
    display: inline-block;
    text-align: start !important;
}

.luxury-contact-val a:hover {
    color: #cc945b;
}

.luxury-contact-social {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.luxury-social-title {
    display: block;
    font-size: 13px;
    color: #BDC3D3;
    font-weight: 600;
    margin-bottom: 12px;
}

.luxury-social-list {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.luxury-social-list a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(204, 148, 91, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.luxury-social-list a:hover {
    background: #cc945b;
    color: #152147;
    border-color: #cc945b;
    transform: translateY(-2px);
}

/* Luxury Contact Form Wrap */
.luxury-contact-form-wrap {
    background: #ffffff;
    border: 1px solid rgba(21, 33, 71, 0.08);
    border-radius: 14px;
    padding: 38px 34px;
    box-shadow: 0 10px 30px rgba(21, 33, 71, 0.05);
}

.luxury-contact-form-wrap .contact-form-title h2 {
    font-size: 24px;
    font-weight: 800;
    color: #152147;
}

.luxury-form-input {
    width: 100%;
    border: 1px solid rgba(21, 33, 71, 0.14) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    color: #152147 !important;
    background: #fafbfc !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}

.luxury-form-input:focus {
    border-color: #cc945b !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(204, 148, 91, 0.15) !important;
}

.luxury-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 36px;
    background: #cc945b;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 15.5px;
    border: 1px solid #cc945b;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.luxury-submit-btn:hover {
    background: #152147;
    border-color: #152147;
    color: #cc945b !important;
}

@media (max-width: 767px) {
    .luxury-contact-sidebar,
    .luxury-contact-form-wrap {
        padding: 24px 18px;
    }
}

/* ===== Footer Spacing & Layout Optimization ===== */
.footer-area.style-one .footer-info {
    row-gap: 24px;
}

.footer-area.style-one .footer-title h2 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    position: relative;
    padding-bottom: 10px;
}

.footer-area.style-one .footer-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 28px;
    height: 2px;
    background: #cc945b;
    border-radius: 2px;
}

.footer-area.style-one .footer-list-item {
    padding-top: 0 !important;
}

.footer-area.style-one .footer-list-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-area.style-one .footer-list-item ul li {
    margin-bottom: 12px !important;
}

.footer-area.style-one .footer-list-item ul li:last-child {
    margin-bottom: 0 !important;
}

.footer-area.style-one .footer-list-item ul li a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 14.5px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.72) !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}

.footer-area.style-one .footer-list-item ul li a i {
    font-size: 12px !important;
    color: #cc945b !important;
    margin: 0 !important;
    transition: transform 0.25s ease !important;
    flex-shrink: 0;
}

[dir="rtl"] .footer-area.style-one .footer-list-item ul li a:hover i {
    transform: translateX(-4px) !important;
}

[dir="ltr"] .footer-area.style-one .footer-list-item ul li a:hover i {
    transform: translateX(4px) !important;
}

.footer-area.style-one .footer-list-item ul li a:hover {
    color: #cc945b !important;
}

/* ===== Luxury Video Showcase Section ===== */
.luxury-video-section {
    position: relative;
    padding: 60px 0 70px;
}

.luxury-video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-image: url(../images/home-1/hero-bg-v.webp);
    background-size: cover;
    background-position: center center;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 16px 40px rgba(21, 33, 71, 0.18);
    border: 1px solid rgba(204, 148, 91, 0.25);
}

.luxury-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 33, 71, 0.88) 0%, rgba(21, 33, 71, 0.72) 100%);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.luxury-video-content {
    position: relative;
    z-index: 2;
    padding: 40px 24px;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Luxury Play Button */
.luxury-play-btn {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    cursor: pointer;
}

.luxury-play-pulse {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(204, 148, 91, 0.55);
    animation: luxury-pulse 2.2s infinite ease-out;
}

.luxury-play-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #cc945b;
    color: #152147;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding-inline-start: 4px; /* optical alignment for triangle */
    box-shadow: 0 8px 25px rgba(204, 148, 91, 0.45);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.luxury-play-btn:hover .luxury-play-circle {
    background: #ffffff;
    color: #152147;
    transform: scale(1.12);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4);
}

.luxury-video-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.4;
    font-family: 'TheSans', sans-serif;
}

.luxury-video-sub {
    font-size: 15px;
    color: #CBD5E1;
    margin: 0;
    line-height: 1.6;
}

@keyframes luxury-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.25);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .luxury-video-card {
        min-height: 300px;
    }
    .luxury-video-title {
        font-size: 20px;
    }
    .luxury-play-btn {
        width: 66px;
        height: 66px;
    }
    .luxury-play-circle {
        width: 62px;
        height: 62px;
        font-size: 20px;
    }
}

/* ===== Header & Mobile Logo Enhancements ===== */
.header-logo {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.header-logo a {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.header-logo .site-main-logo {
    max-height: 76px !important;
    width: auto !important;
    object-fit: contain !important;
    transition: none !important;
    transform: none !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25)) !important;
}

.header-logo a:hover .site-main-logo,
.header-logo a:hover,
.header-logo .site-main-logo:hover {
    transform: none !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25)) !important;
    opacity: 1 !important;
}

.mobile-logo {
    display: inline-flex !important;
    align-items: center !important;
}

.mobile-logo .logo_img {
    display: inline-flex !important;
    align-items: center !important;
}

.mobile-logo img,
.mobile-logo a img {
    max-height: 40px !important;
    width: auto !important;
    object-fit: contain !important;
}

/* ===== Luxury Video Modal ===== */
.luxury-video-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxury-video-modal.is-active {
    display: flex;
    opacity: 1;
}

.luxury-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 16, 35, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.luxury-video-modal-dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 920px;
    background: #0d1527;
    border: 1px solid rgba(204, 148, 91, 0.45);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(204, 148, 91, 0.25);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.luxury-video-modal.is-active .luxury-video-modal-dialog {
    transform: scale(1);
}

.luxury-video-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(204, 148, 91, 0.5);
    background: rgba(21, 33, 71, 0.85);
    color: #cc945b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[dir="rtl"] .luxury-video-modal-close {
    right: auto;
    left: 14px;
}

.luxury-video-modal-close:hover {
    background: #cc945b;
    color: #152147;
    transform: rotate(90deg) scale(1.08);
}

.luxury-video-modal-body {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.luxury-video-modal-body video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    outline: none;
}

@media (max-width: 767px) {
    .luxury-video-modal {
        padding: 10px;
    }
    .luxury-video-modal-dialog {
        border-radius: 12px;
    }
    .luxury-video-modal-close {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    [dir="rtl"] .luxury-video-modal-close {
        right: auto;
        left: 8px;
    }
}

/* ===== Universal Page Headers & Hero Background with Primary Brand Overlay ===== */
.style-one.hero-area {
    position: relative !important;
    background: url('/front/assets/images/header-bg.webp') center center / cover no-repeat !important;
    z-index: 1 !important;
    overflow: hidden !important;
}

.style-one.hero-area::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, rgba(21, 33, 71, 0.90) 0%, rgba(15, 23, 50, 0.82) 100%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.style-one.hero-area .container {
    position: relative !important;
    z-index: 2 !important;
}

.style-one .hero-content h1 {
    color: #ffffff !important;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35) !important;
}

.style-one .hero-content p {
    color: rgba(235, 240, 252, 0.95) !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    max-width: 820px !important;
}

.style-one.hero-area .hero-thumb img {
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.45));
    transition: transform 0.3s ease;
}

/* All Inner Page Headers (Breadcrumb Banner) */
.breadcumb-area {
    position: relative !important;
    background: url('/front/assets/images/header-bg.webp') center center / cover no-repeat !important;
    z-index: 1 !important;
    overflow: hidden !important;
}

.breadcumb-area::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, rgba(21, 33, 71, 0.90) 0%, rgba(15, 23, 50, 0.84) 100%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.breadcumb-area .container {
    position: relative !important;
    z-index: 2 !important;
}

.breadcumb-content h1,
.breadcumb-content h2,
.breadcumb-content h3,
.breadcumb-content h4 {
    position: relative !important;
    z-index: 2 !important;
    color: #ffffff !important;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45) !important;
}

.breadcumb-content ul li,
.breadcumb-content ul li a {
    position: relative !important;
    z-index: 2 !important;
    color: rgba(230, 235, 248, 0.92) !important;
}

/* ===== Universal Footer: Matching Screenshot Layout with Header Background ===== */
.footer-area.style-one {
    position: relative !important;
    background: linear-gradient(135deg, rgba(21, 33, 71, 0.90) 0%, rgba(15, 23, 50, 0.82) 100%),
                url('/front/assets/images/header-bg.webp') center center / cover no-repeat !important;
    z-index: 1 !important;
    overflow: hidden !important;
}

/* Secondary Color Layer above Menu & QR Code (matching reference image, shorter height) */
.footer-area.style-one::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 66% !important;
    min-width: 760px !important;
    max-width: 100% !important;
    height: 115px !important;
    background: linear-gradient(90deg, rgba(175, 120, 65, 0.84) 0%, rgba(204, 148, 91, 0.90) 100%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

[dir="ltr"] .footer-area.style-one::before {
    right: auto !important;
    left: 0 !important;
    background: linear-gradient(90deg, rgba(204, 148, 91, 0.90) 0%, rgba(175, 120, 65, 0.84) 100%) !important;
}

.footer-area.style-one .container {
    position: relative !important;
    z-index: 2 !important;
}

/* Floating Golden Logo Mark on the left (matches screenshot) */
.footer-area.style-one .footer-shape {
    position: absolute !important;
    left: 60px !important;
    bottom: 215px !important;
    top: auto !important;
    right: auto !important;
    z-index: 4 !important;
    display: block !important;
    animation: floatScales 3s ease-in-out infinite !important;
    pointer-events: none !important;
}

[dir="ltr"] .footer-area.style-one .footer-shape {
    left: auto !important;
    right: 60px !important;
}

.footer-area.style-one .footer-shape img {
    width: 185px !important;
    max-width: 185px !important;
    height: auto !important;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5)) !important;
}

/* Contact Card (تواصل معنا) matching screenshot */
.footer-area.style-one .footer-contact-area {
    background: #0d1532 !important;
    border: 1px solid rgba(204, 148, 91, 0.28) !important;
    border-top: none !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5) !important;
    padding: 65px 32px 45px !important;
    position: relative !important;
    z-index: 3 !important;
}

.footer-area.style-one .footer-contact-area::before {
    display: none !important;
}

.footer-area.style-one .footer-contact-title h2,
.footer-area.style-one .fc-main-title {
    font-size: 28px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin: 0 0 28px 0 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.footer-area.style-one .fc-info-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 25px !important;
}

.footer-area.style-one .fc-info-list li {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
}

.footer-area.style-one .fc-icon {
    width: 40px !important;
    height: 40px !important;
    background: rgba(204, 148, 91, 0.16) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    color: #cc945b !important;
    font-size: 16px !important;
}

.footer-area.style-one .fc-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
}

.footer-area.style-one .fc-label {
    font-size: 12px !important;
    color: #cc945b !important;
    opacity: 0.9 !important;
    font-weight: 500 !important;
}

.footer-area.style-one .fc-value {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer-area.style-one .fc-value:hover {
    color: #cc945b !important;
}

.footer-area.style-one .fc-social {
    display: flex !important;
    gap: 12px !important;
    justify-content: center !important;
    margin-top: 15px !important;
}

.footer-area.style-one .fc-social a {
    width: 36px !important;
    height: 36px !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.footer-area.style-one .fc-social a:hover {
    background: #cc945b !important;
    border-color: #cc945b !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* Columns styling (النطاق المهني، من نحن، QR Code) */
.footer-area.style-one .row.footer-info {
    padding: 115px 0 85px !important;
}

.footer-area.style-one .footer-title h2 {
    font-size: 22px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    position: relative !important;
    padding-bottom: 12px !important;
    display: inline-block !important;
}

.footer-area.style-one .footer-title h2::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    width: 45px !important;
    height: 2px !important;
    background: #cc945b !important;
}

[dir="ltr"] .footer-area.style-one .footer-title h2::after {
    right: auto !important;
    left: 0 !important;
}

.footer-area.style-one .footer-list-item {
    padding-top: 25px !important;
}

.footer-area.style-one .footer-list-item ul li {
    margin-bottom: 12px !important;
}

.footer-area.style-one .footer-list-item ul li a {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.footer-area.style-one .footer-list-item ul li a:hover {
    color: #cc945b !important;
    transform: translateX(-4px) !important;
}

[dir="ltr"] .footer-area.style-one .footer-list-item ul li a:hover {
    transform: translateX(4px) !important;
}

.footer-area.style-one .footer-list-item ul li a i {
    color: #cc945b !important;
    font-size: 14px !important;
    margin: 0 !important;
}

.footer-area.style-one .footer-call-box {
    background: #ffffff !important;
    padding: 10px !important;
    border-radius: 8px !important;
    display: inline-block !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
}

.footer-area.style-one .footer-call-box img {
    width: 155px !important;
    height: auto !important;
    display: block !important;
}

/* Footer Bottom Bar */
.footer-area.style-one .footer-bottom-area {
    position: relative !important;
    z-index: 2 !important;
    background: rgba(10, 16, 36, 0.94) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 18px 0 !important;
}

.footer-area.style-one .footer-bottom-content p,
.footer-area.style-one .footer-bottom-right a {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 14px !important;
}

.footer-area.style-one .footer-bottom-right a:hover {
    color: #cc945b !important;
}

@media (max-width: 1199px) {
    .footer-area.style-one .footer-shape {
        display: none !important;
    }
    .footer-area.style-one .row.footer-info {
        padding: 60px 0 35px !important;
    }
    .footer-area.style-one .footer-contact-area {
        padding: 40px 20px 30px !important;
        margin-top: 30px !important;
        border-top: 1px solid rgba(204, 148, 91, 0.25) !important;
        border-radius: 8px !important;
    }
}

/* ===== Legal Services (الخدمات القانونية) Mobile Modern Redesign ===== */
@media (max-width: 991px) {
    .service-area.style-one {
        padding: 55px 0 45px !important;
    }

    .service-area.style-one .section_title h2,
    .service-area.style-one .section_title h1 {
        font-size: 26px !important;
        line-height: 1.35 !important;
        margin-bottom: 25px !important;
    }

    .service-area.style-one .single-service-box {
        background: #ffffff !important;
        border: 1px solid rgba(21, 33, 71, 0.09) !important;
        border-top: 3px solid #cc945b !important;
        border-radius: 16px !important;
        padding: 24px 20px 20px !important;
        margin-bottom: 20px !important;
        box-shadow: none !important;
        position: relative !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
        display: flex !important;
        flex-direction: column !important;
        text-align: right !important;
    }

    [dir="ltr"] .service-area.style-one .single-service-box {
        text-align: left !important;
    }

    /* Restoring & styling the Icon on Mobile (previously hidden by display:none) */
    .service-area.style-one .single-service-box .service-icon {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 52px !important;
        height: 52px !important;
        line-height: normal !important;
        background: rgba(204, 148, 91, 0.12) !important;
        border: 1px solid rgba(204, 148, 91, 0.25) !important;
        border-radius: 14px !important;
        position: static !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        margin: 0 0 16px 0 !important;
        flex-shrink: 0 !important;
        transition: all 0.3s ease !important;
    }

    .service-area.style-one .single-service-box .service-icon i,
    .service-area.style-one .single-service-box .service-icon .bi {
        font-size: 24px !important;
        color: #cc945b !important;
        line-height: 1 !important;
        margin: 0 !important;
    }

    /* Service Title */
    .service-area.style-one .single-service-box .service-content h1,
    .service-area.style-one .single-service-box .service-content h2,
    .service-area.style-one .single-service-box .service-content h3 {
        font-size: 18px !important;
        font-weight: 700 !important;
        color: #152147 !important;
        line-height: 1.45 !important;
        margin: 0 0 10px 0 !important;
        padding: 0 !important;
    }

    /* Service Description */
    .service-area.style-one .single-service-box .service-content p {
        font-size: 13.5px !important;
        line-height: 1.65 !important;
        color: #64748b !important;
        margin: 0 0 16px 0 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    /* Read More / Arrow */
    .service-area.style-one .single-service-box .service-icon-arrow {
        margin-top: auto !important;
        padding-top: 12px !important;
        border-top: 1px solid rgba(21, 33, 71, 0.06) !important;
    }

    .service-area.style-one .single-service-box .service-icon-arrow a {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        font-size: 13.5px !important;
        font-weight: 600 !important;
        color: #cc945b !important;
        text-decoration: none !important;
        transition: all 0.25s ease !important;
    }

    .service-area.style-one .single-service-box .service-icon-arrow a i {
        font-size: 13px !important;
        transition: transform 0.25s ease !important;
    }

    .service-area.style-one .single-service-box .service-icon-arrow a:hover i {
        transform: translateX(-4px) !important;
    }

    [dir="ltr"] .service-area.style-one .single-service-box .service-icon-arrow a:hover i {
        transform: translateX(4px) !important;
    }

    /* Hide background dot image on mobile so it doesn't clutter */
    .service-area.style-one .single-service-box .service-dot {
        display: none !important;
    }

    /* Clean subtle tap response without shadow */
    .service-area.style-one .single-service-box:active,
    .service-area.style-one .single-service-box:hover {
        transform: translateY(-2px) !important;
        box-shadow: none !important;
    }
}

.service-area.style-one .single-service-box,
.service-area.style-one .single-service-box:hover,
.service-area.style-one .single-service-box .service-icon {
    box-shadow: none !important;
    filter: none !important;
}

/* =====================================================================
   Mobile Header — Redesigned
   Navy & gold identity, sticky bar, animated dropdown panel.
   Logical properties keep it correct in both RTL and LTR.
   ===================================================================== */
.mhd {
    position: sticky;
    top: 0;
    z-index: 9998;
    padding-top: env(safe-area-inset-top, 0px);
    background: #152147;
    border-bottom: 1px solid rgba(204, 148, 91, 0.28);
}

.mhd.is-scrolled {
    box-shadow: 0 2px 12px rgba(5, 10, 26, 0.30);
}

.mhd__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 76px;
    padding-inline: 16px;
}

.mhd.is-scrolled .mhd__bar {
    min-height: 62px;
}

.mhd__logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.mhd__logo img {
    height: 62px;
    width: auto;
    object-fit: contain;
}

.mhd.is-scrolled .mhd__logo img {
    height: 52px;
}

.mhd__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-inline-start: auto;
}

.mhd__lang {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 40px;
    padding-inline: 13px;
    border-radius: 10px;
    color: #E3E8F5;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    border: 1px solid rgba(227, 232, 245, 0.18);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.mhd__lang i {
    font-size: 13px;
    color: #cc945b;
}

.mhd__lang:hover,
.mhd__lang:focus-visible {
    color: #cc945b;
    border-color: rgba(204, 148, 91, 0.55);
}

.mhd__toggle {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 1px solid rgba(204, 148, 91, 0.45);
    border-radius: 10px;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.mhd__toggle:hover {
    border-color: rgba(204, 148, 91, 0.75);
    background: rgba(204, 148, 91, 0.10);
}

.mhd__toggle:focus-visible {
    outline: 2px solid #cc945b;
    outline-offset: 2px;
}

.mhd__toggle-bars {
    position: relative;
    display: block;
    width: 20px;
    height: 14px;
}

.mhd__toggle-bars i {
    position: absolute;
    inset-inline: 0;
    height: 2px;
    border-radius: 2px;
    background: #cc945b;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.25s ease,
                top 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.mhd__toggle-bars i:nth-child(1) { top: 0; }
.mhd__toggle-bars i:nth-child(2) { top: 6px; }
.mhd__toggle-bars i:nth-child(3) { top: 12px; }

.mhd.is-open .mhd__toggle-bars i:nth-child(1) { top: 6px; transform: rotate(45deg); }
.mhd.is-open .mhd__toggle-bars i:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
.mhd.is-open .mhd__toggle-bars i:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* --- Panel: animated accordion (grid-rows trick, no JS measuring) --- */
.mhd__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.mhd.is-open .mhd__panel {
    grid-template-rows: 1fr;
}

.mhd__panel-clip {
    overflow: hidden;
    min-height: 0;
}

.mhd__nav {
    padding: 4px 14px 18px;
    border-top: 1px solid rgba(204, 148, 91, 0.22);
    background: #152147;
}

.mhd__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mhd__list li {
    border-bottom: 1px solid rgba(227, 232, 245, 0.07);
}

.mhd__list li:last-child {
    border-bottom: 0;
}

.mhd__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 52px;
    padding-inline: 10px;
    color: #E3E8F5;
    text-decoration: none;
    font-size: 15.5px;
    font-weight: 600;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.mhd__list a::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f104";
    font-size: 12px;
    color: rgba(204, 148, 91, 0.75);
    transition: transform 0.3s ease;
}

[dir="ltr"] .mhd__list a::after {
    content: "\f105";
}

.mhd__list a:hover,
.mhd__list a:focus-visible {
    color: #cc945b;
    background: rgba(204, 148, 91, 0.08);
}

.mhd__list a:hover::after {
    transform: translateX(-3px);
}

[dir="ltr"] .mhd__list a:hover::after {
    transform: translateX(3px);
}

/* --- Foot: CTA + phone quick action --- */
.mhd__foot {
    display: grid;
    gap: 12px;
    margin-top: 6px;
    padding: 16px 10px 2px;
    border-top: 1px solid rgba(204, 148, 91, 0.25);
}

.mhd__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    border-radius: 12px;
    background: #cc945b;
    color: #ffffff;
    font-size: 15.5px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.25s ease;
}

.mhd__cta i {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.mhd__cta:hover,
.mhd__cta:focus-visible {
    background: #b37e49;
    color: #ffffff;
}

.mhd__cta:hover i {
    transform: translateX(-3px);
}

[dir="ltr"] .mhd__cta:hover i {
    transform: translateX(3px);
}

.mhd__cta:active {
    transform: translateY(1px);
}

.mhd__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    border-radius: 12px;
    color: #E3E8F5;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(227, 232, 245, 0.18);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.mhd__phone i {
    font-size: 13px;
    color: #cc945b;
}

.mhd__phone:hover,
.mhd__phone:focus-visible {
    color: #cc945b;
    border-color: rgba(204, 148, 91, 0.5);
}

/* --- Authored entrance: items settle in as the panel opens --- */
.mhd__list li,
.mhd__foot {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.mhd.is-open .mhd__list li,
.mhd.is-open .mhd__foot {
    opacity: 1;
    transform: none;
}

.mhd.is-open .mhd__list li:nth-child(1) { transition-delay: 0.05s; }
.mhd.is-open .mhd__list li:nth-child(2) { transition-delay: 0.10s; }
.mhd.is-open .mhd__list li:nth-child(3) { transition-delay: 0.15s; }
.mhd.is-open .mhd__list li:nth-child(4) { transition-delay: 0.20s; }
.mhd.is-open .mhd__list li:nth-child(5) { transition-delay: 0.25s; }
.mhd.is-open .mhd__foot { transition-delay: 0.30s; }

@media (prefers-reduced-motion: reduce) {
    .mhd,
    .mhd *,
    .mhd *::after {
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* =====================================================================
   Hero on mobile — organized, centered, no dead space
   (theme hides the thumb below 992px; we re-show it and tidy the stack)
   ===================================================================== */
@media (max-width: 991px) {
    /* Kill the fixed 850px desktop height; size by content */
    .style-one.hero-area {
        height: auto !important;
        min-height: 0 !important;
        padding: 32px 0 44px;
    }

    .style-one.hero-area .hero-content {
        padding-top: 0 !important;
        text-align: center;
    }

    .style-one.hero-area .hero-content .hero-pill {
        margin: 0 auto 18px !important;
        font-size: 13.5px !important;
        padding: 8px 20px !important;
    }

    .style-one.hero-area .hero-content h1 {
        margin: 0 auto 14px !important;
    }

    .style-one.hero-area .hero-content p {
        margin: 0 auto !important;
    }

    /* Decorative animated divider — dead space on small screens */
    .style-one.hero-area .hero-content .lines {
        display: none !important;
    }

    /* Center the CTA and give it a comfortable full-width shape */
    .style-one.hero-area .hero-button {
        display: flex !important;
        justify-content: center;
        margin-top: 22px;
    }

    .style-one.hero-area .hero-button .lexpro-btn {
        width: 100%;
        max-width: 320px;
    }

    .style-one.hero-area .hero-button .lexpro-btn a {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 52px;
    }

    /* Slide image under the text */
    .style-one.hero-area .hero-thumb-wrapper {
        display: block !important;
        padding-top: 26px;
        padding-bottom: 0;
    }

    .style-one.hero-area .hero-thumb img {
        display: block !important;
        width: 100% !important;
        max-width: 420px;
        margin-inline: auto;
    }
}














