/* ═══════════════════════════════════════════════════════════
   QAWAFEL THEME — Brand colors: Deep Purple + Teal
   Version: 1.0
═══════════════════════════════════════════════════════════ */

/* ── Scrollbar override ──────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--q-bg, #F7F5FF);
}

::-webkit-scrollbar-thumb {
    background: var(--q-purple-light, #5B45B0);
    border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--q-purple, #2D1B69);
}

/* ── Root Variables ──────────────────────────────────── */
:root {
    --q-purple: #2D1B69;
    --q-purple-mid: #3D2B8E;
    --q-purple-light: #5B45B0;
    --q-purple-pale: #EDE9FF;
    --q-teal: #00B4A6;
    --q-teal-dark: #009688;
    --q-teal-light: #00D4C4;
    --q-teal-pale: #E0FAF8;
    --q-white: #FFFFFF;
    --q-bg: #F7F5FF;
    --q-bg-alt: #F0FDFB;
    --q-text: #1A1040;
    --q-text-muted: #6B648A;
    --q-border: #E5E0F5;
    --q-shadow: 0 4px 24px rgba(45, 27, 105, .10);
    --q-shadow-md: 0 8px 40px rgba(45, 27, 105, .15);
    --q-radius: 16px;
    --q-radius-sm: 10px;
    --q-radius-lg: 24px;
    --q-transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/* ── Base Reset Overrides ─────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif !important;
    background: var(--q-white);
    color: var(--q-text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ═══════════════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════════════ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--q-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
    gap: 1.5rem;
}

.preloader .loader-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.preloader .loader-box img {
    width: 120px;
    filter: brightness(0) invert(1);
}

.preloader__brand {
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
    letter-spacing: .1em;
}

.preloader .progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, .15);
    border-radius: 99px;
    overflow: hidden;
}

.preloader .progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--q-teal), var(--q-teal-light));
    border-radius: 99px;
    animation: q-load 2.5s ease-in-out forwards;
}

@keyframes q-load {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

/* ═══════════════════════════════════════════════════════
   HEADER / NAVBAR
═══════════════════════════════════════════════════════ */
header {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--q-transition), box-shadow var(--q-transition), padding var(--q-transition);
    padding: 0;
}

header.scrolled {
    background: var(--q-purple);
    box-shadow: 0 2px 30px rgba(45, 27, 105, .35);
}

header .navbar {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 1.1rem 1.5rem;
    gap: 1.5rem;
    transition: padding var(--q-transition);
    max-width: 1280px;
    margin: 0 auto;
}

header.scrolled .navbar {
    padding-top: .75rem;
    padding-bottom: .75rem;
}

/* Logo */
header .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

header .logo img {
    height: 60px;
    width: auto;
    transition: height var(--q-transition);
}

header.scrolled .logo img {
    height: 44px;
}

header .logo-dark-ver {
    display: block;
    filter: brightness(0) invert(1);
}

header .logo-light-ver {
    display: none;
}

/* Nav links */
header .nav_links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: .2rem;
    flex: 1;
    justify-content: center;
}

header .nav_links li a,
header .nav_links li .nav-link {
    color: rgba(255, 255, 255, .88);
    font-size: .95rem;
    font-weight: 500;
    padding: .55rem 1rem;
    border-radius: var(--q-radius-sm);
    transition: all var(--q-transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: .3rem;
}

header .nav_links li a:hover,
header .nav_links li .nav-link:hover,
header .nav_links li a.active,
header .nav_links li .nav-link.active {
    color: var(--q-white);
    background: rgba(0, 180, 166, .18);
}

header .nav_links li .nav-link.active {
    color: var(--q-teal-light);
}

/* Dropdown */
header .nav_links .dropdown-menu {
    background: var(--q-white);
    border: 1px solid var(--q-border);
    border-radius: var(--q-radius);
    box-shadow: var(--q-shadow-md);
    padding: .6rem;
    min-width: 210px;
    margin-top: .4rem;
    animation: q-dropdown-in .2s ease;
}

@keyframes q-dropdown-in {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

header .nav_links .dropdown-item {
    color: var(--q-text);
    font-size: .9rem;
    font-weight: 500;
    padding: .6rem 1rem;
    border-radius: var(--q-radius-sm);
    transition: all var(--q-transition);
}

header .nav_links .dropdown-item:hover {
    background: var(--q-purple-pale);
    color: var(--q-purple);
}

header .nav_links .dropdown-toggle::after {
    border: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .7rem;
    margin-inline-start: .3rem;
    transition: transform var(--q-transition);
}

header .nav_links .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Actions */
header .actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}

header .login-btn {
    background: var(--q-teal);
    color: var(--q-white);
    font-size: .9rem;
    font-weight: 600;
    padding: .55rem 1.4rem;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    transition: all var(--q-transition);
    white-space: nowrap;
}

header .login-btn:hover {
    background: var(--q-teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 180, 166, .35);
}

header .lang-btn {
    color: rgba(255, 255, 255, .88);
    font-size: .88rem;
    font-weight: 500;
    padding: .5rem .9rem;
    border-radius: 99px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: all var(--q-transition);
    display: flex;
    align-items: center;
    gap: .3rem;
}

header .lang-btn:hover {
    background: rgba(255, 255, 255, .22);
    color: var(--q-white);
}

/* Hamburger */
header .toggler {
    display: none;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    color: var(--q-white);
    width: 42px;
    height: 42px;
    border-radius: var(--q-radius-sm);
    font-size: 1.1rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all var(--q-transition);
}

header .toggler:hover {
    background: rgba(255, 255, 255, .25);
}

.lang-mobile {
    display: none !important;
}

/* ── Compact desktop nav (1101px – 1380px) ────────── */
@media (min-width: 1101px) and (max-width: 1380px) {
    header .navbar {
        gap: .75rem;
    }

    header .nav_links {
        gap: 0;
    }

    header .nav_links li a,
    header .nav_links li .nav-link {
        padding: .45rem .6rem;
        font-size: .85rem;
    }

    header .login-btn {
        padding: .48rem .95rem;
        font-size: .85rem;
    }

    header .lang-btn {
        padding: .42rem .7rem;
        font-size: .82rem;
    }
}

/* Mobile Nav */
@media (max-width: 1100px) {
    header .nav_links {
        position: fixed;
        top: 0;
        inset-inline-end: -100%;
        width: min(320px, 85vw);
        height: 100dvh;
        background: var(--q-purple);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 5rem 1.5rem 2rem;
        gap: .3rem;
        overflow-y: auto;
        transition: inset-inline-end .35s cubic-bezier(.4, 0, .2, 1);
        box-shadow: -8px 0 40px rgba(0, 0, 0, .25);
        z-index: 1001;
    }

    header .nav_links.open {
        inset-inline-end: 0;
    }

    header .nav_links li {
        width: 100%;
    }

    header .nav_links li a,
    header .nav_links li .nav-link {
        padding: .8rem 1.2rem;
        font-size: 1rem;
        border-radius: var(--q-radius-sm);
    }

    header .nav_links .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        background: rgba(255, 255, 255, .07);
        border: none;
        border-radius: var(--q-radius-sm);
        margin-top: .3rem;
    }

    header .nav_links .dropdown-item {
        color: rgba(255, 255, 255, .8);
        font-size: .9rem;
    }

    header .nav_links .dropdown-item:hover {
        background: rgba(255, 255, 255, .1);
        color: var(--q-white);
    }

    header .toggler {
        display: flex;
    }

    .lang-mobile {
        display: flex !important;
    }

    header .actions .lang-btn {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════
   SECTION SHARED STYLES
═══════════════════════════════════════════════════════ */
.sectionTop {
    margin-bottom: 3rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--q-teal-pale);
    color: var(--q-teal-dark);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .4rem 1.2rem;
    border-radius: 99px;
    margin-bottom: .9rem;
}

.sectionTitle {
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--q-purple);
    margin-bottom: .7rem;
    line-height: 1.3;
}

.sectionSubtitle {
    color: var(--q-text-muted);
    font-size: 1.02rem;
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   HERO V3 — Video BG
═══════════════════════════════════════════════════════ */
.hero-v2.hero-v3 {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Video */
.hero-v3__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-v3__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-v3__video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(29, 15, 66, .94) 0%,
            rgba(45, 27, 105, .80) 55%,
            rgba(29, 15, 66, .92) 100%);
}

/* ── Overlay wrapper ──────────────────────────── */
.hero-v2__overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    padding: 8rem 1.5rem 5rem;
}

/* ── Content block — single column, centered ─── */
.hero-v2__content {
    text-align: center;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Badge ───────────────────────────────────── */
.hero-v2__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0, 212, 196, .1);
    border: 1px solid rgba(0, 212, 196, .28);
    color: var(--q-teal-light);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .09em;
    padding: .35rem 1rem;
    border-radius: 99px;
    margin-bottom: 1.8rem;
}

.hero-v2__badge i {
    font-size: .68rem;
    opacity: .8;
}

/* ── Title ───────────────────────────────────── */
.hero-v2__title {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 900;
    color: var(--q-white);
    line-height: 1.2;
    margin-bottom: 0;
    text-shadow: 0 3px 24px rgba(0, 0, 0, .35);
    letter-spacing: -.01em;
}

/* ── Divider — hidden, clean look ────────────── */
.hero-v2__divider {
    display: none;
}

/* ── Description ─────────────────────────────── */
.hero-v2__desc {
    color: rgba(255, 255, 255, .72);
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 520px;
    margin-top: 1.4rem;
    margin-bottom: 0;
}

/* ── CTA Buttons ─────────────────────────────── */
.hero-v2__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.4rem;
    margin-bottom: 0;
}

.hero-v2__btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .95rem;
    font-weight: 700;
    padding: .88rem 2.2rem;
    border-radius: 99px;
    transition: all var(--q-transition);
    white-space: nowrap;
    line-height: 1;
}

.hero-v2__btn i {
    font-size: .9rem;
}

.hero-v2__btn--primary {
    background: var(--q-teal);
    color: var(--q-white);
    box-shadow: 0 6px 30px rgba(0, 180, 166, .5);
}

.hero-v2__btn--primary:hover {
    background: var(--q-teal-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 38px rgba(0, 180, 166, .55);
    color: var(--q-white);
}

.hero-v2__btn--outline {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .9);
    border: 1.5px solid rgba(255, 255, 255, .3);
    backdrop-filter: blur(10px);
}

.hero-v2__btn--outline:hover {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .6);
    transform: translateY(-3px);
    color: var(--q-white);
}

.hero-v2__btn--gold {
    background: rgba(212, 175, 55, .15);
    color: #f5d76e;
    border: 1.5px solid rgba(212, 175, 55, .45);
    backdrop-filter: blur(10px);
}

.hero-v2__btn--gold:hover {
    background: rgba(212, 175, 55, .28);
    border-color: rgba(212, 175, 55, .8);
    transform: translateY(-3px);
    color: #f5d76e;
    box-shadow: 0 8px 30px rgba(212, 175, 55, .3);
}

/* ── Trust pills ─────────────────────────────── */
.hero-v2__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-v2__trust-item {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    border-radius: 99px;
    padding: .38rem .95rem;
    color: rgba(255, 255, 255, .78);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .01em;
}

.hero-v2__trust-item i {
    color: var(--q-teal-light);
    font-size: .78rem;
}

.hero-v2__trust-sep {
    display: none;
}

/* ── Scroll arrow — subtle ───────────────────── */
.hero-v2__scroll {
    position: absolute;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    color: rgba(255, 255, 255, .35);
    font-size: .7rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color var(--q-transition);
    animation: q-bounce 2.5s ease-in-out infinite;
    text-decoration: none;
}

.hero-v2__scroll:hover {
    color: rgba(255, 255, 255, .65);
}

@keyframes q-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(7px)
    }
}

/* ── Sound button — minimal, hidden on mobile ─── */
.hero-v3__sound-btn {
    position: absolute;
    bottom: 1.8rem;
    inset-inline-end: 1.8rem;
    z-index: 2;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .45);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .82rem;
    transition: all var(--q-transition);
    backdrop-filter: blur(8px);
}

.hero-v3__sound-btn:hover {
    background: rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .8);
}

@media (max-width: 768px) {
    .hero-v3__sound-btn {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════
   STATS SECTION — Standalone cards layout
═══════════════════════════════════════════════════════ */
.stats-strip {
    background: var(--q-white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: '';
    position: absolute;
    inset-inline-start: -120px;
    top: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: var(--q-teal-pale);
    opacity: .55;
    pointer-events: none;
}

.stats-strip::after {
    content: '';
    position: absolute;
    inset-inline-end: -80px;
    bottom: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--q-purple-pale);
    opacity: .45;
    pointer-events: none;
}

.stats-strip .container {
    position: relative;
    z-index: 1;
}

.stats-strip__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.stats-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    padding: 2.5rem 1.5rem;
    background: var(--q-white);
    border: 1.5px solid var(--q-border);
    border-top: 4px solid var(--q-teal);
    border-radius: var(--q-radius);
    box-shadow: var(--q-shadow);
    transition: transform .25s, box-shadow .25s;
}

.stats-strip__item:hover {
    transform: translateY(-6px);
    box-shadow: var(--q-shadow-md);
}

.stats-strip__icon {
    font-size: 1.8rem;
    color: var(--q-teal);
    background: var(--q-teal-pale);
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.stats-strip__num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--q-purple);
    line-height: 1;
}

.stats-strip__label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--q-text-muted);
    text-align: center;
    letter-spacing: .02em;
}

/* ═══════════════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════════════ */
.sg-services {
    background: var(--q-bg);
    padding: 5rem 0;
}

/* .sg-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
} */
/* الشاشات الكبيرة (الشاشات العادية والكمبيوتر) - 3 أعمدة */
.sg-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* الشاشات المتوسطة (التابلت / أجهزة الآيباد) - عمودين */
@media (max-width: 992px) {
    .sg-services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        /* تقليل المسافة قليلاً لتناسب الشاشة */
    }
}

/* الشاشات الصغيرة (الهواتف المحمولة) - عمود واحد */
@media (max-width: 576px) {
    .sg-services__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        /* مسافة أصغر للهواتف */
    }
}

.sg-card {
    background: var(--q-white);
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    text-decoration: none;
    color: inherit;
    transition: transform .4s ease, box-shadow .4s ease, border-color .3s;
    position: relative;
    overflow: hidden;
}

