/* ============================================================
   Shubbak Design System — Intro Site
   ============================================================ */

*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --font: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(13, 42, 42, 0.06);
    --shadow-md: 0 8px 24px rgba(13, 42, 42, 0.10);
    --shadow-lg: 0 16px 48px rgba(13, 42, 42, 0.14);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 80px;
}

/* ---- Reset & Base ---- */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    direction: rtl;
    text-align: right;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

body.page-loading {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

a:hover { color: var(--primary-500); }

button { cursor: pointer; border: none; background: transparent; }
button:focus { outline: none; }

ul { list-style: none; margin: 0; padding: 0; }
p  { margin: 0; }
img { max-width: 100%; height: auto; display: block; }

:focus { outline: none; box-shadow: none !important; }

/* ---- Typography Scale ---- */
h1, .h1 { font-size: clamp(2rem, 5vw, 3rem);   font-weight: 800; line-height: 1.2; color: var(--primary-900); }
h2, .h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; line-height: 1.25; color: var(--primary-800); }
h3, .h3 { font-size: clamp(1.5rem, 3vw, 2rem);   font-weight: 700; line-height: 1.3;  color: var(--primary-800); }
h4, .h4 { font-size: 1.5rem;  font-weight: 600; line-height: 1.35; color: var(--primary-700); }
h5, .h5 { font-size: 1.25rem; font-weight: 600; line-height: 1.4;  color: var(--primary-700); }
h6, .h6 { font-size: 1.125rem;font-weight: 600; line-height: 1.4;  color: var(--primary-600); }

.text-caption { font-size: 0.875rem; font-weight: 400; color: var(--gray); }
.text-small   { font-size: 0.75rem;  font-weight: 400; color: var(--gray); }
.text-tiny    { font-size: 0.625rem; font-weight: 300; color: var(--gray); }

.main-color  { color: var(--primary-500) !important; }
.grey-color  { color: var(--gray); }
.accent-color { color: var(--secondary-600) !important; }

/* ---- Layout Utilities ---- */
.sec-padd {
    padding-top: 80px;
    padding-bottom: 80px;
}

.body-content {
    margin-top: var(--header-h);
}

.mb-20 { margin-bottom: 20px; }
.f-b   { font-weight: 600; }

/* ---- Section Label ---- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary-700);
    background: var(--secondary-50);
    border: 1px solid var(--secondary-200);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-500);
}

.the_title {
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: center;
}

.the_title p {
    margin-top: 12px;
    color: var(--gray);
    font-size: 1.0625rem;
}

/* ---- Buttons ---- */
.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--secondary-500);
    color: var(--primary-900) !important;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 600;
    width: auto;
    min-width: 160px;
    padding: 0 28px;
    height: 52px;
    border-radius: var(--radius-sm);
    border: none;
    text-align: center;
    margin: 24px auto 0;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 14px rgba(232, 199, 83, 0.35);
}

.btn-main:hover {
    background: var(--secondary-400);
    color: var(--primary-900) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 199, 83, 0.45);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--primary-500) !important;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0 28px;
    height: 52px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary-300);
    transition: all var(--transition);
}

.btn-outline:hover {
    background: var(--primary-500);
    color: var(--white) !important;
    border-color: var(--primary-500);
}

/* ============================================================
   HEADER
   ============================================================ */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--primary-100);
    padding: 0;
    transition: box-shadow var(--transition);
}

header.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 24px;
}

.the-logo {
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

.nav_bar {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav_bar li a {
    display: block;
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--primary-700);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav_bar li a:hover,
.nav_bar li a.active {
    color: var(--primary-500);
    background: var(--primary-50);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-600);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: all var(--transition);
}

.lang-toggle:hover {
    border-color: var(--primary-400);
    background: var(--primary-50);
}

.lang-toggle i { font-size: 0.875rem; color: var(--secondary-600); }

.dropdown-menu {
    padding: 6px;
    border: 1px solid var(--primary-100);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    min-width: 120px;
}

.dropdown-menu .dropdown-item {
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-700);
    padding: 8px 14px;
}

.dropdown-menu .dropdown-item:hover {
    background: var(--primary-50);
    color: var(--primary-500);
}