/* Background image layer — Ken Burns on hover */
.sg-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--sg-bg, none);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity .55s ease, transform .75s ease;
    z-index: 0;
}

/* Gradient overlay on top of the image */
.sg-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(45, 27, 105, .88) 0%, rgba(0, 180, 166, .72) 100%);
    opacity: 0;
    transition: opacity .45s ease;
    z-index: 1;
}

/* Lift all card content above pseudo-elements */
.sg-card__icon,
.sg-card__title,
.sg-card__desc,
.sg-card__link {
    position: relative;
    z-index: 2;
}

.sg-card:hover {
    border-color: var(--q-teal);
    box-shadow: var(--q-shadow-md);
    transform: translateY(-6px);
}

.sg-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.sg-card:hover::after {
    opacity: 1;
}

/* Icon */
.sg-card__icon {
    width: 58px;
    height: 58px;
    background: var(--q-purple-pale);
    border-radius: var(--q-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--q-purple-mid);
    transition: background .35s, color .35s, transform .45s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s;
}

.sg-card:hover .sg-card__icon {
    background: rgba(255, 255, 255, .18);
    color: var(--q-white);
    transform: scale(1.18) translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

/* Text — fade to white on hover */
.sg-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--q-purple);
    transition: color .3s;
}

.sg-card:hover .sg-card__title {
    color: var(--q-white);
}

.sg-card__desc {
    font-size: .88rem;
    color: var(--q-text-muted);
    line-height: 1.6;
    flex: 1;
    transition: color .3s;
}

.sg-card:hover .sg-card__desc {
    color: rgba(255, 255, 255, .82);
}

.sg-card__link {
    font-size: .84rem;
    font-weight: 700;
    color: var(--q-teal-dark);
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-top: .4rem;
    transition: color .3s;
}

.sg-card:hover .sg-card__link {
    color: var(--q-teal-light);
}

/* Per-service background images */
[data-service="estqdam"] {
    --sg-bg: url('/site/assets/images/istqdam.png');
}

[data-service="egar"] {
    --sg-bg: url('/site/assets/images/egar.png');
}

[data-service="transfer"] {
    --sg-bg: url('/site/assets/images/transfer.png');
}

/* [data-service="renew"]   { --sg-bg: url('/site/assets/images/cv1.webp'); }
[data-service="daily"]   { --sg-bg: url('/site/assets/images/cv2.webp'); }
[data-service="musaned"] { --sg-bg: url('/site/assets/images/why.webp'); } */

/* ═══════════════════════════════════════════════════════
   MUSANED SECTION
═══════════════════════════════════════════════════════ */
.musaned-gold {
    background: linear-gradient(135deg, var(--q-purple) 0%, var(--q-purple-mid) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.musaned-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.musaned-gold .sectionTitle {
    color: var(--q-white);
}

.musaned-gold .sectionSubtitle {
    color: rgba(255, 255, 255, .7);
}

.musaned-gold .section-eyebrow {
    background: rgba(0, 212, 196, .15);
    color: var(--q-teal-light);
    border: 1px solid rgba(0, 212, 196, .3);
}

.musaned-pro {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
}

/* Badge card */
.musaned-badge-card {
    background: var(--q-white);
    border-radius: var(--q-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--q-shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.musaned-badge-card__logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--q-purple-pale);
    border-radius: var(--q-radius);
    padding: .8rem 1.4rem;
}

.musaned-badge-card__logo-text {
    text-align: start;
}

.musaned-badge-card__logo-text span {
    display: block;
    font-size: .95rem;
    font-weight: 800;
    color: var(--q-purple);
}

.musaned-badge-card__logo-text small {
    font-size: .7rem;
    color: var(--q-text-muted);
}

.musaned-badge-card__logo>i {
    font-size: 1.6rem;
    color: var(--q-purple-light);
}

.musaned-badge-card__medal i {
    font-size: 3.5rem;
    color: var(--q-teal);
}

.musaned-badge-card__level {
    background: linear-gradient(135deg, var(--q-teal), var(--q-purple-light));
    color: var(--q-white);
    font-weight: 800;
    font-size: .95rem;
    padding: .5rem 1.6rem;
    border-radius: 99px;
}

.musaned-badge-card__stars {
    display: flex;
    gap: .3rem;
    justify-content: center;
}

.musaned-badge-card__stars i {
    color: #FFB300;
    font-size: 1.1rem;
}

.musaned-badge-card__stars i.fa-regular {
    color: #ccc;
}

.musaned-badge-card__reviews {
    color: var(--q-text-muted);
    font-size: .88rem;
}

.musaned-badge-card__reviews strong {
    color: var(--q-purple);
    font-size: 1.1rem;
}

.musaned-badge-card__link {
    color: var(--q-teal-dark);
    font-weight: 700;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: color var(--q-transition);
}

.musaned-badge-card__link:hover {
    color: var(--q-purple);
}

/* Stats side */
.musaned-pro__stats {
    color: var(--q-white);
}

.musaned-stats__heading {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    color: var(--q-white);
}

.mstat-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.mstat__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
}

.mstat__label {
    font-size: .9rem;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
}

.mstat__val {
    font-size: .9rem;
    font-weight: 800;
    color: var(--q-teal-light);
}

.mstat__bar {
    height: 8px;
    background: rgba(255, 255, 255, .15);
    border-radius: 99px;
    overflow: hidden;
}

.mstat__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--q-teal), var(--q-teal-light));
    border-radius: 99px;
}

.mreview-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem;
}

.mrev-chip {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--q-radius);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.mrev-chip i {
    font-size: 1.2rem;
    color: var(--q-teal-light);
}

.mrev-chip span {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
}

.mrev-chip strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--q-white);
}

@media (max-width: 900px) {
    .musaned-pro {
        grid-template-columns: 1fr;
    }

    .musaned-badge-card {
        max-width: 340px;
        margin-inline: auto;
    }

    .mreview-chips {
        grid-template-columns: 1fr 1fr;
    }
}

/* ═══════════════════════════════════════════════════════
   EXTRA STATS
═══════════════════════════════════════════════════════ */
.extra-stats {
    background: var(--q-bg);
    padding: 4.5rem 0;
}

.extra-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.extra-stats__card {
    background: var(--q-white);
    border-radius: var(--q-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1.5px solid var(--q-border);
    transition: all var(--q-transition);
}

.extra-stats__card:hover {
    border-color: var(--q-teal);
    box-shadow: var(--q-shadow);
    transform: translateY(-3px);
}

.extra-stats__icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--q-teal-pale), var(--q-purple-pale));
    border-radius: var(--q-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--q-purple-mid);
    margin: 0 auto 1rem;
}

.extra-stats__heading {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--q-purple);
    margin-bottom: .5rem;
}

.extra-stats__text {
    font-size: .88rem;
    color: var(--q-text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════ */
.trust-bar {
    background: var(--q-white);
    border-top: 1px solid var(--q-border);
    border-bottom: 1px solid var(--q-border);
    padding: 1.4rem 0;
}

.trust-bar__label {
    text-align: center;
    font-size: .78rem;
    font-weight: 700;
    color: var(--q-text-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .8rem;
}

.trust-bar__items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: var(--q-text);
    font-size: .88rem;
    font-weight: 600;
}

.trust-bar__item i {
    color: var(--q-teal-dark);
    font-size: 1rem;
}

.trust-bar__sep {
    width: 1px;
    height: 18px;
    background: var(--q-border);
}

/* ═══════════════════════════════════════════════════════
   STEPS TIMELINE
═══════════════════════════════════════════════════════ */
.steps-timeline {
    background: var(--q-white);
    padding: 5rem 0;
}

.steps-timeline__track {
    position: relative;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.steps-timeline__line {
    position: absolute;
    top: 36px;
    inset-inline: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--q-teal) 0%, var(--q-purple-light) 100%);
    z-index: 0;
}

.steps-timeline__items {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    min-width: 700px;
}

.stl-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: .6rem;
}

.stl-step__num {
    font-size: .7rem;
    font-weight: 900;
    color: var(--q-teal-dark);
    letter-spacing: .05em;
}

.stl-step__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--q-white);
    border: 3px solid var(--q-teal);
    box-shadow: 0 0 0 4px rgba(0, 180, 166, .15);
}

.stl-step__icon {
    width: 56px;
    height: 56px;
    background: var(--q-purple-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--q-purple-mid);
    transition: all var(--q-transition);
    box-shadow: var(--q-shadow);
}

.stl-step:hover .stl-step__icon {
    background: var(--q-purple);
    color: var(--q-white);
    transform: scale(1.08);
}

.stl-step__title {
    font-size: .88rem;
    font-weight: 700;
    color: var(--q-purple);
}

.stl-step__desc {
    font-size: .78rem;
    color: var(--q-text-muted);
    line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════
   ABOUT PRO
═══════════════════════════════════════════════════════ */
.about-pro {
    background: var(--q-bg);
    padding: 5rem 0;
}

.about-pro__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-pro__img-wrap {
    position: relative;
    border-radius: var(--q-radius-lg);
    overflow: hidden;
    box-shadow: var(--q-shadow-md);
}

.about-pro__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--q-radius-lg);
}

.about-pro__float {
    position: absolute;
    background: var(--q-white);
    border-radius: var(--q-radius);
    padding: .9rem 1.2rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    box-shadow: var(--q-shadow-md);
    animation: q-float 3s ease-in-out infinite;
}

.about-pro__float--tl {
    top: 1.5rem;
    inset-inline-start: 1.5rem;
}

.about-pro__float--br {
    bottom: 1.5rem;
    inset-inline-end: 1.5rem;
    animation-delay: 1.5s;
}

@keyframes q-float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

.apf-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--q-purple-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--q-purple);
}

.apf-text strong {
    display: block;
    font-size: .95rem;
    font-weight: 800;
    color: var(--q-purple);
}

.apf-text span {
    font-size: .75rem;
    color: var(--q-text-muted);
}

.about-pro__title {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: var(--q-purple);
    margin-bottom: 1rem;
}

.about-pro__desc {
    color: var(--q-text-muted);
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.about-pro__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.apro-feat {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--q-white);
    border-radius: var(--q-radius);
    padding: 1rem 1.2rem;
    border: 1px solid var(--q-border);
    transition: all var(--q-transition);
}

.apro-feat:hover {
    border-color: var(--q-teal);
    box-shadow: var(--q-shadow);
}

.apro-feat__icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: var(--q-teal-pale);
    border-radius: var(--q-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--q-teal-dark);
}

.apro-feat strong {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: var(--q-purple);
    margin-bottom: .2rem;
}

.apro-feat p {
    font-size: .84rem;
    color: var(--q-text-muted);
    margin: 0;
}

.about-pro__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.apro-btn {
    font-size: .95rem;
    font-weight: 700;
    padding: .75rem 1.8rem;
    border-radius: 99px;
    transition: all var(--q-transition);
}

.apro-btn--primary {
    background: var(--q-teal);
    color: var(--q-white);
}

.apro-btn--primary:hover {
    background: var(--q-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 166, .3);
    color: var(--q-white);
}

.apro-btn--ghost {
    background: transparent;
    color: var(--q-purple);
    border: 2px solid var(--q-purple);
}

.apro-btn--ghost:hover {
    background: var(--q-purple);
    color: var(--q-white);
}

@media (max-width: 900px) {
    .about-pro__inner {
        grid-template-columns: 1fr;
    }

    .about-pro__visual {
        max-width: 480px;
        margin-inline: auto;
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════
   COUNTRIES / RENTAL TABS
═══════════════════════════════════════════════════════ */
.countries-section {
    background: var(--q-white);
    padding: 5rem 0;
}

.countries-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.countries-badge {
    display: inline-block;
    background: var(--q-purple-pale);
    color: var(--q-purple-mid);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    padding: .4rem 1.1rem;
    border-radius: 99px;
    margin-bottom: .8rem;
}

.countries-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--q-purple);
    margin-bottom: .6rem;
}

.countries-header p {
    color: var(--q-text-muted);
    max-width: 560px;
    margin-inline: auto;
}

/* Tab switcher */
.countries-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    margin-bottom: 2.5rem;
    background: var(--q-bg);
    border-radius: 99px;
    padding: .4rem;
    width: fit-content;
    margin-inline: auto;
}

.ctab {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1.6rem;
    border-radius: 99px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--q-text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all var(--q-transition);
}

.ctab--active {
    background: var(--q-purple);
    color: var(--q-white);
    box-shadow: var(--q-shadow);
}

.ctab:not(.ctab--active):hover {
    background: var(--q-border);
    color: var(--q-text);
}

/* Tab content */
.ctab-content {
    display: none;
}

.ctab-content--active {
    display: block;
}

/* Country cards */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.4rem;
}

.country-card {
    background: var(--q-white);
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all var(--q-transition);
    display: flex;
    flex-direction: column;
}

.country-card:hover {
    border-color: var(--q-purple-light);
    box-shadow: var(--q-shadow-md);
    transform: translateY(-4px);
}

.country-card__header {
    background: linear-gradient(135deg, var(--q-purple-pale), var(--q-teal-pale));
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
}

.country-card__flag img {
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
}

.country-card__flag--empty {
    font-size: 2rem;
    color: var(--q-purple-light);
}

.country-card__body {
    padding: 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.country-card__name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--q-purple);
}

.country-card__desc {
    font-size: .83rem;
    color: var(--q-text-muted);
    line-height: 1.5;
}

.country-card__price-wrap {
    display: flex;
    align-items: baseline;
    gap: .3rem;
    margin-top: .4rem;
}

.country-card__price-prefix {
    font-size: .78rem;
    color: var(--q-text-muted);
}

.country-card__price-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--q-purple);
}

.country-card__price-unit {
    font-size: .78rem;
    color: var(--q-text-muted);
}

.country-card__price-label {
    font-size: .73rem;
    color: var(--q-text-muted);
}

.cc-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-top: .5rem;
}

.cc-detail {
    background: var(--q-bg);
    border-radius: var(--q-radius-sm);
    padding: .5rem .7rem;
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.cc-detail i {
    font-size: .8rem;
    color: var(--q-teal-dark);
}

.cc-detail span {
    font-size: .7rem;
    color: var(--q-text-muted);
}

.cc-detail strong {
    font-size: .78rem;
    font-weight: 700;
    color: var(--q-purple);
}

.country-card__cta {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .84rem;
    font-weight: 700;
    color: var(--q-teal-dark);
    margin-top: auto;
    padding-top: .8rem;
    border-top: 1px solid var(--q-border);
}

/* Rental cards */
.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.rental-card {
    background: var(--q-white);
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: .9rem;
    position: relative;
    transition: all var(--q-transition);
}

.rental-card:hover {
    box-shadow: var(--q-shadow-md);
    transform: translateY(-3px);
}

.rental-card--featured {
    background: linear-gradient(160deg, var(--q-purple) 0%, var(--q-purple-mid) 100%);
    border-color: var(--q-purple-mid);
    color: var(--q-white);
}

.rental-card__badge {
    display: inline-flex;
    align-items: center;
    background: var(--q-teal-pale);
    color: var(--q-teal-dark);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .05em;
    padding: .3rem .9rem;
    border-radius: 99px;
    width: fit-content;
}

.rental-card__badge--gold {
    background: rgba(0, 212, 196, .2);
    color: var(--q-teal-light);
}

.rental-card--featured .rental-card__badge {
    background: rgba(255, 255, 255, .15);
    color: var(--q-white);
}

.rental-card__icon {
    font-size: 2.2rem;
    color: var(--q-teal);
}

.rental-card--featured .rental-card__icon {
    color: var(--q-teal-light);
}

.rental-card__name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--q-purple);
}

.rental-card--featured .rental-card__name {
    color: var(--q-white);
}

.rental-card__duration {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .88rem;
    color: var(--q-text-muted);
}

.rental-card--featured .rental-card__duration {
    color: rgba(255, 255, 255, .75);
}

.rental-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    flex: 1;
}

.rental-card__features li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .88rem;
    color: var(--q-text-muted);
}

.rental-card--featured .rental-card__features li {
    color: rgba(255, 255, 255, .8);
}

.rental-card__features li i {
    color: var(--q-teal);
    font-size: .85rem;
}

.rental-card--featured .rental-card__features li i {
    color: var(--q-teal-light);
}

.rental-card__feature--off {
    opacity: .5;
    text-decoration: line-through;
}

.rental-card__btn {
    display: block;
    text-align: center;
    font-size: .92rem;
    font-weight: 700;
    padding: .8rem;
    border-radius: var(--q-radius-sm);
    margin-top: auto;
    transition: all var(--q-transition);
}

.rental-card__btn--primary {
    background: var(--q-teal);
    color: var(--q-white);
}

.rental-card__btn--primary:hover {
    background: var(--q-teal-dark);
    color: var(--q-white);
}

.rental-card__btn--outline {
    background: transparent;
    color: var(--q-purple);
    border: 2px solid var(--q-border);
}

.rental-card__btn--outline:hover {
    border-color: var(--q-teal);
    color: var(--q-teal-dark);
}

.rental-card--featured .rental-card__btn--outline {
    border-color: rgba(255, 255, 255, .35);
    color: var(--q-white);
}

.rental-card--featured .rental-card__btn--outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .7);
}

/* ═══════════════════════════════════════════════════════
   CUSTOMER SERVICE SECTION
═══════════════════════════════════════════════════════ */
.cs-section {
    background: var(--q-bg);
    padding: 5rem 0;
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.cs-card {
    background: var(--q-white);
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    transition: all var(--q-transition);
}

.cs-card:hover {
    border-color: var(--q-teal);
    box-shadow: var(--q-shadow);
}

.cs-card__avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--q-purple-mid), var(--q-teal));
    color: var(--q-white);
    font-size: 1.6rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-card__info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--q-purple);
    margin-bottom: .25rem;
}

.cs-card__info p {
    font-size: .83rem;
    color: var(--q-text-muted);
    margin: 0;
}

.cs-card__actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.cs-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .84rem;
    font-weight: 700;
    padding: .6rem 1.2rem;
    border-radius: 99px;
    transition: all var(--q-transition);
    text-decoration: none;
}

.cs-btn--wa {
    background: #25D366;
    color: var(--q-white);
}

.cs-btn--wa:hover {
    background: #1DA851;
    transform: translateY(-1px);
    color: var(--q-white);
}

.cs-btn--call {
    background: var(--q-purple-pale);
    color: var(--q-purple);
    border: 1.5px solid var(--q-purple-pale);
}

.cs-btn--call:hover {
    background: var(--q-purple);
    color: var(--q-white);
}

/* Image avatar variant used on work-team page */
.cs-card__avatar-img-wrap {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--q-teal-pale);
    margin: 0 auto 1rem;
    flex-shrink: 0;
}

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

/* ═══════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════ */
.faq-section {
    background: var(--q-white);
    padding: 5rem 0;
}

.faq-list {
    max-width: 780px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.faq-item {
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius);
    overflow: hidden;
    transition: all var(--q-transition);
}

.faq-item.open {
    border-color: var(--q-teal);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: start;
    font-size: .97rem;
    font-weight: 700;
    color: var(--q-purple);
    transition: all var(--q-transition);
}

.faq-item.open .faq-q {
    background: var(--q-purple);
    color: var(--q-white);
}

.faq-q i {
    font-size: .8rem;
    flex-shrink: 0;
    transition: transform var(--q-transition);
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.open .faq-a {
    max-height: 400px;
}

.faq-a p {
    padding: 1.2rem 1.5rem;
    font-size: .9rem;
    color: var(--q-text-muted);
    line-height: 1.7;
    margin: 0;
}

.faq-section__more {
    text-align: center;
    margin-top: 2.5rem;
}

.faq-more-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    font-weight: 700;
    color: var(--q-purple);
    border: 2px solid var(--q-purple);
    padding: .7rem 2rem;
    border-radius: 99px;
    transition: all var(--q-transition);
}

.faq-more-btn:hover {
    background: var(--q-purple);
    color: var(--q-white);
}

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════ */
.contact_page {
    background: var(--q-bg);
    padding: 5rem 0;
}

.contact-new {}

.contact-new__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .contact-new__top {
        grid-template-columns: 1fr;
    }
}

.contact-new__form {
    background: var(--q-white);
    border-radius: var(--q-radius);
    padding: 2.5rem;
    border: 1.5px solid var(--q-border);
    box-shadow: var(--q-shadow);
}

.contact-pro__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

@media (max-width: 640px) {
    .contact-pro__fields {
        grid-template-columns: 1fr;
    }
}

.inputfield {
    position: relative;
}

.inputfield input,
.inputfield textarea {
    width: 100%;
    padding: 1rem 1.1rem .6rem;
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius-sm);
    background: var(--q-bg);
    font-size: .92rem;
    color: var(--q-text);
    font-family: inherit;
    outline: none;
    transition: border-color var(--q-transition);
}

.inputfield input:focus,
.inputfield textarea:focus {
    border-color: var(--q-teal);
    background: var(--q-white);
}

.inputfield textarea {
    min-height: 120px;
    resize: vertical;
}

.inputfield label {
    position: absolute;
    top: .75rem;
    inset-inline-start: 1.1rem;
    font-size: .85rem;
    color: var(--q-text-muted);
    pointer-events: none;
    transition: all var(--q-transition);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.inputfield input:focus~label,
.inputfield input:not(:placeholder-shown)~label,
.inputfield textarea:focus~label,
.inputfield textarea:not(:placeholder-shown)~label {
    top: .2rem;
    font-size: .72rem;
    color: var(--q-teal-dark);
}

.inputfield .highlight {
    display: none;
}

.contact-pro__textarea {
    margin-bottom: 1.2rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--q-purple), var(--q-purple-light));
    color: var(--q-white);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--q-radius-sm);
    cursor: pointer;
    transition: all var(--q-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
}

.btn-submit:hover {
    opacity: .9;
    transform: translateY(-1px);
    box-shadow: var(--q-shadow-md);
}

.contact-new__map-side {
    border-radius: var(--q-radius);
    overflow: hidden;
    min-height: 350px;
}

.contact-map-embed,
.contact-map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
    border-radius: var(--q-radius);
}

.cinfo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.cinfo-card {
    background: var(--q-white);
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 1.4rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all var(--q-transition);
}

.cinfo-card:hover {
    border-color: var(--q-teal);
    box-shadow: var(--q-shadow);
}

.cinfo-card__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--q-purple-pale);
    border-radius: var(--q-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--q-purple-mid);
}

.cinfo-card h4 {
    font-size: .82rem;
    font-weight: 700;
    color: var(--q-text-muted);
    margin: 0 0 .25rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.cinfo-card p {
    font-size: .9rem;
    color: var(--q-text);
    margin: 0;
}

.cinfo-card p a {
    color: var(--q-purple);
    font-weight: 600;
}

.cinfo-card p a:hover {
    color: var(--q-teal-dark);
}

/* ═══════════════════════════════════════════════════════
   REFERENCE LOGOS
═══════════════════════════════════════════════════════ */
.ref-logos {
    background: var(--q-white);
    padding: 3rem 0;
    border-top: 1px solid var(--q-border);
}

.ref-logos__heading {
    text-align: center;
    font-size: .8rem;
    font-weight: 700;
    color: var(--q-text-muted);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.ref-logos__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    opacity: .55;
    transition: opacity var(--q-transition);
}

.ref-logos__item:hover {
    opacity: 1;
}

.ref-logos__item img {
    height: 48px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter var(--q-transition);
}

.ref-logos__item:hover img {
    filter: none;
}

.ref-logos__item span {
    font-size: .72rem;
    color: var(--q-text-muted);
    text-align: center;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
    background: var(--q-purple);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--q-purple) 0%, #1A0F42 100%);
}

.site-footer>.container {
    position: relative;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.site-footer__brand img {
    height: 100px;
    filter: brightness(0) invert(1);
}

.site-footer__brand p {
    color: rgba(255, 255, 255, .6);
    font-size: .88rem;
    line-height: 1.75;
    max-width: 280px;
}

.site-footer__col h4 {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--q-teal-light);
    margin-bottom: 1.2rem;
}

.site-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.site-footer__col ul li {
    font-size: .88rem;
    color: rgba(255, 255, 255, .6);
    transition: color var(--q-transition);
}

.site-footer__col ul li a {
    color: rgba(255, 255, 255, .6);
    transition: color var(--q-transition);
}

.site-footer__col ul li a:hover,
.site-footer__col ul li:hover {
    color: var(--q-white);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0 .85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer__bottom span {
    font-size: .83rem;
    color: rgba(255, 255, 255, .45);
}

.site-footer__powered {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 40px;
    padding: .45rem .85rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: var(--q-white);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
    text-decoration: none;
    transition: transform var(--q-transition), border-color var(--q-transition), background var(--q-transition), box-shadow var(--q-transition);
    white-space: nowrap;
}

.site-footer__powered-icon {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--q-white);
}

.site-footer__powered-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.site-footer__powered-copy {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    min-width: 0;
    line-height: 1.2;
}

.site-footer__powered-label {
    color: var(--q-white);
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
}

.site-footer__powered strong {
    color: var(--q-white);
    font-size: .95rem;
    font-weight: 800;
    line-height: 1.2;
}

.site-footer__powered:hover {
    border-color: rgba(122, 188, 75, .55);
    background: rgba(255, 255, 255, .12);
    color: var(--q-white);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
    transform: translateY(-2px);
}

.site-footer__powered:hover strong {
    color: var(--q-white);
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.site-footer__social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
    transition: all var(--q-transition);
}

.site-footer__social a:hover {
    background: var(--q-teal);
    border-color: var(--q-teal);
    color: var(--q-white);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .site-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 3rem 0 2rem;
    }
}

@media (max-width: 580px) {
    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        justify-content: center;
        text-align: center;
    }

    .site-footer__powered {
        order: 3;
        width: auto;
        max-width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════
   SOCIAL SIDEBAR — Modern floating pills
═══════════════════════════════════════════════════════ */
.social-sidebar {
    position: fixed;
    inset-inline-start: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.social-sidebar__item {
    position: relative;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, .95);
    color: var(--q-purple);
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(45, 27, 105, .18);
    transition: all var(--q-transition);
    text-decoration: none;
    overflow: hidden;
}

/* Tooltip label */
.social-sidebar__item::after {
    content: attr(aria-label);
    position: absolute;
    inset-inline-start: calc(100% + .6rem);
    top: 50%;
    transform: translateY(-50%);
    background: var(--q-purple);
    color: var(--q-white);
    font-size: .72rem;
    font-weight: 700;
    padding: .3rem .75rem;
    border-radius: 99px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--q-transition), transform var(--q-transition);
    transform: translateY(-50%) translateX(-6px);
}

.social-sidebar__item:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Platform colors on hover */
.social-sidebar__item:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(45, 27, 105, .25);
    color: var(--q-white) !important;
}

.social-sidebar__item--ig {
    color: #E1306C !important;
}

.social-sidebar__item--wa {
    color: #25D366 !important;
}

.social-sidebar__item--fb {
    color: #1877F2 !important;
}

.social-sidebar__item--tw {
    color: #1DA1F2 !important;
}

.social-sidebar__item--snap {
    color: #FFFC00 !important;
}

.social-sidebar__item:hover {
    background: var(--q-purple-mid);
}

.social-sidebar__item--wa:hover {
    background: #25D366;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .35);
}

.social-sidebar__item--ig:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-sidebar__item--snap:hover {
    background: #FFFC00;
    color: #000;
    box-shadow: 0 6px 24px rgba(255, 252, 0, .3);
}

/* Vertical separator line between icons */
.social-sidebar::before {
    content: '';
    position: absolute;
    inset-inline-start: 50%;
    top: -1.5rem;
    width: 2px;
    height: 1.5rem;
    background: linear-gradient(to bottom, transparent, rgba(45, 27, 105, .2));
    transform: translateX(-50%);
}

.social-sidebar::after {
    content: '';
    position: absolute;
    inset-inline-start: 50%;
    bottom: -1.5rem;
    width: 2px;
    height: 1.5rem;
    background: linear-gradient(to top, transparent, rgba(45, 27, 105, .2));
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .social-sidebar {
        display: none;
    }
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: auto;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--q-white);
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    z-index: 900;
    transition: all var(--q-transition);
    animation: q-wa-pulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .5);
    color: var(--q-white);
}

@keyframes q-wa-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .4)
    }

    50% {
        box-shadow: 0 4px 28px rgba(37, 211, 102, .7), 0 0 0 8px rgba(37, 211, 102, .1)
    }
}