.dropdown-toggle::after { display: none; }

/* Mobile menu toggle */
.close-open-nav {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--primary-200);
    background: var(--white);
    cursor: pointer;
}

.close-open-nav > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
}

.close-open-nav > div span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-600);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.close-open-nav.active span:first-of-type { transform: translateY(6px) rotate(45deg); }
.close-open-nav.active span:nth-child(2)  { opacity: 0; }
.close-open-nav.active span:last-of-type  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 42, 42, 0.5);
    z-index: 90;
    opacity: 0;
    transition: opacity var(--transition);
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================================
   HERO / SLIDER
   ============================================================ */
.hero-section {
    position: relative;
    overflow: hidden;
}

.owl-index .item { height: 100%; }

.info_owl {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    max-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-600) 50%, var(--primary-500) 100%);
    --hero-gap: clamp(32px, 5vw, 56px);
}

.info_owl::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(232, 199, 83, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.info_owl::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
    z-index: 2;
}

/* Hero grid — text & image swap sides via dir on <html> */
.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--hero-gap);
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 3;
    padding-block: 60px;
}

html[dir="ltr"] .hero-inner {
    grid-template-areas: "hero-text hero-image";
}

html[dir="rtl"] .hero-inner {
    grid-template-areas: "hero-image hero-text";
}

.hero-content {
    grid-area: hero-text;
    position: relative;
    z-index: 3;
}

.ads_wol {
    max-width: 560px;
    width: 100%;
}

html[dir="ltr"] .ads_wol {
    margin-inline-end: auto;
}

html[dir="rtl"] .ads_wol {
    margin-inline-start: auto;
}

.ads_wol h3 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
}

.ads_wol p {
    font-size: 1.0625rem;
    color: var(--primary-100);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-cta .btn-main {
    margin: 0;
    background: var(--secondary-500);
}

.hero-cta .btn-outline {
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-cta .btn-outline:hover {
    background: var(--white);
    color: var(--primary-700) !important;
    border-color: var(--white);
}

.img_owl_index {
    grid-area: hero-image;
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4 / 3;
    max-height: 440px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

/* Pull image toward text — same gap in both directions */
html[dir="ltr"] .img_owl_index {
    margin-inline-end: auto;
}

html[dir="rtl"] .img_owl_index {
    margin-inline-start: auto;
}

html[dir="ltr"] .img_owl_index::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 42, 42, 0.2) 0%, transparent 45%);
    z-index: 1;
    pointer-events: none;
}

html[dir="rtl"] .img_owl_index::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(13, 42, 42, 0.2) 0%, transparent 45%);
    z-index: 1;
    pointer-events: none;
}

.img_owl_index img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Owl carousel — brands (default) */
.owl-carousel { direction: ltr; }

/* Hero slider controls — arrows on sides, dots centered at bottom */
.owl-index.owl-carousel {
    position: relative;
}

.owl-index .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: auto;
    margin: 0;
}

.owl-index .owl-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    margin: 0;
    transition: all var(--transition);
}

.owl-index .owl-dot.active {
    width: 28px;
    background: var(--secondary-500);
}

.owl-index .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: auto;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    width: 100%;
    margin: 0;
    z-index: 5;
    pointer-events: none;
}

.owl-index .owl-nav > div {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--white);
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}

.owl-index .owl-nav > div:hover {
    background: var(--secondary-500);
    border-color: var(--secondary-500);
    color: var(--primary-900);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
    background: var(--white);
}

.info_JM {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-inline-end: 32px;
}

.info_JM h4 {
    margin-bottom: 20px;
}

.info_JM p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--gray);
}

.img_info_JM {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.img_info_JM .img-primary {
    width: 72%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.img_info_JM .img-secondary {
    width: 55%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
    aspect-ratio: 3/4;
    border: 4px solid var(--white);
}

.img_info_JM::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--secondary-100);
    border-radius: 50%;
    top: -20px;
    right: -20px;
    z-index: 0;
}

.img_info_JM::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--primary-100);
    border-radius: var(--radius-md);
    bottom: 40px;
    right: 10%;
    z-index: 0;
    transform: rotate(15deg);
}