/* ═══════════════════════════════════════════════════════
   SCROLL TO TOP (if exists)
═══════════════════════════════════════════════════════ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    inset-inline-end: 5rem;
    width: 44px;
    height: 44px;
    background: var(--q-purple);
    color: var(--q-white);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--q-shadow);
    z-index: 800;
    opacity: 0;
    pointer-events: none;
    transition: all var(--q-transition);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    background: var(--q-purple-light);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   INNER PAGE HERO BANNER (shared across inner pages)
═══════════════════════════════════════════════════════ */
.inner-hero {
    background: linear-gradient(135deg, var(--q-purple) 0%, var(--q-purple-mid) 100%);
    padding: 5rem 0 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 65% 40%, rgba(0, 212, 196, .18) 0%, transparent 55%);
    pointer-events: none;
}

.inner-hero .container {
    position: relative;
    z-index: 1;
}

.inner-hero .section-eyebrow {
    border-color: rgba(255, 255, 255, .25);
    color: var(--q-teal-light);
    background: rgba(255, 255, 255, .1);
}

.inner-hero__title {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--q-white);
    margin: 1.1rem 0 .8rem;
}

.inner-hero__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .72);
    max-width: 520px;
    margin-inline: auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE — MISSION / VISION / VALUES
═══════════════════════════════════════════════════════ */
.about-mvv {
    background: var(--q-bg);
    padding: 5rem 0;
}

.about-mvv__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.about-mvv__card {
    background: var(--q-white);
    border: 1.5px solid var(--q-border);
    border-top: 4px solid var(--q-teal);
    border-radius: var(--q-radius);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--q-shadow);
    transition: transform .25s, box-shadow .25s;
}

.about-mvv__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--q-shadow-md);
}

.about-mvv__icon {
    width: 56px;
    height: 56px;
    background: var(--q-teal-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--q-teal-dark);
}

.about-mvv__card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--q-purple);
    margin: 0;
}

.about-mvv__card p {
    font-size: .9rem;
    color: var(--q-text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .stats-strip {
        padding: 3rem 0;
    }

    .stats-strip__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stats-strip__item {
        padding: 1.5rem 1rem;
    }

    .stats-strip__num {
        font-size: 1.6rem;
    }

    .hero-v2__overlay {
        padding: 7rem 1rem 4rem;
    }

    .hero-v2__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-v2__btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .steps-timeline__items {
        min-width: 560px;
    }

    .mreview-chips {
        grid-template-columns: 1fr;
    }

    .cinfo-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════
   HEADER SCROLL JS HELPER — transparent → filled
═══════════════════════════════════════════════════════ */
/* Header always shows as purple (video hero fills full viewport, header overlays it) */
header {
    background: linear-gradient(180deg, rgba(45, 27, 105, .7) 0%, transparent 100%);
}

header.scrolled {
    background: var(--q-purple) !important;
}

/* ═══════════════════════════════════════════════════════
   ALL-WORKERS PAGE — Banner + Horizontal Filter + Cards
═══════════════════════════════════════════════════════ */

/* ── Banner ── */
.aw-banner {
    position: relative;
    background: var(--q-purple);
    padding: 5.5rem 0 2rem;
    overflow: hidden;
}

.aw-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, var(--q-purple) 0%, var(--q-purple-mid) 55%, rgba(0, 150, 136, .18) 100%);
}

.aw-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Text col — takes remaining space */
.aw-banner__text {
    flex: 1;
    min-width: 0;
}

.aw-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(0, 212, 196, .11);
    border: 1px solid rgba(0, 212, 196, .25);
    color: var(--q-teal-light);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    padding: .3rem .9rem;
    border-radius: 99px;
    margin-bottom: .7rem;
}

.aw-banner__title {
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    font-weight: 900;
    color: var(--q-white);
    line-height: 1.3;
    margin-bottom: .4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aw-banner__title span {
    color: var(--q-teal-light);
}

.aw-banner__desc {
    color: rgba(255, 255, 255, .62);
    font-size: .85rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    overflow: hidden;
}

/* Trust col — fixed width, grid of 2×2 */
.aw-banner__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    flex-shrink: 0;
}

.aw-trust-item {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: var(--q-radius-sm);
    padding: .45rem .75rem;
    color: rgba(255, 255, 255, .78);
    font-size: .78rem;
    font-weight: 600;
    white-space: nowrap;
}

.aw-trust-item i {
    color: var(--q-teal-light);
    font-size: .8rem;
    flex-shrink: 0;
}

/* ── Horizontal Filter Bar ── */
.aw-filter-bar {
    background: var(--q-white);
    border-bottom: 2px solid var(--q-border);
    padding: 1.4rem 0;
    position: sticky;
    top: 70px;
    z-index: 800;
    box-shadow: 0 4px 20px rgba(45, 27, 105, .07);
}

/* ── Filter form: 3-row layout ── */
.aw-filter-form {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.aw-filter-row {
    display: flex;
    align-items: center;
    gap: .7rem;
    flex-wrap: wrap;
}

.aw-filter-row--type {
    border-bottom: 1.5px solid var(--q-border);
    padding-bottom: .9rem;
}

.aw-filter-row--fields {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: start;
}

.aw-filter-row--actions {
    display: flex;
    align-items: center;
    gap: .6rem;
    justify-content: flex-end;
    border-top: 1.5px solid var(--q-border);
    padding-top: .9rem;
}

/* Row-1 label */
.aw-filter-label {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .72rem;
    font-weight: 700;
    color: var(--q-text-muted);
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.aw-filter-label i {
    color: var(--q-purple-light);
    font-size: .76rem;
}

/* Field: label on top, control below */
.aw-field {
    display: flex;
    flex-direction: column;
    gap: .42rem;
}

.aw-field__label {
    display: flex;
    align-items: center;
    gap: .28rem;
    font-size: .68rem;
    font-weight: 700;
    color: var(--q-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    white-space: nowrap;
}

.aw-field__label i {
    color: var(--q-purple-light);
    font-size: .7rem;
}

.aw-field .aw-select-wrap {
    width: 100%;
}

.aw-field .aw-select {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding-inline-start: .9rem;
}

/* Pills */
.aw-pills {
    display: flex;
    gap: .35rem;
    flex-wrap: wrap;
}

.aw-pill {
    font-size: .8rem;
    font-weight: 600;
    padding: .38rem .9rem;
    border-radius: 99px;
    border: 1.5px solid var(--q-border);
    background: transparent;
    color: var(--q-text-muted);
    cursor: pointer;
    transition: all var(--q-transition);
    white-space: nowrap;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}

.aw-pill:hover {
    border-color: var(--q-purple-light);
    color: var(--q-purple);
    background: var(--q-purple-pale);
}

.aw-pill.active {
    border-color: var(--q-purple);
    background: var(--q-purple);
    color: var(--q-white);
}

.aw-pill-radio {
    cursor: pointer;
}

.aw-pill-radio input {
    display: none;
}

.aw-pill-radio span {
    display: inline-flex;
    align-items: center;
    font-size: .8rem;
    font-weight: 600;
    padding: .38rem .9rem;
    border-radius: 99px;
    border: 1.5px solid var(--q-border);
    color: var(--q-text-muted);
    transition: all var(--q-transition);
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
}

.aw-pill-radio input:checked+span {
    border-color: var(--q-purple);
    background: var(--q-purple);
    color: var(--q-white);
}

.aw-pill-radio:hover span {
    border-color: var(--q-purple-light);
    color: var(--q-purple);
    background: var(--q-purple-pale);
}

/* Selects */
.aw-select-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.aw-select {
    padding: .5rem 1rem;
    border: 1.5px solid var(--q-border);
    border-radius: 10px;
    background: var(--q-bg);
    color: var(--q-text);
    font-size: .82rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    outline: none;
    transition: border-color var(--q-transition);
    appearance: none;
    -webkit-appearance: none;
}

.aw-select:focus {
    border-color: var(--q-teal);
    background: var(--q-white);
}

/* Buttons */
.aw-btn-apply,
.aw-btn-reset {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .85rem;
    font-weight: 700;
    padding: .6rem 1.6rem;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    transition: all var(--q-transition);
    white-space: nowrap;
}

.aw-btn-apply {
    background: var(--q-purple);
    color: var(--q-white);
    box-shadow: 0 4px 16px rgba(45, 27, 105, .22);
}

.aw-btn-apply:hover {
    background: var(--q-purple-mid);
    transform: translateY(-1px);
}

.aw-btn-reset {
    background: transparent;
    color: var(--q-text-muted);
    border: 1.5px solid var(--q-border);
}

.aw-btn-reset:hover {
    border-color: var(--q-teal);
    color: var(--q-teal-dark);
}

/* ── Main section ── */
.aw-main-section {
    padding: 2.5rem 0 4rem;
}

.aw-view-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.aw-view-bar__count {
    font-size: .88rem;
    color: var(--q-text-muted);
    font-weight: 500;
}

.aw-view-bar__toggles {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.aw-view-bar__label {
    font-size: .78rem;
    color: var(--q-text-muted);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.aw-view-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--q-radius-sm);
    border: 1.5px solid var(--q-border);
    background: var(--q-white);
    color: var(--q-text-muted);
    font-size: .88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--q-transition);
}

.aw-view-btn.active {
    background: var(--q-purple);
    border-color: var(--q-purple);
    color: var(--q-white);
}

.aw-view-btn:hover:not(.active) {
    border-color: var(--q-purple-light);
    color: var(--q-purple);
}

.aw-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 5rem 1rem;
    color: var(--q-text-muted);
}

.aw-loading .spinner-border {
    color: var(--q-teal) !important;
    width: 2.5rem;
    height: 2.5rem;
}

/* ── Worker Card — .wc ── */
.wc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.4rem;
}

.wc {
    background: var(--q-white);
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--q-transition);
    box-shadow: 0 2px 12px rgba(45, 27, 105, .06);
}

.wc:hover {
    border-color: var(--q-purple-light);
    box-shadow: var(--q-shadow-md);
    transform: translateY(-4px);
}

.wc__photo {
    position: relative;
    height: 210px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--q-purple-pale), var(--q-teal-pale));
}

.wc__photo img,
.wc__photo-link {
    display: block;
    width: 100%;
    height: 100%;
}

.wc__photo img {
    object-fit: cover;
    transition: transform .5s ease;
}

.wc:hover .wc__photo img {
    transform: scale(1.04);
}

.wc__exp-badge {
    position: absolute;
    top: .75rem;
    inset-inline-start: .75rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .68rem;
    font-weight: 700;
    padding: .28rem .7rem;
    border-radius: 99px;
    backdrop-filter: blur(8px);
}

.wc__exp-badge--yes {
    background: rgba(37, 211, 102, .9);
    color: #fff;
}

.wc__exp-badge--no {
    background: rgba(239, 68, 68, .88);
    color: #fff;
}

.wc__cv-badge {
    position: absolute;
    top: .75rem;
    inset-inline-end: .75rem;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .66rem;
    font-weight: 700;
    background: rgba(45, 27, 105, .85);
    color: var(--q-white);
    padding: .26rem .65rem;
    border-radius: 99px;
    backdrop-filter: blur(8px);
}

.wc__type-badge {
    position: absolute;
    bottom: .75rem;
    inset-inline-start: .75rem;
    inset-inline-end: .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    font-size: .68rem;
    font-weight: 800;
    background: rgba(255, 255, 255, .92);
    color: var(--q-purple);
    border: 1px solid rgba(255, 255, 255, .65);
    padding: .32rem .7rem;
    border-radius: 99px;
    backdrop-filter: blur(8px);
}

.wc__type-badge--rental {
    color: var(--q-teal-dark);
}

.wc__body {
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    flex: 1;
}

.wc__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .5rem;
}

.wc__name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--q-purple);
    margin: 0;
}

.wc__job {
    font-size: .78rem;
    color: var(--q-teal-dark);
    font-weight: 600;
    margin: .15rem 0 0;
}

.wc__type-line {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    flex-wrap: wrap;
    font-size: .72rem;
    color: var(--q-text-muted);
    margin: .25rem 0 0;
}

.wc__type-line i {
    color: var(--q-teal-dark);
    font-size: .68rem;
}

.wc__type-line strong {
    color: var(--q-purple);
    font-weight: 800;
}

.wc__code {
    font-size: .68rem;
    font-weight: 700;
    color: var(--q-text-muted);
    background: var(--q-bg);
    border: 1px solid var(--q-border);
    padding: .22rem .55rem;
    border-radius: var(--q-radius-sm);
    white-space: nowrap;
    flex-shrink: 0;
}

.wc__info-table {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.wc__info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .3rem;
}

.wc__info-cell {
    display: flex;
    flex-direction: column;
    gap: .08rem;
    background: var(--q-bg);
    border-radius: var(--q-radius-sm);
    padding: .4rem .55rem;
}

.wc__info-cell--full {
    grid-column: 1 / -1;
}

.wc__info-cell i {
    font-size: .7rem;
    color: var(--q-teal-dark);
    margin-bottom: .08rem;
}

.wc__info-label {
    font-size: .65rem;
    color: var(--q-text-muted);
    font-weight: 500;
}

.wc__info-cell strong {
    font-size: .8rem;
    font-weight: 700;
    color: var(--q-text);
}

.wc__prices {
    display: flex;
    align-items: stretch;
    background: var(--q-purple-pale);
    border: 1px solid var(--q-border);
    border-radius: var(--q-radius-sm);
    overflow: hidden;
}

.wc__price-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .12rem;
    padding: .55rem .4rem;
    text-align: center;
}

.wc__price-item--main {
    background: var(--q-purple);
}

.wc__price-item span {
    font-size: .62rem;
    color: var(--q-text-muted);
    font-weight: 500;
}

.wc__price-item--main span {
    color: rgba(255, 255, 255, .7);
}

.wc__price-item strong {
    font-size: .85rem;
    font-weight: 800;
    color: var(--q-purple);
}

.wc__price-item--main strong {
    color: var(--q-white);
    font-size: .92rem;
}

.wc__price-sep {
    width: 1px;
    background: var(--q-border);
    flex-shrink: 0;
}

.wc__musaned {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .68rem;
    color: var(--q-text-muted);
    line-height: 1.4;
    background: var(--q-teal-pale);
    border-radius: var(--q-radius-sm);
    padding: .38rem .55rem;
    margin: 0;
}

.wc__musaned i {
    color: var(--q-teal-dark);
    flex-shrink: 0;
}

.wc__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: auto;
}

.wc__btn {
    flex: 1 1 calc(50% - .55rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 700;
    padding: .6rem .9rem;
    border-radius: var(--q-radius-sm);
    transition: all var(--q-transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.wc__btn--primary {
    background: var(--q-purple);
    color: var(--q-white);
}

.wc__btn--primary:hover {
    background: var(--q-purple-mid);
    transform: translateY(-1px);
    color: var(--q-white);
}

.wc__btn--book {
    background: var(--q-teal);
    color: var(--q-white);
}

.wc__btn--book:hover {
    background: var(--q-teal-dark);
    transform: translateY(-1px);
    color: var(--q-white);
}

.wc__btn--whatsapp {
    background: #25d366;
    color: var(--q-white);
}

.wc__btn--whatsapp:hover {
    background: #1da851;
    transform: translateY(-1px);
    color: var(--q-white);
}

.wc__btn--outline {
    background: transparent;
    color: var(--q-purple);
    border: 1.5px solid var(--q-border);
}

.wc__btn--outline:hover {
    border-color: var(--q-teal);
    color: var(--q-teal-dark);
    background: var(--q-teal-pale);
}

/* List view */
.wc-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wc-list .wc {
    flex-direction: row;
}

.wc-list .wc__photo {
    width: 160px;
    height: auto;
    min-height: 200px;
    flex-shrink: 0;
}

.wc-list .wc__info-row {
    grid-template-columns: repeat(3, 1fr);
}

/* Empty */
.wc-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 1rem;
    text-align: center;
    gap: 1rem;
}

.wc-empty__icon {
    width: 72px;
    height: 72px;
    background: var(--q-purple-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--q-purple-light);
}

.wc-empty h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--q-purple);
    margin: 0;
}

.wc-empty p {
    color: var(--q-text-muted);
    font-size: .9rem;
    margin: 0;
    max-width: 360px;
}

/* Pagination */
.wc-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.wc-pagination .pagination .page-link {
    border-radius: var(--q-radius-sm) !important;
    color: var(--q-purple);
    border-color: var(--q-border);
    font-weight: 600;
    font-size: .88rem;
    transition: all var(--q-transition);
}

.wc-pagination .pagination .page-item.active .page-link {
    background: var(--q-purple);
    border-color: var(--q-purple);
    color: var(--q-white);
}

.wc-pagination .pagination .page-link:hover {
    background: var(--q-purple-pale);
    color: var(--q-purple);
    border-color: var(--q-purple-light);
}

/* Responsive */
@media (max-width: 1100px) {
    .aw-filter-row--fields {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .aw-banner {
        padding: 5rem 0 1.8rem;
    }

    .aw-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .aw-banner__title {
        white-space: normal;
    }

    .aw-banner__desc {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .aw-banner__trust {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .aw-filter-bar {
        position: static;
    }

    .aw-filter-row--fields {
        grid-template-columns: 1fr 1fr;
    }

    .aw-filter-row--actions {
        justify-content: stretch;
    }

    .aw-btn-apply {
        flex: 1;
        justify-content: center;
    }

    .wc-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wc-list .wc {
        flex-direction: column;
    }

    .wc-list .wc__photo {
        width: 100%;
        height: 200px;
        min-height: unset;
    }

    .wc-list .wc__info-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .wc-grid {
        grid-template-columns: 1fr;
    }

    .aw-banner__title {
        font-size: 1.6rem;
    }
}


/* ═══════════════════════════════════════════════════════
   WORKER DETAILS PAGE — .wdp-* (Qawafel Theme)
═══════════════════════════════════════════════════════ */

/* ── Page wrapper ── */
.wdp {
    background: var(--q-bg);
    min-height: 100vh;
}

/* ════════════════════════
   PROFILE HEADER
════════════════════════ */
.wdp-header {
    background: var(--q-purple);
    padding: 6rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.wdp-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--q-purple) 0%, var(--q-purple-mid) 55%, rgba(0, 150, 136, .2) 100%);
}

.wdp-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    height: 60px;
    background: var(--q-bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.wdp-header .container {
    position: relative;
    z-index: 1;
}

.wdp-header__inner {
    display: flex;
    align-items: flex-end;
    gap: 2.5rem;
}

/* Photo */
.wdp-photo {
    flex-shrink: 0;
    position: relative;
    width: 160px;
    height: 200px;
    border-radius: var(--q-radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
    border: 3px solid rgba(255, 255, 255, .2);
    background: var(--q-purple-pale);
    margin-bottom: -2rem;
}

.wdp-photo a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.wdp-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 27, 105, .55);
    color: var(--q-white);
    font-size: 1.4rem;
    text-decoration: none;
    transition: background var(--q-transition);
}

.wdp-play:hover {
    background: rgba(45, 27, 105, .75);
    color: var(--q-white);
}

/* Info */
.wdp-header__info {
    flex: 1;
    min-width: 0;
    padding-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.wdp-header__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
}

.wdp-tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: .28rem .8rem;
    border-radius: 99px;
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .85);
    border: 1px solid rgba(255, 255, 255, .18);
}

.wdp-tag--job {
    background: rgba(0, 212, 196, .15);
    border-color: rgba(0, 212, 196, .3);
    color: var(--q-teal-light);
}

.wdp-tag--type {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .25);
    color: var(--q-white);
}

.wdp-tag--code {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7);
    font-family: monospace;
}

.wdp-tag--exp-yes {
    background: rgba(22, 163, 74, .2);
    border-color: rgba(22, 163, 74, .4);
    color: #4ade80;
}

.wdp-tag--exp-no {
    background: rgba(220, 38, 38, .18);
    border-color: rgba(220, 38, 38, .35);
    color: #f87171;
}

.wdp-header__name {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--q-white);
    margin: 0;
    line-height: 1.2;
}

/* Quick stats row */
.wdp-quick-stats {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.wdp-qs {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: rgba(255, 255, 255, .72);
    font-weight: 500;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 99px;
    padding: .32rem .8rem;
}

.wdp-qs i {
    color: var(--q-teal-light);
    font-size: .75rem;
}

/* Price boxes */
.wdp-prices {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}

.wdp-price {
    display: flex;
    align-items: center;
    gap: .7rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--q-radius-sm);
    padding: .65rem 1rem;
    min-width: 130px;
}

.wdp-price--main {
    background: var(--q-teal);
    border-color: var(--q-teal);
}

.wdp-price i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .7);
    flex-shrink: 0;
}

.wdp-price--main i {
    color: rgba(255, 255, 255, .9);
}

.wdp-price span {
    display: block;
    font-size: .68rem;
    color: rgba(255, 255, 255, .65);
    font-weight: 500;
}

.wdp-price strong {
    display: block;
    font-size: .95rem;
    font-weight: 800;
    color: var(--q-white);
}

/* Action buttons */
.wdp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.wdp-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .86rem;
    font-weight: 700;
    padding: .65rem 1.5rem;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--q-transition);
}

.wdp-btn--book {
    background: var(--q-teal);
    color: var(--q-white);
    box-shadow: 0 4px 20px rgba(0, 180, 166, .4);
}

.wdp-btn--book:hover {
    background: var(--q-teal-dark);
    transform: translateY(-2px);
}

.wdp-btn--dl {
    background: rgba(255, 255, 255, .12);
    color: var(--q-white);
    border: 1.5px solid rgba(255, 255, 255, .25);
}

.wdp-btn--dl:hover {
    background: rgba(255, 255, 255, .22);
    color: var(--q-white);
}

.wdp-btn--share {
    background: transparent;
    color: rgba(255, 255, 255, .7);
    border: 1.5px solid rgba(255, 255, 255, .2);
}

.wdp-btn--share:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--q-white);
}

/* ════════════════════════
   BODY — Two columns
════════════════════════ */
.wdp-body {
    padding: 2.5rem 0 4rem;
}

.wdp-body__grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.8rem;
    align-items: start;
}

/* ── Sections (main content) ── */
.wdp-section {
    background: var(--q-white);
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 1.6rem;
    margin-bottom: 1.4rem;
    box-shadow: 0 2px 12px rgba(45, 27, 105, .05);
}

.wdp-section:last-child {
    margin-bottom: 0;
}

.wdp-section__title {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--q-purple);
    margin: 0 0 1.2rem;
    padding-bottom: .9rem;
    border-bottom: 2px solid var(--q-border);
}

.wdp-section__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--q-radius-sm);
    background: var(--q-purple-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    color: var(--q-purple-mid);
    flex-shrink: 0;
}

/* Info grid — 3 columns */
.wdp-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
}

.wdp-info-item {
    background: var(--q-bg);
    border-radius: var(--q-radius-sm);
    padding: .7rem .85rem;
    display: flex;
    flex-direction: column;
    gap: .2rem;
    transition: border-color var(--q-transition);
    border: 1px solid transparent;
}

.wdp-info-item:hover {
    border-color: var(--q-teal);
}

.wdp-info-item__label {
    font-size: .68rem;
    font-weight: 600;
    color: var(--q-text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.wdp-info-item__val {
    font-size: .9rem;
    font-weight: 700;
    color: var(--q-text);
}

/* Experience cards */
.wdp-exp-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: .8rem;
}

.wdp-exp-card {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: var(--q-bg);
    border-radius: var(--q-radius-sm);
    padding: .9rem 1rem;
    border: 1px solid var(--q-border);
    transition: border-color var(--q-transition);
}

.wdp-exp-card:hover {
    border-color: var(--q-purple-light);
}

.wdp-exp-card--yes {
    border-color: rgba(22, 163, 74, .3);
    background: rgba(22, 163, 74, .05);
}

.wdp-exp-card__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--q-purple-pale);
    border-radius: var(--q-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--q-purple-mid);
}

.wdp-exp-card--yes .wdp-exp-card__icon {
    background: rgba(22, 163, 74, .12);
    color: #16a34a;
}

.wdp-exp-card span {
    font-size: .68rem;
    color: var(--q-text-muted);
    font-weight: 500;
    display: block;
}

.wdp-exp-card strong {
    font-size: .88rem;
    font-weight: 700;
    color: var(--q-text);
    display: block;
    margin-top: .15rem;
}

/* Skills */
.wdp-empty {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
}

.wdp-empty>i {
    font-size: 2rem;
    color: var(--q-border);
    width: 100%;
    text-align: center;
}

.wdp-empty>p {
    width: 100%;
    text-align: center;
    color: var(--q-text-muted);
    font-size: .88rem;
}

.wdp-skill {
    display: inline-flex;
    align-items: center;
    background: var(--q-purple-pale);
    color: var(--q-purple-mid);
    font-size: .78rem;
    font-weight: 700;
    padding: .35rem .9rem;
    border-radius: 99px;
    border: 1px solid rgba(91, 69, 176, .2);
}

/* Languages */
.wdp-langs {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.wdp-lang__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .45rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--q-text);
}

.wdp-lang__pct {
    color: var(--q-teal-dark);
    font-weight: 700;
    font-size: .82rem;
}

.wdp-lang__track {
    height: 7px;
    background: var(--q-border);
    border-radius: 99px;
    overflow: hidden;
}

.wdp-lang__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--q-teal), var(--q-teal-light));
    border-radius: 99px;
    transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
}

/* Notes */
.wdp-notes {
    font-size: .9rem;
    color: var(--q-text-muted);
    line-height: 1.8;
    background: var(--q-bg);
    border-radius: var(--q-radius-sm);
    padding: 1rem 1.2rem;
    margin: 0;
    border-inline-start: 3px solid var(--q-teal);
}

/* ════════════════════════
   SIDEBAR
════════════════════════ */
.wdp-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: sticky;
    top: 90px;
}

.wdp-card {
    background: var(--q-white);
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 1.4rem;
    box-shadow: 0 2px 12px rgba(45, 27, 105, .05);
}

.wdp-card__title {
    font-size: .9rem;
    font-weight: 800;
    color: var(--q-purple);
    margin: 0 0 1.1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding-bottom: .8rem;
    border-bottom: 1.5px solid var(--q-border);
}

.wdp-card__title i {
    color: var(--q-teal-dark);
}

/* Pricing card */
.wdp-pricing {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 1rem;
}

.wdp-pricing__main {
    background: var(--q-purple);
    border-radius: var(--q-radius-sm);
    padding: .9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wdp-pricing__main span {
    font-size: .75rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
}

.wdp-pricing__main strong {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--q-white);
}

.wdp-pricing__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .55rem .7rem;
    background: var(--q-bg);
    border-radius: var(--q-radius-sm);
    border: 1px solid var(--q-border);
}

.wdp-pricing__row span {
    font-size: .78rem;
    color: var(--q-text-muted);
}

.wdp-pricing__row strong {
    font-size: .88rem;
    font-weight: 700;
    color: var(--q-text);
}

.wdp-musaned {
    display: flex;
    align-items: flex-start;
    gap: .4rem;
    font-size: .7rem;
    color: var(--q-text-muted);
    line-height: 1.5;
    background: var(--q-teal-pale);
    border-radius: var(--q-radius-sm);
    padding: .5rem .7rem;
}

.wdp-musaned i {
    color: var(--q-teal-dark);
    margin-top: .1rem;
    flex-shrink: 0;
}

/* CTA card */
.wdp-card--cta {
    background: linear-gradient(140deg, var(--q-purple) 0%, var(--q-purple-mid) 100%);
    border-color: var(--q-purple-mid);
    text-align: center;
}

.wdp-cta__icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--q-teal-light);
    margin: 0 auto .9rem;
}

.wdp-card--cta h4 {
    font-size: .98rem;
    font-weight: 800;
    color: var(--q-white);
    margin: 0 0 .45rem;
}

.wdp-card--cta p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .68);
    margin: 0 0 1.1rem;
    line-height: 1.6;
}

.wdp-cta-btn {
    display: block;
    width: 100%;
    background: var(--q-teal);
    color: var(--q-white);
    font-size: .9rem;
    font-weight: 700;
    padding: .75rem;
    border-radius: var(--q-radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--q-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-decoration: none;
}

.wdp-cta-btn:hover {
    background: var(--q-teal-dark);
    transform: translateY(-1px);
    color: var(--q-white);
}

/* QR card */
.wdp-card--qr {
    text-align: center;
}

.wdp-card--qr img {
    width: 130px;
    height: 130px;
    border-radius: var(--q-radius-sm);
    border: 1px solid var(--q-border);
    margin-bottom: .7rem;
}

.wdp-card--qr p {
    font-size: .78rem;
    color: var(--q-text-muted);
    margin: 0 0 .6rem;
}

.wdp-qr-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--q-teal-dark);
    transition: color var(--q-transition);
}