/* ============================================================
   SERVICES
   ============================================================ */
.bacg_section {
    background: linear-gradient(160deg, var(--primary-700) 0%, var(--primary-800) 100%);
    position: relative;
    overflow: hidden;
}

.bacg_section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 199, 83, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.bacg_section .the_title h3 { color: var(--white); }
.bacg_section .the_title p  { color: var(--primary-200); }

.box-servess {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    margin: 12px 0;
    min-height: calc(100% - 24px);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid transparent;
}

.box-servess:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-200);
}

.box-servess .service-icon {
    width: 56px;
    height: 56px;
    background: var(--secondary-50);
    border: 1px solid var(--secondary-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background var(--transition);
}

.box-servess:hover .service-icon {
    background: var(--secondary-500);
}

.box-servess .service-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.box-servess h6 {
    margin-bottom: 10px;
    color: var(--primary-800);
}

.box-servess p {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.7;
}

.box-servess::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-500), var(--secondary-300));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.box-servess:hover::after {
    transform: scaleX(1);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how_work {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
    padding: 20px 0;
}

.how_work::before {
    content: '';
    position: absolute;
    top: 65px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-200), var(--secondary-300), var(--primary-200), transparent);
    z-index: 0;
}

.how_work li {
    flex: 0 0 160px;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}

.how_work .step-number {
    width: 36px;
    height: 36px;
    background: var(--secondary-500);
    color: var(--primary-900);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 2px 8px rgba(232, 199, 83, 0.4);
}

.how_work img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 4px solid var(--primary-100);
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition), transform var(--transition);
}

.how_work li:hover img {
    border-color: var(--secondary-400);
    transform: scale(1.05);
}

.how_work li div {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-700);
    line-height: 1.4;
}

/* ============================================================
   FAQ
   ============================================================ */
.bacg_section2 {
    background: var(--primary-50);
}

.nav-pills {
    gap: 8px;
    margin-bottom: 32px !important;
}

.nav-link {
    background: var(--white);
    color: var(--primary-600) !important;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0 24px;
    height: 44px;
    line-height: 44px;
    border-radius: 50px !important;
    border: 1px solid var(--primary-100);
    margin: 4px;
    transition: all var(--transition);
}

.nav-link:hover {
    background: var(--primary-100);
    color: var(--primary-700) !important;
}

.nav-link.active {
    background: var(--primary-500) !important;
    color: var(--white) !important;
    border-color: var(--primary-500);
    box-shadow: 0 4px 12px rgba(31, 91, 91, 0.25);
}

.accordion .card {
    margin: 12px 0;
    border: 1px solid var(--primary-100);
    border-radius: var(--radius-md) !important;
    box-shadow: none;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow var(--transition);
}

.accordion .card:hover {
    box-shadow: var(--shadow-sm);
}

.accordion .card-header {
    padding: 0;
    background: var(--white);
    border: none;
}

.accordion .card-header button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: start;
    padding: 20px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-800);
    gap: 16px;
    transition: color var(--transition);
}

.accordion .card-header button::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--primary-400);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.accordion .card-header button[aria-expanded="true"] {
    color: var(--primary-500);
}

.accordion .card-header button[aria-expanded="true"]::after {
    transform: rotate(180deg);
    color: var(--secondary-600);
}

.card-body {
    padding: 0 24px 20px;
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.8;
    border-top: 1px solid var(--primary-50);
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-section {
    background: var(--white);
}

.owl-brands .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--primary-100);
    height: 100px;
    transition: all var(--transition);
}

.owl-brands .item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-color: var(--secondary-200);
}

.owl-brands .item img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: all var(--transition);
}

.owl-brands .item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-50) 100%);
}

.form-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--primary-100);
}

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

.form-control {
    font-family: var(--font);
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--primary-50);
    border: 1.5px solid var(--primary-100);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    height: auto;
    transition: border-color var(--transition), background var(--transition);
}

.form-control::placeholder {
    color: var(--primary-300);
}