.wdp-qr-link:hover {
    color: var(--q-purple);
}

/* ════════════════════════
   BOOKING MODAL
════════════════════════ */
.wdp-modal {
    background: var(--q-white);
    border-radius: var(--q-radius-lg) !important;
    overflow: hidden;
    max-width: 520px;
}

.wdp-modal__header {
    background: var(--q-purple);
    padding: 1.4rem 1.6rem;
}

.wdp-modal__header h5 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--q-white);
    margin: 0;
}

.wdp-modal__header .btn-close {
    filter: invert(1) brightness(2);
}

.wdp-modal__tabs {
    display: flex;
    border-bottom: 2px solid var(--q-border);
    padding: 0 1.6rem;
}

.wdp-modal__tab {
    font-size: .88rem;
    font-weight: 700;
    color: var(--q-text-muted);
    padding: .9rem 1.2rem;
    border: none;
    background: transparent;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all var(--q-transition);
}

.wdp-modal__tab.active {
    color: var(--q-purple);
    border-bottom-color: var(--q-purple);
}

.wdp-modal__body {
    padding: 1.6rem;
}

.wdp-modal__pane {
    display: none;
}

.wdp-modal__pane.active {
    display: block;
}

.wdp-field {
    margin-bottom: 1rem;
}

.wdp-field label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: var(--q-text-muted);
    margin-bottom: .4rem;
}

.wdp-field input,
.wdp-field select {
    width: 100%;
    padding: .7rem 1rem;
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius-sm);
    background: var(--q-bg);
    color: var(--q-text);
    font-size: .9rem;
    font-family: inherit;
    outline: none;
    transition: border-color var(--q-transition);
}

.wdp-field input:focus,
.wdp-field select:focus {
    border-color: var(--q-teal);
    background: var(--q-white);
}

.wdp-phone {
    display: flex;
}

.wdp-phone__code {
    background: var(--q-purple-pale);
    border: 1.5px solid var(--q-border);
    border-inline-end: none;
    border-radius: var(--q-radius-sm) 0 0 var(--q-radius-sm);
    padding: .7rem .9rem;
    font-size: .85rem;
    font-weight: 700;
    color: var(--q-purple);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.wdp-phone input {
    border-radius: 0 var(--q-radius-sm) var(--q-radius-sm) 0;
}

.wdp-alert {
    background: rgba(220, 38, 38, .08);
    border: 1px solid rgba(220, 38, 38, .25);
    color: #dc2626;
    border-radius: var(--q-radius-sm);
    padding: .65rem .9rem;
    font-size: .82rem;
    margin-bottom: 1rem;
    display: none;
}

.wdp-submit {
    width: 100%;
    padding: .85rem;
    background: var(--q-purple);
    color: var(--q-white);
    font-size: .95rem;
    font-weight: 700;
    border: none;
    border-radius: var(--q-radius-sm);
    cursor: pointer;
    transition: all var(--q-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.wdp-submit:hover {
    background: var(--q-purple-mid);
    transform: translateY(-1px);
}

.wdp-agents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
    margin-bottom: 1rem;
}

.wdp-agent {
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 1rem;
    cursor: pointer;
    transition: all var(--q-transition);
    text-align: center;
}

.wdp-agent:hover {
    border-color: var(--q-purple-light);
    background: var(--q-purple-pale);
}

.wdp-agent.active {
    border-color: var(--q-purple);
    background: var(--q-purple-pale);
}

.wdp-agent__avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--q-purple-mid), var(--q-teal));
    color: var(--q-white);
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto .55rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wdp-agent__name {
    font-size: .82rem;
    font-weight: 700;
    color: var(--q-purple);
}

.wdp-agent__links {
    display: flex;
    gap: .4rem;
    justify-content: center;
    margin-top: .55rem;
}

.wdp-agent__link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .72rem;
    font-weight: 700;
    padding: .28rem .7rem;
    border-radius: 99px;
    text-decoration: none;
    transition: all var(--q-transition);
    background: var(--q-purple-pale);
    color: var(--q-purple);
}

.wdp-agent__link:hover {
    background: var(--q-purple);
    color: var(--q-white);
}

.wdp-agent__link--wa {
    background: #25d366;
    color: #fff;
}

.wdp-agent__link--wa:hover {
    background: #1da851;
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .wdp-body__grid {
        grid-template-columns: 1fr;
    }

    .wdp-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .wdp-sidebar .wdp-card {
        flex: 1 1 260px;
    }

    .wdp-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wdp-header {
        padding: 5.5rem 0 2rem;
    }

    .wdp-header__inner {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }

    .wdp-photo {
        width: 140px;
        height: 175px;
        margin-bottom: 0;
    }

    .wdp-header__info {
        align-items: center;
        padding-bottom: 1.5rem;
    }

    .wdp-prices {
        justify-content: center;
    }

    .wdp-actions {
        justify-content: center;
    }

    .wdp-header::after {
        display: none;
    }

    .wdp-sidebar {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .wdp-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wdp-exp-cards {
        grid-template-columns: 1fr;
    }

    .wdp-price {
        min-width: unset;
        flex: 1;
    }
}


/* ═══════════════════════════════════════════════════════
   AUTH PAGES — Login / Register / Forgot / OTP / Reset
   Qawafel Theme
═══════════════════════════════════════════════════════ */

/* ── Page wrapper ── */
.auth-page.page-content {
    min-height: 100dvh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--q-bg);
    position: relative;
    overflow: hidden;
}

.auth-page.page-content::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 0% 50%, rgba(45, 27, 105, .12) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 100% 20%, rgba(0, 180, 166, .08) 0%, transparent 60%);
}

.login-section {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 5rem 1rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-content {
    width: 100%;
    max-width: 980px;
}

/* ── Auth card — two columns ── */
.auth-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
    background: var(--q-white);
    border-radius: var(--q-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45, 27, 105, .18);
    border: 1px solid var(--q-border);
}

/* Visual panel (left in RTL = right side) */
.auth-card__visual {
    background: var(--q-purple);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
    color: var(--q-white);
}

.auth-card__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--q-purple) 0%, var(--q-purple-mid) 50%, rgba(0, 150, 136, .3) 100%);
}

.auth-card__visual::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 212, 196, .08);
    bottom: -80px;
    inset-inline-end: -80px;
}

.auth-card__brand,
.auth-card__visual-content,
.auth-card__features {
    position: relative;
    z-index: 1;
}

.auth-card__brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: .6rem .9rem;
    /* background: rgba(255,255,255,.95); */
    border-radius: var(--q-radius-sm);
}

.auth-card__brand img {
    width: 110px;
    height: auto;
}

.auth-card__eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--q-teal-light);
    margin-bottom: .7rem;
    background: rgba(0, 212, 196, .12);
    border: 1px solid rgba(0, 212, 196, .25);
    padding: .28rem .8rem;
    border-radius: 99px;
}

.auth-card__visual h1 {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 900;
    color: var(--q-white);
    line-height: 1.3;
    margin: 0 0 .8rem;
}

.auth-card__visual p {
    color: rgba(255, 255, 255, .68);
    font-size: .9rem;
    line-height: 1.7;
    margin: 0;
}

.auth-card__features {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.auth-card__features span {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--q-radius-sm);
    padding: .5rem .85rem;
}

.auth-card__features i {
    color: var(--q-teal-light);
    font-size: .9rem;
    width: 16px;
    text-align: center;
}

/* Form panel */
.login-detail {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2.2rem;
}

.login-detail.centered {
    justify-content: center;
}

.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.4rem;
}

.login-logo img {
    height: 50px;
    width: auto;
}

.login-title {
    text-align: center;
    margin-bottom: 1.6rem;
}

.login-title .title-heading span {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--q-purple);
    display: block;
    margin-bottom: .4rem;
}

.login-title p {
    font-size: .85rem;
    color: var(--q-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Inputs */
.auth-input {
    position: relative;
}

.auth-input i {
    position: absolute;
    inset-inline-start: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--q-purple-light);
    font-size: .88rem;
    z-index: 1;
    pointer-events: none;
}

.auth-input .form-control,
.login-form input.form-control {
    padding-block: .75rem !important;
    padding-inline-start: 2.8rem !important;
    padding-inline-end: 1rem !important;
    border: 1.5px solid var(--q-border) !important;
    border-radius: var(--q-radius-sm) !important;
    background: var(--q-bg) !important;
    font-size: .9rem !important;
    font-family: inherit !important;
    color: var(--q-text) !important;
    box-shadow: none !important;
    transition: border-color var(--q-transition), background var(--q-transition) !important;
}

.auth-input .form-control:focus,
.login-form input.form-control:focus {
    border-color: var(--q-teal) !important;
    background: var(--q-white) !important;
    box-shadow: 0 0 0 3px rgba(0, 180, 166, .12) !important;
}

.auth-recaptcha {
    display: flex;
    justify-content: center;
    margin: .85rem 0 .35rem;
    max-width: 100%;
    overflow: hidden;
}

.auth-recaptcha .g-recaptcha {
    transform-origin: center top;
}

/* Remember me + forgot */
.form-check.custom-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.form-check.custom-check label {
    font-size: .82rem;
    color: var(--q-text-muted);
}

.site-text-primary {
    font-size: .82rem;
    font-weight: 700;
    color: var(--q-teal-dark);
    text-decoration: none;
    transition: color var(--q-transition);
}

.site-text-primary:hover {
    color: var(--q-purple);
}

/* Submit button */
.site-button {
    width: 100%;
    padding: .85rem 1.5rem;
    background: var(--q-purple) !important;
    color: var(--q-white) !important;
    font-size: .95rem !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: var(--q-radius-sm) !important;
    cursor: pointer;
    transition: all var(--q-transition) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    font-family: inherit !important;
    box-shadow: 0 4px 18px rgba(45, 27, 105, .25) !important;
}

.site-button:hover {
    background: var(--q-purple-mid) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 27, 105, .32) !important;
}

/* Bottom links */
.new-account {
    display: block;
    text-align: center;
    font-size: .84rem;
    color: var(--q-text-muted);
    cursor: default;
}

.new-account a,
.login-href {
    font-weight: 700;
    color: var(--q-purple);
    text-decoration: none;
    transition: color var(--q-transition);
}

.new-account a:hover,
.login-href:hover {
    color: var(--q-teal-dark);
}

/* ── OTP inputs ── */
.otp-wrapper {
    display: flex;
    gap: .75rem;
    justify-content: center;
    margin-bottom: 1.6rem;
    direction: ltr;
}

.otp-input {
    width: 56px !important;
    height: 62px !important;
    text-align: center !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    border: 2px solid var(--q-border) !important;
    border-radius: 14px !important;
    background: #f5f4fb !important;
    color: var(--q-purple) !important;
    font-family: inherit !important;
    transition: border-color .18s ease, box-shadow .18s ease, transform .15s ease, background .18s ease !important;
    padding: 0 !important;
    caret-color: transparent !important;
    box-shadow: 0 2px 6px rgba(45, 27, 105, .06) !important;
}

.otp-input:focus {
    border-color: var(--q-teal) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(0, 180, 166, .18), 0 2px 8px rgba(0, 180, 166, .12) !important;
    outline: none !important;
    transform: translateY(-2px) scale(1.06) !important;
}

.otp-input.filled {
    border-color: var(--q-purple) !important;
    background: rgba(45, 27, 105, .07) !important;
}

.otp-input.filled:focus {
    border-color: var(--q-teal) !important;
    background: #fff !important;
}

/* OTP resend */
.otp-resend-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: 1.2rem;
}

.otp-timer {
    font-size: .82rem;
    font-weight: 700;
    color: var(--q-teal-dark);
    min-width: 36px;
}

.otp-resend-btn {
    background: transparent;
    border: none;
    padding: 0;
    font-size: .82rem;
    font-weight: 700;
    color: var(--q-purple);
    cursor: pointer;
    transition: color var(--q-transition);
    font-family: inherit;
}

.otp-resend-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.otp-resend-btn:not(:disabled):hover {
    color: var(--q-teal-dark);
}

/* Single-column auth (OTP, forgot, reset — no visual panel) */
.auth-page .row.justify-content-center {
    width: 100%;
    max-width: 460px;
    margin-inline: auto;
}

.auth-page .row.justify-content-center .login-detail {
    background: var(--q-white);
    border-radius: var(--q-radius-lg);
    box-shadow: 0 12px 40px rgba(45, 27, 105, .14);
    border: 1px solid var(--q-border);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .auth-card {
        grid-template-columns: 1fr;
    }

    .auth-card__visual {
        display: none;
    }

    .login-detail {
        padding: 2rem 1.5rem;
    }

    .otp-input {
        width: 46px !important;
        height: 52px !important;
        font-size: 1.25rem !important;
    }

    .otp-wrapper {
        gap: .5rem;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 4.5rem .75rem 2rem;
    }

    .login-detail {
        padding-inline: 1rem;
    }

    .auth-recaptcha .g-recaptcha {
        transform: scale(.86);
        margin-bottom: -10px;
    }

    .otp-input {
        width: 40px !important;
        height: 46px !important;
        font-size: 1.1rem !important;
    }

    .otp-wrapper {
        gap: .35rem;
    }
}


/* ═══════════════════════════════════════════════════════
   INNER PAGES — Page Content System
   Forms · Info · FAQs · Contact · Policies · Musaned
═══════════════════════════════════════════════════════ */

/* ── Hero action buttons (policies, contact) ── */
.inner-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.8rem;
}

/* ── Form section wrapper ── */
.contractRenew {
    padding: 4rem 0;
    background: var(--q-bg);
}

.form-wrapper {
    max-width: 1060px;
    margin-inline: auto;
}

.renewal-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Form block card ── */
.form-block {
    background: var(--q-white);
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--q-shadow);
}

.block-title {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1.5px solid var(--q-border);
}

.block-title i {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--q-teal-pale);
    color: var(--q-teal-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
}

.block-title h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--q-purple);
}

/* ── Form layout helpers ── */
.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-grid--1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-grid--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* ── Input fields ── */
.input-group-custom {
    display: flex;
    flex-direction: column;
    gap: .42rem;
}

.input-group-custom>label {
    font-size: .8rem;
    font-weight: 700;
    color: var(--q-text);
}

.input-group-custom input:not([type="file"]),
.input-group-custom select,
.input-group-custom textarea {
    padding: .65rem .95rem;
    border: 1.5px solid var(--q-border);
    border-radius: 10px;
    background: var(--q-bg);
    color: var(--q-text);
    font-family: inherit;
    font-size: .88rem;
    transition: border-color .25s, background .25s;
    outline: none;
    width: 100%;
}

.input-group-custom input:not([type="file"]):focus,
.input-group-custom select:focus,
.input-group-custom textarea:focus {
    border-color: var(--q-teal);
    background: var(--q-white);
}

.input-group-custom textarea {
    min-height: 110px;
    resize: vertical;
}

/* ── Phone input ── */
.phone-input {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1.5px solid var(--q-border);
    border-radius: 10px;
    background: var(--q-bg);
    transition: border-color .25s;
}

.phone-input:focus-within {
    border-color: var(--q-teal);
    background: var(--q-white);
}

.phone-input>span {
    padding: .65rem .95rem;
    font-size: .85rem;
    font-weight: 700;
    color: var(--q-text-muted);
    background: var(--q-purple-pale);
    border-inline-end: 1.5px solid var(--q-border);
    white-space: nowrap;
    flex-shrink: 0;
}

.phone-input input {
    flex: 1;
    padding: .65rem .95rem;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    outline: none;
    font-size: .88rem;
}

/* ── File dropzone ── */
.file-upload.modern>label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: var(--q-text);
    margin-bottom: .42rem;
}

.file-dropzone {
    border: 2px dashed var(--q-border);
    border-radius: 10px;
    padding: 1.1rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color .25s, background .25s;
    background: var(--q-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    position: relative;
}

.file-dropzone:hover {
    border-color: var(--q-teal);
    background: var(--q-teal-pale);
}

.file-dropzone>i {
    font-size: 1.5rem;
    color: var(--q-teal);
}

.file-dropzone>span {
    font-size: .8rem;
    color: var(--q-text-muted);
}

.file-info {
    display: block;
    font-size: .73rem;
    color: var(--q-text-muted);
    text-align: center;
    margin-top: .25rem;
}

/* ── Form actions + teal submit override ── */
.form-actions {
    display: flex;
    justify-content: center;
    padding-top: 1.5rem;
    margin-top: .5rem;
}

.contractRenew .btn-submit,
.request-section .btn-submit {
    width: auto !important;
    background: var(--q-teal) !important;
    background-image: none !important;
    border-radius: 99px !important;
    padding: .85rem 2.8rem !important;
    display: inline-flex !important;
    align-items: center;
    gap: .55rem;
    font-size: .95rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 180, 166, .3) !important;
    transition: background .25s, transform .2s, box-shadow .25s !important;
}

.contractRenew .btn-submit:hover,
.request-section .btn-submit:hover {
    background: var(--q-teal-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(0, 180, 166, .4) !important;
    opacity: 1 !important;
}

/* ─────────────────────────────────────────
   DAILY LABOR — Benefits grid
───────────────────────────────────────── */
.why-creative {
    padding: 4.5rem 0;
    background: var(--q-white);
}

.why-creative .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.why-creative .section-header h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--q-purple);
    margin-bottom: .5rem;
}

.why-creative .section-header p {
    font-size: .95rem;
    color: var(--q-text-muted);
    max-width: 580px;
    margin-inline: auto;
    line-height: 1.7;
}

.why-creative__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.creative-card {
    background: var(--q-bg);
    border: 1.5px solid var(--q-border);
    border-top: 4px solid var(--q-teal);
    border-radius: var(--q-radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--q-shadow);
    transition: transform .25s, box-shadow .25s;
}

.creative-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--q-shadow-md);
}

.creative-card__bg-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: .8rem;
}

.creative-card__bg-icon i {
    color: var(--q-teal);
}

.creative-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--q-purple);
    margin-bottom: .5rem;
}

.creative-card p {
    font-size: .88rem;
    color: var(--q-text-muted);
    line-height: 1.65;
    margin: 0;
}

.creative-card__overlay {
    display: none;
}

/* ─────────────────────────────────────────
   DAILY LABOR — Steps + Form two-col
───────────────────────────────────────── */
.request-section {
    padding: 4.5rem 0;
    background: var(--q-bg);
}

.request-section__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

.steps-horizontal .section-header {
    margin-bottom: 2rem;
}

.steps-horizontal .section-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--q-purple);
    margin-bottom: .5rem;
}

.steps-horizontal .section-header p {
    font-size: .9rem;
    color: var(--q-text-muted);
    line-height: 1.6;
}

.stepper {
    display: flex;
    flex-direction: column;
}

.stepper__item {
    display: grid;
    grid-template-columns: 40px 2px 1fr;
    column-gap: 1rem;
    padding-bottom: 1.5rem;
    align-items: start;
}

.stepper__item:last-child {
    padding-bottom: 0;
}

.stepper__circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--q-border);
    color: var(--q-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .9rem;
    flex-shrink: 0;
    transition: background .25s, color .25s;
}

.stepper__line {
    width: 2px;
    background: var(--q-border);
    margin-inline: auto;
    height: 100%;
    min-height: 40px;
}

.stepper__item:last-child .stepper__line {
    visibility: hidden;
}

.stepper__content {
    padding-top: .65rem;
}

.stepper__content h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--q-purple);
    margin-bottom: .3rem;
}

.stepper__content p {
    font-size: .85rem;
    color: var(--q-text-muted);
    line-height: 1.55;
    margin: 0;
}

.stepper__item.completed .stepper__circle,
.stepper__item.active .stepper__circle {
    background: var(--q-teal);
    color: var(--q-white);
}

.stepper__item.completed .stepper__line,
.stepper__item.active .stepper__line {
    background: var(--q-teal);
}

.form-container .form-wrapper {
    background: var(--q-white);
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 2rem;
    box-shadow: var(--q-shadow);
}

.form-header {
    margin-bottom: 1.5rem;
}

.form-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--q-purple);
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .35rem;
}

.form-header h3 i {
    color: var(--q-teal);
}

.form-header p {
    font-size: .88rem;
    color: var(--q-text-muted);
    margin: 0;
}

.professional-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.professional-form .full-width {
    grid-column: 1 / -1;
}

/* ─────────────────────────────────────────
   MUSANED — Journey services + Stairs
───────────────────────────────────────── */
.journey-services {
    padding: 4.5rem 0;
    background: var(--q-white);
}

.journey-services__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.logo-badge {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.logo-badge img {
    height: 36px;
    width: auto;
}

.logo-badge span {
    font-size: .85rem;
    font-weight: 700;
    color: var(--q-purple);
}

.journey-services__content h1 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--q-purple);
    margin-bottom: 1.2rem;
    line-height: 1.35;
}

.journey-services__content h1 .highlight {
    color: var(--q-teal);
}

.journey-services__content p {
    font-size: .92rem;
    color: var(--q-text-muted);
    line-height: 1.75;
    margin-bottom: .8rem;
}

.service-stair {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: var(--q-bg);
    border-radius: var(--q-radius);
    border: 1.5px solid var(--q-border);
    margin-bottom: 1rem;
    transition: border-color .25s, box-shadow .25s;
}

.service-stair:hover {
    border-color: var(--q-teal);
    box-shadow: var(--q-shadow);
}

.service-stair:last-child {
    margin-bottom: 0;
}

.service-stair__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--q-teal-pale);
    color: var(--q-teal-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.service-stair__info h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--q-purple);
    margin: 0 0 .3rem;
}

.service-stair__info p {
    font-size: .85rem;
    color: var(--q-text-muted);
    margin: 0;
    line-height: 1.55;
}

/* ─────────────────────────────────────────
   MUSANED — Video section
───────────────────────────────────────── */
.video-section {
    padding: 4.5rem 0;
    background: var(--q-bg);
}

.video-section__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.video-section__content h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--q-purple);
    margin-bottom: 1rem;
}

.video-section__content p {
    font-size: .95rem;
    color: var(--q-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.video-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: var(--q-teal);
    color: var(--q-white);
    padding: .8rem 2rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: .92rem;
    transition: background .25s, transform .2s;
    text-decoration: none;
}

.video-btn:hover {
    background: var(--q-teal-dark);
    transform: translateY(-2px);
    color: var(--q-white);
}

.video-card-frame {
    position: relative;
}

.video-card-frame .frame {
    display: none;
}

.video-section__card {
    border-radius: var(--q-radius);
    overflow: hidden;
    box-shadow: var(--q-shadow-md);
}

.video-card__thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
}

.video-card__tag {
    position: absolute;
    top: 1rem;
    inset-inline-start: 1rem;
    z-index: 2;
    background: var(--q-teal);
    color: var(--q-white);
    padding: .3rem .9rem;
    border-radius: 99px;
    font-size: .75rem;
    font-weight: 700;
}

.video-card__thumb iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ─────────────────────────────────────────
   MUSANED — Process steps
───────────────────────────────────────── */
.process-section {
    padding: 4.5rem 0;
    background: var(--q-white);
}

.process-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.process-header h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--q-purple);
    margin-bottom: .5rem;
}

.process-header h2 span {
    color: var(--q-teal);
}

.process-header p {
    font-size: .95rem;
    color: var(--q-text-muted);
    max-width: 560px;
    margin-inline: auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.process-card {
    background: var(--q-bg);
    border: 1.5px solid var(--q-border);
    border-top: 4px solid var(--q-teal);
    border-radius: var(--q-radius);
    padding: 1.8rem 1.4rem;
    box-shadow: var(--q-shadow);
    transition: transform .25s, box-shadow .25s;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--q-shadow-md);
}

.process-card__icon {
    width: 48px;
    height: 48px;
    background: var(--q-teal-pale);
    color: var(--q-teal-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--q-purple);
    margin-bottom: .5rem;
}

.process-card p {
    font-size: .85rem;
    color: var(--q-text-muted);
    line-height: 1.6;
    margin-bottom: .8rem;
}

.process-card__details {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}

.process-card__details span {
    font-size: .72rem;
    font-weight: 600;
    background: var(--q-purple-pale);
    color: var(--q-purple);
    padding: .2rem .65rem;
    border-radius: 99px;
}

/* ─────────────────────────────────────────
   MUSANED — App download section
───────────────────────────────────────── */
.musanedApp {
    padding: 4.5rem 0;
    background: var(--q-bg);
}

.musanedApp .appImg img {
    width: 100%;
    border-radius: var(--q-radius-lg);
    box-shadow: var(--q-shadow-md);
}

.musanedApp .info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: center;
    padding: 1rem;
}

.musanedApp .info>img {
    height: 44px;
    width: auto;
}

.musanedApp .info h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--q-purple);
    margin: 0;
}

.musanedApp .info p {
    font-size: .95rem;
    color: var(--q-text-muted);
    line-height: 1.7;
    margin: 0;
}

.musanedApp .links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.musanedApp .links a img {
    height: 44px;
    width: auto;
    transition: transform .2s;
    display: block;
}

.musanedApp .links a:hover img {
    transform: scale(1.05);
}

/* ─────────────────────────────────────────
   POLICIES — Countries guidelines
───────────────────────────────────────── */
.guidelines-section {
    padding: 4.5rem 0;
    background: var(--q-bg);
}

.guidelines-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.guidelines-section .section-header h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--q-purple);
    margin-bottom: .5rem;
}

.guidelines-section .section-header p {
    font-size: .95rem;
    color: var(--q-text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin-inline: auto;
}

.countries-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.country-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: var(--q-white);
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius);
    box-shadow: var(--q-shadow);
    transition: border-color .25s, box-shadow .25s;
}

.country-row:hover {
    border-color: var(--q-teal);
    box-shadow: var(--q-shadow-md);
}

.country-row__flag {
    width: 52px;
    height: 36px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.country-row__info {
    flex: 1;
    min-width: 0;
}

.country-row__info h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--q-purple);
    margin: 0 0 .2rem;
}

.country-row__info p {
    font-size: .8rem;
    color: var(--q-text-muted);
    margin: 0;
}

.country-row__links {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.country-row__links a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--q-teal-dark);
    background: var(--q-teal-pale);
    padding: .38rem .9rem;
    border-radius: 99px;
    border: 1.5px solid var(--q-teal-pale);
    transition: background .2s, color .2s, border-color .2s;
}

.country-row__links a:hover {
    background: var(--q-teal);
    color: var(--q-white);
    border-color: var(--q-teal);
}

/* ── Policies download buttons in hero ── */
.banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .5rem;
    justify-content: center;
}

.btn-policy {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .15);
    color: var(--q-white);
    border: 1.5px solid rgba(255, 255, 255, .35);
    padding: .65rem 1.5rem;
    border-radius: 99px;
    font-size: .88rem;
    font-weight: 600;
    transition: background .25s;
    text-decoration: none;
}

.btn-policy:hover {
    background: rgba(255, 255, 255, .28);
    color: var(--q-white);
}

/* ─────────────────────────────────────────
   FAQS PAGE
───────────────────────────────────────── */
.faq-page-hero {
    background: linear-gradient(135deg, var(--q-purple) 0%, var(--q-purple-mid) 100%);
    padding: 5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.faq-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 65% 40%, rgba(0, 212, 196, .18) 0%, transparent 55%);
    pointer-events: none;
}

.faq-page-hero .container {
    position: relative;
    z-index: 1;
}

.faq-page-hero__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.faq-page-hero__content .section-eyebrow {
    border-color: rgba(255, 255, 255, .25);
    color: var(--q-teal-light);
    background: rgba(255, 255, 255, .1);
}

.faq-page-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--q-white);
    margin: .9rem 0 .8rem;
}

.faq-page-hero__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.faq-page-hero__actions {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
}

.faq-page-hero__visual {
    text-align: center;
}

.faq-page-hero__image img {
    height: 200px;
    width: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .25));
}

.faq-page-hero__note {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1rem;
    background: rgba(255, 255, 255, .12);
    padding: .45rem 1rem;
    border-radius: 99px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .8);
}

.faq-page-hero__note i {
    color: var(--q-teal-light);
}

.faq-page-stats {
    padding: 2.5rem 0;
    background: var(--q-white);
    border-bottom: 1.5px solid var(--q-border);
}

.faq-page-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.faq-page-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    padding: 1.2rem;
}

.faq-page-stat i {
    font-size: 1.6rem;
    color: var(--q-teal);
}

.faq-page-stat strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--q-purple);
}

.faq-page-stat span {
    font-size: .82rem;
    color: var(--q-text-muted);
}

.faq-page-content {
    padding: 4.5rem 0;
    background: var(--q-bg);
}