.form-control:focus {
    background: var(--white);
    border-color: var(--primary-400);
    box-shadow: 0 0 0 3px rgba(31, 91, 91, 0.1) !important;
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.form-content .btn-main {
    width: 100%;
    margin-top: 8px;
}

.error_meassages {
    display: block;
    margin-top: 4px;
    font-size: 0.8125rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer {
    background: var(--primary-900);
    color: var(--primary-200);
    padding-top: 64px;
}

.footer-brand .logo_footer {
    max-height: 48px;
    width: auto;
    margin-bottom: 20px;
}

.social-m {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-m li a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary-100);
    transition: all var(--transition);
}

.social-m li a:hover {
    background: var(--secondary-500);
    border-color: var(--secondary-500);
    color: var(--primary-900);
    transform: translateY(-2px);
}

.Tfooter {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.Tfooter::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 2px;
    background: var(--secondary-500);
    border-radius: 2px;
}

.link-footer li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
}

.link-footer li i {
    color: var(--secondary-500);
    font-size: 0.75rem;
}

.link-footer li a {
    color: var(--primary-200);
    transition: color var(--transition);
}

.link-footer li a:hover {
    color: var(--secondary-400);
}

.under_footer {
    margin-top: 48px;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.875rem;
    color: var(--primary-300);
}

.under_footer a {
    color: var(--secondary-400);
    font-weight: 500;
}

.under_footer a:hover {
    color: var(--secondary-300);
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-page {
    padding: 48px 0 80px;
}

.privacy-page h1 {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--secondary-500);
    display: inline-block;
}

.privacy-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--primary-100);
    box-shadow: var(--shadow-sm);
    line-height: 1.9;
    color: var(--gray);
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--primary-800);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader img {
    width: 80px;
    animation: pulse-logo 1.2s ease-in-out infinite;
}

@keyframes pulse-logo {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.08); opacity: 0.8; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--primary-50); }
::-webkit-scrollbar-thumb { background: var(--primary-300); border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-500); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    :root { --header-h: 68px; }

    .close-open-nav { display: flex; }

    .nav_bar {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: var(--primary-800);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 32px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 95;
        overflow-y: auto;
    }

    .nav_bar.active { transform: translateX(0); }

    .nav_bar li a {
        color: var(--primary-100);
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .nav_bar li a:hover,
    .nav_bar li a.active {
        color: var(--white);
        background: rgba(255, 255, 255, 0.1);
    }

    .nav_bar li a.active {
        border-inline-start: 3px solid var(--secondary-500);
    }

    .hero-inner {
        grid-template-columns: 1fr;
        grid-template-areas: "hero-text";
        gap: 0;
        padding-block: 48px;
    }

    .hero-content {
        grid-area: hero-text;
    }

    .ads_wol {
        max-width: 100%;
        margin-inline: 0 !important;
    }

    .img_owl_index {
        position: absolute;
        inset: 0;
        grid-area: unset;
        width: 100%;
        max-width: none;
        max-height: none;
        aspect-ratio: unset;
        height: 100%;
        margin: 0 !important;
        border-radius: 0;
        opacity: 0.25;
    }

    .info_owl {
        min-height: 520px;
        max-height: none;
    }

    .ads_wol h3 { font-size: 1.75rem; }

    .how_work::before { display: none; }

    .how_work li { flex: 0 0 140px; }

    .info_JM { padding-inline-end: 0; margin-bottom: 40px; }

    .form-content { padding: 28px 20px; }
}

@media (max-width: 767.98px) {
    .sec-padd { padding-top: 56px; padding-bottom: 56px; }

    .the_title { margin-bottom: 32px; }

    .how_work { gap: 16px; }
    .how_work li { flex: 0 0 calc(50% - 16px); }

    .img_info_JM { min-height: 300px; }
    .img_info_JM .img-primary { width: 80%; }
    .img_info_JM .img-secondary { width: 60%; }

    .owl-index .owl-dots { bottom: 36px; }
    .owl-index .owl-nav { padding: 0 12px; }
    .owl-index .owl-nav > div { width: 38px; height: 38px; font-size: 12px; }
}

@media (max-width: 575.98px) {
    .hero-cta { flex-direction: column; }
    .hero-cta .btn-main,
    .hero-cta .btn-outline { width: 100%; }
}