.faq-page-content__head {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-page-content__head h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--q-purple);
    margin-bottom: .5rem;
}

.faq-page-content__head p {
    font-size: .95rem;
    color: var(--q-text-muted);
    max-width: 540px;
    margin-inline: auto;
}

.faq-page-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    align-items: start;
}

.faq-page-item {
    background: var(--q-white);
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius);
    margin-bottom: .6rem;
    overflow: hidden;
    transition: border-color .25s;
}

.faq-page-item.active {
    border-color: var(--q-teal);
}

.faq-page-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: start;
    font-size: .95rem;
    font-weight: 700;
    color: var(--q-purple);
    font-family: inherit;
}

.faq-page-question i {
    color: var(--q-teal);
    font-size: .85rem;
    transition: transform .3s;
    flex-shrink: 0;
}

.faq-page-item.active .faq-page-question i {
    transform: rotate(180deg);
}

.faq-page-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-page-item.active .faq-page-answer {
    max-height: 500px;
}

.faq-page-answer__inner {
    padding: 0 1.4rem 1.2rem;
    font-size: .9rem;
    color: var(--q-text-muted);
    line-height: 1.75;
}

.faq-page-support {
    background: var(--q-white);
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--q-shadow);
    position: sticky;
    top: 90px;
}

.faq-page-support__icon {
    width: 56px;
    height: 56px;
    background: var(--q-purple-pale);
    color: var(--q-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
}

.faq-page-support h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--q-purple);
    margin-bottom: .5rem;
}

.faq-page-support p {
    font-size: .85rem;
    color: var(--q-text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.faq-page-support__actions {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.faq-page-support__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .7rem 1rem;
    border-radius: 99px;
    font-size: .88rem;
    font-weight: 700;
    transition: all .25s;
    text-decoration: none;
}

.faq-page-support__btn--primary {
    background: var(--q-purple);
    color: var(--q-white);
}

.faq-page-support__btn--primary:hover {
    background: var(--q-purple-mid);
    color: var(--q-white);
}

.faq-page-support__btn--whatsapp {
    background: #25D366;
    color: var(--q-white);
}

.faq-page-support__btn--whatsapp:hover {
    background: #1EBE58;
    color: var(--q-white);
}

/* ─────────────────────────────────────────
   CONTACT PAGE — Modern layout
───────────────────────────────────────── */
.contact-page-modern__header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-page-modern__header>span {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--q-teal-dark);
    margin-bottom: .5rem;
}

.contact-page-modern__header h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--q-purple);
    margin-bottom: .5rem;
}

.contact-page-modern__header p {
    font-size: .95rem;
    color: var(--q-text-muted);
    max-width: 520px;
    margin-inline: auto;
}

.contact-page-modern__grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.contact-page-modern__info {
    background: var(--q-white);
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 2rem;
    box-shadow: var(--q-shadow);
}

.contact-page-modern__info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--q-purple);
    margin-bottom: 1.5rem;
}

.contact-page-modern__info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-page-modern__info .field {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
}

.contact-page-modern__info .field .icon {
    width: 40px;
    height: 40px;
    background: var(--q-teal-pale);
    color: var(--q-teal-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.contact-page-modern__info .field .text h4 {
    font-size: .82rem;
    font-weight: 700;
    color: var(--q-text-muted);
    margin: 0 0 .25rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.contact-page-modern__info .field .text a,
.contact-page-modern__info .field .text p {
    font-size: .88rem;
    color: var(--q-text);
    margin: 0;
}

.contact-page-modern__info .field .text a:hover {
    color: var(--q-teal-dark);
}

.contact-page-modern__hours {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1.5px solid var(--q-border);
}

.contact-page-modern__hours i {
    color: var(--q-teal);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-page-modern__hours strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--q-purple);
}

.contact-page-modern__hours span {
    font-size: .8rem;
    color: var(--q-text-muted);
}

.contact-page-modern__form {
    background: var(--q-white);
    border: 1.5px solid var(--q-border);
    border-radius: var(--q-radius);
    padding: 2rem;
    box-shadow: var(--q-shadow);
}

.contact-page-modern__form .form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-page-modern__form .form-group:last-of-type {
    grid-template-columns: 1fr;
}

.contact-page-modern__map>div {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-page-modern__map>div span {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--q-text-muted);
}

.contact-page-modern__map>div h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--q-purple);
    margin: 0;
}

.contact-page-modern__map iframe {
    border-radius: var(--q-radius);
}

/* ── Contact hero action buttons ── */
.contact-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
    justify-content: center;
}

.contact-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    font-weight: 700;
    padding: .75rem 1.8rem;
    border-radius: 99px;
    transition: all .25s;
    text-decoration: none;
}

.contact-hero__btn--primary {
    background: rgba(255, 255, 255, .15);
    color: var(--q-white);
    border: 1.5px solid rgba(255, 255, 255, .35);
}

.contact-hero__btn--primary:hover {
    background: rgba(255, 255, 255, .28);
    color: var(--q-white);
}

.contact-hero__btn--whatsapp {
    background: #25D366;
    color: var(--q-white);
    border: 1.5px solid #25D366;
}

.contact-hero__btn--whatsapp:hover {
    background: #1EBE58;
    color: var(--q-white);
    border-color: #1EBE58;
}

/* ─────────────────────────────────────────
   INNER PAGES RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
    .form-row-split {
        grid-template-columns: 1fr;
    }

    .form-grid--3 {
        grid-template-columns: 1fr 1fr;
    }

    .request-section__grid {
        grid-template-columns: 1fr;
    }

    .journey-services__wrapper {
        grid-template-columns: 1fr;
    }

    .video-section__inner {
        grid-template-columns: 1fr;
    }

    .faq-page-layout {
        grid-template-columns: 1fr;
    }

    .faq-page-support {
        position: static;
    }

    .faq-page-hero__inner {
        grid-template-columns: 1fr;
    }

    .faq-page-hero__visual {
        display: none;
    }

    .contact-page-modern__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {

    .form-grid,
    .form-grid--1,
    .form-grid--3 {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-page-modern__form .form-group {
        grid-template-columns: 1fr;
    }

    .country-row {
        flex-wrap: wrap;
    }

    .country-row__links {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .faq-page-stats__grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════
   DASHBOARD — Qawafel Brand Theme Override
   Replaces old yellow-green (#c6d10b) with Purple + Teal
═══════════════════════════════════════════════════════ */

/* ── Page Banner (card-banner) ────────────────────── */
.card-banner {
    background: linear-gradient(135deg, var(--q-purple) 0%, var(--q-purple-mid) 60%, var(--q-teal-dark) 100%);
    padding: 5rem 0 3.5rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.card-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.card-banner__wrapper {
    position: relative;
    z-index: 1;
}

.card-banner__content {
    max-width: 640px;
}

.card-banner__tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0, 212, 196, .15);
    border: 1px solid rgba(0, 212, 196, .3);
    color: var(--q-teal-light);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: .4rem 1.1rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}

.card-banner__title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--q-white);
    margin-bottom: .75rem;
    line-height: 1.3;
}

.card-banner__desc {
    color: rgba(255, 255, 255, .72);
    font-size: .97rem;
    line-height: 1.75;
    margin: 0;
}

/* ── Sidebar Navigation ─────────────────────────── */
main .profile .profileNavCol {
    border-color: var(--q-border) !important;
}

main .profile .profileNavCol a {
    color: var(--q-text-muted) !important;
    border-color: var(--q-border) !important;
}

main .profile .profileNavCol .logout-button {
    color: var(--q-text-muted) !important;
    border-color: var(--q-border) !important;
}

main .profile .profileNavCol a.active,
main .profile .profileNavCol a:hover,
main .profile .profileNavCol .logout-button:hover {
    background: linear-gradient(135deg, var(--q-purple), var(--q-purple-light)) !important;
    border-color: var(--q-purple) !important;
    color: var(--q-white) !important;
}

@media (max-width: 760px) {
    main .profile .profileNavCol a {
        border-bottom-color: var(--q-border) !important;
    }

    main .profile .profileNavCol .logout-button {
        border-bottom-color: var(--q-border) !important;
    }
}

/* ── User Header ────────────────────────────────── */
main .profileContent .userHeader {
    border-color: var(--q-border) !important;
    color: var(--q-purple) !important;
}

main .profileContent .userHeader .userInfo img {
    border-color: var(--q-teal-pale) !important;
}

main .profileContent .userHeader .userInfo .userName h3 {
    color: var(--q-purple) !important;
}

/* ── Stats Cards ────────────────────────────────── */
main .profileContent .stats-row .stat-card {
    border-color: var(--q-border) !important;
}

main .profileContent .stats-row .stat-card .stat-icon {
    background: var(--q-teal-pale) !important;
    color: var(--q-teal) !important;
}

main .profileContent .stats-row .stat-card .stat-info h4 {
    color: var(--q-purple) !important;
}

/* ── Orders Header ──────────────────────────────── */
main .profileContent .orders-grid .orders-header .orders-title {
    color: var(--q-purple) !important;
}

main .profileContent .orders-grid .orders-header .view-all {
    color: var(--q-purple-light) !important;
}

main .profileContent .orders-grid .orders-header .view-all:hover {
    color: var(--q-teal) !important;
}

/* ── Order Card ─────────────────────────────────── */
main .profileContent .orders-grid .order-card {
    border-color: var(--q-border) !important;
}

main .profileContent .orders-grid .order-card .order-header {
    background: var(--q-bg) !important;
    border-color: var(--q-border) !important;
}

main .profileContent .orders-grid .order-card .order-header .order-id {
    background: var(--q-purple-pale) !important;
    color: var(--q-purple) !important;
}

main .profileContent .orders-grid .order-card .order-header .status-approved {
    background: var(--q-teal-pale) !important;
    color: var(--q-teal-dark) !important;
}

/* ── Order Info Items ───────────────────────────── */
main .profileContent .orders-grid .order-card .order-body .order-details .info-grid .info-item {
    background: var(--q-bg) !important;
}

main .profileContent .orders-grid .order-card .order-body .order-details .info-grid .info-item:hover {
    background: var(--q-purple-pale) !important;
}

/* ── Customer Section ───────────────────────────── */
main .profileContent .orders-grid .order-card .order-body .order-details .customer-section {
    background: var(--q-purple-pale) !important;
}

main .profileContent .orders-grid .order-card .order-body .order-details .customer-section .customer-info img {
    border-color: var(--q-border) !important;
}

main .profileContent .orders-grid .order-card .order-body .order-details .customer-section .customer-info .customer-text h6 {
    color: var(--q-purple) !important;
}

main .profileContent .orders-grid .order-card .order-body .order-details .customer-section .contact-actions .contact-btn {
    color: var(--q-purple) !important;
    border-color: var(--q-border) !important;
}

main .profileContent .orders-grid .order-card .order-body .order-details .customer-section .contact-actions .contact-btn:hover {
    background: var(--q-teal) !important;
    color: var(--q-white) !important;
    border-color: var(--q-teal) !important;
}

/* ── CV / Worker Media ──────────────────────────── */
main .profileContent .orders-grid .order-card .order-body .worker-media .cv-image img {
    border-color: var(--q-border) !important;
}

main .profileContent .orders-grid .order-card .order-body .worker-media .cv-image img:hover {
    border-color: var(--q-teal) !important;
}

main .profileContent .orders-grid .worker-media .title i {
    color: var(--q-purple) !important;
}

main .profileContent .orders-grid .worker-media .swiper.workerCvSlider a {
    border-color: var(--q-border) !important;
}

main .profileContent .orders-grid .worker-media .swiper.workerCvSlider a:hover {
    border-color: var(--q-teal) !important;
}

/* ── Edit Profile Form ──────────────────────────── */
main .profileContentCol__title {
    color: var(--q-purple) !important;
}

main .profileContentCol .editProfileForm .form-control:focus {
    border-color: var(--q-teal) !important;
    box-shadow: 0 0 0 3px rgba(0, 180, 166, .15) !important;
}

main .profileContentCol .editProfileForm .site-button {
    background: linear-gradient(135deg, var(--q-purple), var(--q-teal)) !important;
    color: var(--q-white) !important;
}

main .profileContentCol .editProfileForm .site-button:hover {
    background: linear-gradient(135deg, var(--q-purple-mid), var(--q-teal-dark)) !important;
    box-shadow: 0 6px 20px rgba(45, 27, 105, .25) !important;
}

/* ── Notifications ──────────────────────────────── */
main .notifications .section-title {
    color: var(--q-purple) !important;
}

main .notifications .notification-card {
    border-color: var(--q-border) !important;
}

main .notifications .notification-card .notif-icon {
    background: var(--q-teal-pale) !important;
}

main .notifications .notification-card .notif-icon i {
    color: var(--q-teal) !important;
}

/* ── Complaints ─────────────────────────────────── */
main .complaints .complaints-header h3 {
    color: var(--q-purple) !important;
}

main .complaints .complaints-header .add-btn {
    background: var(--q-teal) !important;
    color: var(--q-white) !important;
}

main .complaints .complaints-header .add-btn:hover {
    background: var(--q-teal-dark) !important;
}

main .complaints .complaints-table tbody a {
    color: var(--q-teal-dark) !important;
}

main .complaints .complaints-table tbody .solved {
    background: var(--q-teal-pale) !important;
    color: var(--q-teal-dark) !important;
}

/* ── Complaint Modal ────────────────────────────── */
main .complaintModal .modal-body .title {
    color: var(--q-purple) !important;
}

main .complaintModal .modal-body .form-group .form-control:focus,
main .complaintModal .modal-body .form-select:focus {
    border-color: var(--q-teal) !important;
    box-shadow: 0 0 0 3px rgba(0, 180, 166, .15) !important;
}

main .complaintModal .modal-body .file-upload .upload-box {
    border-color: var(--q-border) !important;
    background: var(--q-bg) !important;
}

main .complaintModal .modal-body .file-upload .upload-box:hover {
    border-color: var(--q-teal) !important;
    background: var(--q-teal-pale) !important;
}

main .complaintModal .modal-body .file-upload .upload-box .upload-content {
    color: var(--q-purple) !important;
}

main .complaintModal .modal-body .submitBtn {
    background: linear-gradient(135deg, var(--q-purple), var(--q-teal)) !important;
    color: var(--q-white) !important;
}

main .complaintModal .modal-body .submitBtn:hover {
    background: linear-gradient(135deg, var(--q-purple-mid), var(--q-teal-dark)) !important;
}
