/* ============================================================
   FAN AL-MAHARAH — GLOBAL LTR STYLESHEET (English)
   Brand: #2e3192 | Gold: #c9a84c | Dark: #1a1a2e
   ============================================================ */

/* --- TOKENS --- */
:root {
  --brand:       #2e3192;
  --brand-dark:  #1e2070;
  --brand-light: #4a4db5;
  --brand-pale:  rgba(46,49,146,0.07);
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-pale:   rgba(201,168,76,0.12);
  --cream:       #f9f7f2;
  --dark:        #1a1a2e;
  --text:        #2d2d2d;
  --text-muted:  #6b6b7a;
  --border:      #e5e0d8;
  --white:       #ffffff;
  --success:     #1a7a56;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 20px rgba(46,49,146,0.10);
  --shadow-lg:   0 8px 40px rgba(46,49,146,0.14);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --transition:  all 0.28s cubic-bezier(0.4,0,0.2,1);
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
}

/* --- RESET --- */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font-body);color:var(--text);background:var(--white);overflow-x:hidden;line-height:1.65;font-size:15px}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button{font-family:inherit;cursor:pointer}
input,select,textarea{font-family:inherit}

/* --- LAYOUT --- */
.container{max-width:1200px;margin:0 auto;padding:0 24px}
.container-sm{max-width:860px;margin:0 auto;padding:0 24px}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:48px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.grid-auto{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:24px}
.flex{display:flex;align-items:center}
.flex-between{display:flex;align-items:center;justify-content:space-between}
.flex-center{display:flex;align-items:center;justify-content:center}
.gap-8{gap:8px} .gap-12{gap:12px} .gap-16{gap:16px} .gap-24{gap:24px}

/* --- TYPOGRAPHY --- */
h1,h2,h3,h4,h5{font-family:var(--font-display);font-weight:700;color:var(--dark);line-height:1.2}
h1{font-size:clamp(32px,4.5vw,56px)}
h2{font-size:clamp(26px,3.5vw,40px)}
h3{font-size:clamp(18px,2vw,22px)}
h4{font-size:16px;font-weight:600}
p{color:var(--text-muted);line-height:1.75}
.text-brand{color:var(--brand)}
.text-gold{color:var(--gold)}
.text-dark{color:var(--dark)}
.text-muted{color:var(--text-muted)}
.text-white{color:var(--white)}
.text-sm{font-size:13px}
.text-xs{font-size:11px}
.fw-500{font-weight:500}
.fw-400{font-weight:400}

/* --- SECTION LAYOUT --- */
section{padding:56px 0}
.section-sm{padding:40px 0}
.section-header{text-align:center;margin-bottom:36px}
.eyebrow{display:inline-block;font-size:11px;font-weight:500;letter-spacing:2px;text-transform:uppercase;color:var(--brand);background:var(--brand-pale);padding:4px 14px;border-radius:20px;margin-bottom:12px}
.section-title{margin-bottom:14px}
.section-desc{max-width:580px;margin:0 auto;font-size:15px}

/* --- LANG BAR --- */
.lang-bar{background:var(--dark);color:rgba(255,255,255,0.7);font-size:12px;padding:7px 0;text-align:center;letter-spacing:0.3px}
.lang-bar a{color:var(--gold-light);margin:0 10px;transition:var(--transition);font-weight:500}
.lang-bar a:hover{color:#fff}
.lang-bar .sep{opacity:0.3;margin:0 4px}

/* --- NAV --- */
.site-nav{background:var(--white);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:200;box-shadow:var(--shadow-sm)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:0 24px;height:64px;max-width:1200px;margin:0 auto}
.nav-logo{display:flex;align-items:center;gap:12px}
.logo-mark{width:42px;height:42px;background:var(--brand);border-radius:10px;display:flex;align-items:center;justify-content:center;color:var(--white);font-family:var(--font-display);font-size:17px;font-weight:700;flex-shrink:0}
.logo-text-wrap{display:flex;flex-direction:column;gap:1px}
.logo-name{font-family:var(--font-display);font-size:15px;font-weight:700;color:var(--brand);line-height:1}
.logo-sub{font-size:10px;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.8px}
.nav-menu{display:flex;align-items:center;gap:24px}
.nav-menu a{font-size:18px;color:var(--text);padding:7px 12px;border-radius:var(--radius-sm);transition:var(--transition);font-weight:400}
.nav-menu a:hover,.nav-menu a.active{color:var(--brand);background:var(--brand-pale)}
.nav-cta{background:var(--brand);color:var(--white)!important;padding:8px 18px;border-radius:var(--radius-sm);font-weight:500;display:inline-block;transition:var(--transition);font-size:18px}
.nav-cta:hover{background:var(--brand-dark)!important}
.nav-cta-wrap{display:flex;align-items:center}
.nav-hamburger{display:none;flex-direction:column;gap:5px;padding:6px;cursor:pointer}
.nav-hamburger span{width:22px;height:2px;background:var(--text);border-radius:2px;transition:var(--transition)}
.mobile-nav{display:none;position:fixed;inset:0;background:var(--white);z-index:300;flex-direction:column;padding:24px}
.mobile-nav.open{display:flex}
.mobile-nav-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:32px}
.mobile-nav-close{font-size:28px;color:var(--text-muted);cursor:pointer;line-height:1}
.mobile-nav-links{display:flex;flex-direction:column;gap:4px;flex:1}
.mobile-nav-links a{font-size:18px;color:var(--dark);padding:14px 16px;border-radius:var(--radius-md);transition:var(--transition)}
.mobile-nav-links a:hover{background:var(--cream)}
.mobile-nav-links a.active{color:var(--brand);background:var(--brand-pale)}
.mobile-nav-footer{padding-top:24px;border-top:1px solid var(--border)}
.mobile-nav-footer a{display:block;background:var(--brand);color:var(--white);text-align:center;padding:14px;border-radius:var(--radius-md);font-weight:500;font-size:16px}

/* --- BUTTONS --- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:12px 24px;border-radius:var(--radius-md);font-size:14px;font-weight:500;border:none;transition:var(--transition);cursor:pointer;white-space:nowrap}
.btn-primary{background:var(--brand);color:var(--white)}
.btn-primary:hover{background:var(--brand-dark);transform:translateY(-1px);box-shadow:var(--shadow-md)}
.btn-gold{background:var(--gold);color:var(--dark)}
.btn-gold:hover{background:var(--gold-light);transform:translateY(-1px)}
.btn-outline{background:transparent;color:var(--brand);border:1.5px solid var(--brand)}
.btn-outline:hover{background:var(--brand-pale)}
.btn-outline-white{background:transparent;color:var(--white);border:1.5px solid rgba(255,255,255,0.5)}
.btn-outline-white:hover{background:rgba(255,255,255,0.1);border-color:var(--white)}
.btn-ghost{background:transparent;color:var(--text-muted)}
.btn-ghost:hover{color:var(--brand);background:var(--brand-pale)}
.btn-lg{padding:15px 32px;font-size:15px}
.btn-sm{padding:8px 16px;font-size:12px}
.btn-wa{background:#25d366;color:#fff}
.btn-wa:hover{background:#1fb855;transform:translateY(-1px)}
.btn-full{width:100%}

/* --- HERO --- */
.hero{background:linear-gradient(140deg,#12143a 0%,#2e3192 55%,#1a1f6a 100%);color:var(--white);padding:72px 0 60px;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-40%;right:-15%;width:700px;height:700px;background:radial-gradient(circle,rgba(201,168,76,0.07) 0%,transparent 60%);pointer-events:none}
.hero::after{content:'';position:absolute;bottom:-20%;left:-10%;width:500px;height:500px;background:radial-gradient(circle,rgba(255,255,255,0.025) 0%,transparent 60%);pointer-events:none}
.hero-inner{display:grid;grid-template-columns:1fr 420px;gap:64px;align-items:center;position:relative;z-index:1}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(201,168,76,0.15);border:1px solid rgba(201,168,76,0.38);color:var(--gold-light);padding:6px 14px;border-radius:20px;font-size:11px;font-weight:500;margin-bottom:20px;letter-spacing:0.3px}
.hero-dot{width:6px;height:6px;background:var(--gold);border-radius:50%;animation:blink 2s infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0.35}}
.hero h1{font-size:clamp(34px,4.5vw,58px);color:var(--white);margin-bottom:18px;line-height:1.12}
.hero h1 span{color:var(--gold-light)}
.hero h1 p{color:inherit;font-size:inherit;font-family:inherit;display:inline}
.hero h1 strong, .hero h1 b{color:var(--gold-light);font-weight:inherit}
.hero-sub{font-size:16px;color:rgba(255,255,255,0.75);line-height:1.75;margin-bottom:34px;font-weight:300}
.hero-sub p{color:inherit}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:36px}
.hero-trust{display:flex;gap:20px;flex-wrap:wrap}
.hero-trust-item{display:flex;align-items:center;gap:7px;font-size:12px;color:rgba(255,255,255,0.75);background:rgba(255,255,255,0.07);padding:7px 12px;border-radius:6px}
.hero-trust-item svg{flex-shrink:0;color:var(--gold-light)}
.hero-panel{background:rgba(255,255,255,0.065);backdrop-filter:blur(12px);border:1px solid rgba(255,255,255,0.12);border-radius:18px;padding:28px;display:flex;flex-direction:column;gap:18px}
.hero-stats{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.hero-stat{background:rgba(255,255,255,0.07);border-radius:10px;padding:16px;text-align:center}
.hero-stat-num{font-family:var(--font-display);font-size:28px;font-weight:700;color:var(--gold-light);line-height:1}
.hero-stat-lbl{font-size:10px;color:rgba(255,255,255,0.55);margin-top:4px;text-transform:uppercase;letter-spacing:0.5px}
.hero-license{background:var(--gold-pale);border:1px solid rgba(201,168,76,0.35);border-radius:10px;padding:14px 16px;display:flex;align-items:center;gap:12px}
.lic-icon{width:36px;height:36px;background:var(--gold);border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--dark)}
.lic-text small{display:block;font-size:10px;color:rgba(255,255,255,0.6);text-transform:uppercase;letter-spacing:0.5px;margin-bottom:3px}
.lic-text strong{font-size:13px;color:var(--white);font-weight:500;display:block}

/* --- PAGE HERO (inner pages) --- */
.page-hero{background:linear-gradient(135deg,#12143a,#2e3192);color:var(--white);padding:40px 0 32px}
.page-hero h1{color:var(--white);font-size:clamp(26px,3vw,38px);margin-bottom:10px}
.page-hero p{color:rgba(255,255,255,0.72);font-size:15px}
.breadcrumb{display:flex;align-items:center;gap:8px;font-size:12px;color:rgba(255,255,255,0.55);margin-bottom:14px}
.breadcrumb a{color:var(--gold-light);transition:var(--transition)}
.breadcrumb a:hover{color:var(--white)}
.breadcrumb span{opacity:0.4}

/* --- TRUST STRIP --- */
.trust-strip{background:var(--cream);border-bottom:1px solid var(--border);padding:22px 0}
.trust-items{display:flex;align-items:center;justify-content:center;gap:36px;flex-wrap:wrap}
.trust-item{display:flex;align-items:center;gap:10px;font-size:13px;color:var(--text-muted)}
.trust-item-icon{width:30px;height:30px;background:var(--brand);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--white);flex-shrink:0}
.trust-item strong{color:var(--text);font-weight:500}

/* --- CARDS --- */
.card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);transition:var(--transition)}
.card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.card-padded{padding:28px}

/* --- SERVICE CARDS --- */
.service-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px;transition:var(--transition);position:relative;overflow:hidden}
.service-card::after{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--brand);transform:scaleX(0);transform-origin:left;transition:var(--transition)}
.service-card:hover::after{transform:scaleX(1)}
.service-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px);border-color:rgba(46,49,146,0.2)}
.service-icon{width:52px;height:52px;background:var(--brand-pale);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:18px;color:var(--brand)}
.service-icon svg{width:26px;height:26px;stroke:currentColor;fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.service-card h3{font-size:17px;margin-bottom:8px;color:var(--dark)}
.service-card p{font-size:14px;line-height:1.65;margin-bottom:14px}
.service-list{display:flex;flex-direction:column;gap:7px;margin-top:14px}
.service-list li{font-size:13px;color:var(--text-muted);display:flex;align-items:flex-start;gap:7px;line-height:1.5}
.service-list li::before{content:'✓';color:var(--success);font-size:11px;margin-top:2px;flex-shrink:0;font-weight:700}

/* --- CANDIDATE CARDS (rozana-style) --- */
.candidates-layout{display:grid;grid-template-columns:260px 1fr;gap:28px;align-items:start}
.filter-sidebar{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:22px;position:sticky;top:80px}
.filter-sidebar h3{font-size:14px;font-weight:600;color:var(--dark);margin-bottom:18px;font-family:var(--font-body);display:flex;align-items:center;gap:8px}
.filter-group{margin-bottom:20px}
.filter-group label{display:block;font-size:11px;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.7px;margin-bottom:8px}
.filter-group select,.filter-group input{width:100%;border:1px solid var(--border);border-radius:var(--radius-sm);padding:9px 12px;font-size:13px;color:var(--text);outline:none;transition:var(--transition);background:var(--white)}
.filter-group select:focus,.filter-group input:focus{border-color:var(--brand)}
.filter-divider{border:none;border-top:1px solid var(--border);margin:18px 0}
.btn-filter-apply{width:100%;background:var(--brand);color:var(--white);border:none;padding:11px;border-radius:var(--radius-md);font-size:14px;font-weight:500;cursor:pointer;transition:var(--transition)}
.btn-filter-apply:hover{background:var(--brand-dark)}
.btn-filter-reset{width:100%;background:transparent;color:var(--text-muted);border:1px solid var(--border);padding:9px;border-radius:var(--radius-md);font-size:13px;cursor:pointer;margin-top:8px;transition:var(--transition)}
.btn-filter-reset:hover{border-color:var(--brand);color:var(--brand)}
.candidates-main{}
.candidates-toolbar{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px;flex-wrap:wrap;gap:12px}
.candidates-count{font-size:13px;color:var(--text-muted)}
.candidates-count strong{color:var(--dark);font-weight:600}
.sort-select{border:1px solid var(--border);border-radius:var(--radius-sm);padding:7px 12px;font-size:13px;color:var(--text);outline:none;background:var(--white);cursor:pointer}
.candidates-grid-main{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:18px}

/* Candidate card — rozana inspired */
.cand-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:var(--transition);cursor:pointer;position:relative}
.cand-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.cand-card-photo{height:210px;position:relative;display:flex;align-items:center;justify-content:center;overflow:hidden}
.cand-avatar{width:90px;height:90px;border-radius:50%;border:3px solid var(--white);display:flex;align-items:center;justify-content:center;font-size:30px;font-weight:700;color:var(--white);font-family:var(--font-display);box-shadow:0 4px 16px rgba(0,0,0,0.15)}
.cand-flag{position:absolute;top:10px;right:10px;background:var(--white);border-radius:20px;padding:4px 10px;font-size:11px;font-weight:500;color:var(--text);box-shadow:var(--shadow-sm);display:flex;align-items:center;gap:5px}
.cand-avail{position:absolute;bottom:10px;left:10px;background:var(--success);color:var(--white);border-radius:4px;padding:3px 9px;font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:0.5px}
.cand-new{position:absolute;top:10px;left:10px;background:var(--gold);color:var(--dark);border-radius:4px;padding:3px 9px;font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:0.5px}
.cand-card-body{padding:14px 16px}
.cand-name{font-size:15px;font-weight:600;color:var(--dark);margin-bottom:3px;font-family:var(--font-body)}
.cand-role-line{font-size:12px;color:var(--text-muted);margin-bottom:10px;display:flex;align-items:center;gap:6px}
.cand-role-sep{color:var(--border)}
.cand-skills{display:flex;gap:5px;flex-wrap:wrap;margin-bottom:12px}
.skill-pill{background:var(--brand-pale);color:var(--brand);padding:3px 8px;border-radius:4px;font-size:11px;font-weight:500}
.cand-card-footer{display:flex;align-items:center;justify-content:space-between;border-top:1px solid var(--border);padding-top:10px}
.cand-salary{font-size:14px;font-weight:600;color:var(--dark)}
.cand-salary-sub{font-size:10px;color:var(--text-muted);font-weight:400}
.cand-exp{font-size:11px;color:var(--text-muted);display:flex;align-items:center;gap:4px;margin-bottom:8px}

/* --- HOW IT WORKS --- */
.steps-row{display:grid;grid-template-columns:repeat(3,1fr);gap:0;position:relative}
.steps-row::before{content:'';position:absolute;top:39px;left:calc(16.6% + 30px);right:calc(16.6% + 30px);height:2px;background:linear-gradient(90deg,var(--brand),var(--gold));z-index:0}
.step{text-align:center;padding:0 24px;position:relative;z-index:1}
.step-num{width:78px;height:78px;background:var(--brand);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 22px;font-family:var(--font-display);font-size:26px;font-weight:700;color:var(--white);border:4px solid var(--white);box-shadow:0 0 0 2px var(--brand)}
.step h3{font-size:17px;margin-bottom:8px;font-family:var(--font-body);font-weight:600}
.step p{font-size:14px;line-height:1.65}

/* --- COMPLIANCE BAND --- */
.compliance-band{background:linear-gradient(135deg,var(--brand),#1a1f6a);color:var(--white);padding:60px 0}
.compliance-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.compliance-item h4{font-size:14px;font-weight:600;color:var(--gold-light);margin-bottom:7px;font-family:var(--font-body)}
.compliance-item p{font-size:13px;color:rgba(255,255,255,0.7);line-height:1.6}
.compliance-icon{width:40px;height:40px;background:rgba(255,255,255,0.1);border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:14px;color:var(--gold-light)}
.compliance-icon svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}

/* --- TESTIMONIALS --- */
.testimonial-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:26px}
.t-stars{color:var(--gold);font-size:14px;margin-bottom:10px;letter-spacing:1px}
.t-quote{font-size:32px;color:var(--gold-pale);font-family:var(--font-display);line-height:0.8;margin-bottom:10px}
.t-text{font-size:14px;color:var(--text-muted);line-height:1.72;margin-bottom:18px;font-style:italic}
.t-author{display:flex;align-items:center;gap:12px}
.t-avatar{width:40px;height:40px;border-radius:50%;background:var(--brand);display:flex;align-items:center;justify-content:center;font-size:15px;font-weight:700;color:var(--white);flex-shrink:0}
.t-name{font-size:14px;font-weight:600;color:var(--dark)}
.t-city{font-size:12px;color:var(--text-muted)}

/* --- ABOUT --- */
.about-visual{background:linear-gradient(135deg,#12143a,var(--brand));border-radius:var(--radius-xl);height:400px;position:relative;display:flex;align-items:center;justify-content:center;overflow:hidden}
.about-visual::after{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%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z' fill='%23fff' fill-opacity='0.03'/%3E%3C/svg%3E")}
.about-monogram{font-family:var(--font-display);font-size:72px;font-weight:700;color:var(--gold-light);opacity:0.9;position:relative;z-index:1}
.about-lic-badge{position:absolute;bottom:20px;left:20px;right:20px;background:rgba(255,255,255,0.09);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,0.18);border-radius:10px;padding:14px 16px;color:var(--white);z-index:2}
.alb-label{font-size:10px;opacity:0.6;text-transform:uppercase;letter-spacing:1px;margin-bottom:4px}
.alb-num{font-family:var(--font-display);font-size:20px;font-weight:700;color:var(--gold-light)}
.alb-exp{font-size:11px;opacity:0.55;margin-top:4px}
.about-features{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:28px}
.about-feat{display:flex;gap:12px;align-items:flex-start}
.feat-icon{width:34px;height:34px;background:var(--brand-pale);border-radius:8px;display:flex;align-items:center;justify-content:center;color:var(--brand);flex-shrink:0}
.feat-icon svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.feat-title{font-size:13px;font-weight:600;color:var(--dark);margin-bottom:2px}
.feat-sub{font-size:12px;color:var(--text-muted)}

/* --- SERVICE DETAIL PAGE --- */
.service-detail-hero{background:linear-gradient(135deg,#12143a,var(--brand));color:var(--white);padding:64px 0}
.service-detail-hero h1{color:var(--white)}
.service-detail-hero p{color:rgba(255,255,255,0.75)}
.detail-section h2{font-size:22px;margin-bottom:12px}
.process-list{display:flex;flex-direction:column;gap:20px;margin:24px 0}
.process-item{display:flex;gap:16px;align-items:flex-start}
.process-num{width:32px;height:32px;border-radius:50%;background:var(--brand);color:var(--white);display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;flex-shrink:0;margin-top:2px}
.process-text h4{font-size:15px;font-weight:600;color:var(--dark);margin-bottom:4px}
.process-text p{font-size:14px;color:var(--text-muted)}
.faq-list{display:flex;flex-direction:column;gap:12px}
.faq-item{border:1px solid var(--border);border-radius:var(--radius-md);overflow:hidden}
.faq-q{padding:16px 20px;font-size:14px;font-weight:500;color:var(--dark);cursor:pointer;display:flex;align-items:center;justify-content:space-between;transition:var(--transition)}
.faq-q:hover{background:var(--cream)}
.faq-q.open{background:var(--brand-pale);color:var(--brand)}
.faq-a{padding:0 20px;max-height:0;overflow:hidden;transition:max-height 0.3s ease,padding 0.3s ease;font-size:14px;color:var(--text-muted);line-height:1.7}
.faq-a.open{max-height:200px;padding:14px 20px}
.faq-arrow{transition:var(--transition);flex-shrink:0}
.faq-q.open .faq-arrow{transform:rotate(180deg)}

/* --- CONTACT --- */
.contact-grid{display:grid;grid-template-columns:1fr 1.6fr;gap:48px}
.contact-info h3{font-size:24px;margin-bottom:14px}
.contact-items{display:flex;flex-direction:column;gap:16px;margin-top:24px}
.contact-item{display:flex;gap:14px;align-items:flex-start}
.ci-icon{width:40px;height:40px;background:var(--brand);border-radius:10px;display:flex;align-items:center;justify-content:center;color:var(--white);flex-shrink:0}
.ci-icon svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.ci-label{font-size:10px;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.5px;display:block;margin-bottom:3px}
.ci-val{font-size:14px;color:var(--dark)}
.ci-val a{color:var(--dark);transition:var(--transition)}
.ci-val a:hover{color:var(--brand)}
.contact-form{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-xl);padding:32px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-group{margin-bottom:16px}
.form-group label{display:block;font-size:11px;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.5px;margin-bottom:6px}
.form-group input,.form-group select,.form-group textarea{width:100%;border:1px solid var(--border);border-radius:var(--radius-md);padding:11px 14px;font-size:14px;color:var(--text);outline:none;transition:var(--transition);background:var(--white)}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--brand);box-shadow:0 0 0 3px rgba(46,49,146,0.07)}
.form-group textarea{resize:vertical;min-height:110px}

/* --- MODAL --- */
.modal-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.62);z-index:500;display:none;align-items:center;justify-content:center;padding:20px}
.modal-overlay.open{display:flex}
.modal-box{background:var(--white);border-radius:var(--radius-xl);max-width:540px;width:100%;max-height:90vh;overflow-y:auto;display:flex;flex-direction:column;box-shadow:0 20px 60px rgba(0,0,0,0.35)}
.modal-head{padding:20px 24px;display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;background:linear-gradient(135deg,var(--brand) 0%,var(--brand-dark) 100%);z-index:1;border-radius:var(--radius-xl) var(--radius-xl) 0 0}
.modal-head h3{font-size:18px;color:var(--white);font-family:var(--font-body);font-weight:600}
.modal-close{background:rgba(255,255,255,0.12);border:none;border-radius:50%;width:30px;height:30px;font-size:20px;line-height:1;color:rgba(255,255,255,0.85);cursor:pointer;padding:0;display:flex;align-items:center;justify-content:center;transition:var(--transition)}
.modal-close:hover{color:var(--white);background:rgba(255,255,255,0.22)}
.modal-body-inner{padding:24px;flex:1;overflow-y:auto}
.modal-avatar{width:90px;height:90px;border-radius:50%;margin:0 auto 14px;display:flex;align-items:center;justify-content:center;font-size:30px;font-weight:700;color:var(--white);font-family:var(--font-display)}
.modal-name{text-align:center;font-size:18px;font-weight:600;color:var(--dark);margin-bottom:4px}
.modal-role-line{text-align:center;font-size:13px;color:var(--text-muted);margin-bottom:20px}
.modal-fields{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:18px}
.modal-field{background:var(--cream);border-radius:var(--radius-sm);padding:10px 12px}
.modal-field-label{font-size:10px;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.5px;display:block;margin-bottom:3px}
.modal-field-val{font-size:14px;color:var(--dark)}
.modal-skills-label{font-size:11px;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.5px;margin-bottom:8px}
.modal-skills{display:flex;gap:7px;flex-wrap:wrap;margin-bottom:18px}
.modal-salary-big{text-align:center;font-size:22px;font-weight:700;color:var(--brand);margin-bottom:18px;font-family:var(--font-display)}

.modal-footer{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;padding:16px 24px;border-top:1px solid var(--border);background:linear-gradient(180deg,var(--white) 0%,var(--cream) 100%);position:sticky;bottom:0;border-radius:0 0 var(--radius-xl) var(--radius-xl)}
.modal-footer-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:11px 22px;border-radius:24px;font-size:14px;font-weight:600;cursor:pointer;border:none;text-decoration:none;transition:var(--transition);flex:1 1 auto;min-width:120px;text-align:center}
.modal-footer-btn-primary{background:linear-gradient(135deg,#25d366,#1eb958);color:#fff}
.modal-footer-btn-primary:hover{filter:brightness(1.06);transform:translateY(-1px)}
.modal-footer-btn-outline{background:transparent;border:1.5px solid var(--brand);color:var(--brand)}
.modal-footer-btn-outline:hover{background:var(--brand-pale)}
.modal-footer-btn-ghost{background:transparent;color:var(--text-muted)}
.modal-footer-btn-ghost:hover{color:var(--brand);background:var(--brand-pale)}

/* --- FOOTER --- */
.site-footer{background:var(--dark);color:rgba(255,255,255,0.7);padding:56px 0 28px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:44px}
.footer-links-above{display:grid;grid-template-columns:1fr 1fr;gap:40px;margin-bottom:16px}
.footer-links-column{display:flex;flex-direction:column;gap:12px}
.footer-links-column:nth-child(2){align-items:flex-end}
.footer-links-column:nth-child(2) .footer-links-pills{justify-content:flex-end}
.footer-links-column:nth-child(2) .footer-links-label{text-align:end}
.footer-links-label{font-size:13px;font-weight:600;color:rgba(255,255,255,0.45);text-transform:uppercase;letter-spacing:0.5px}
html[lang="ar"] .footer-links-label, html[dir="rtl"] .footer-links-label{text-align:right}
.footer-links-pills{display:flex;flex-wrap:wrap;gap:8px 10px}
.footer-pill{font-size:12.5px;color:rgba(255,255,255,0.7);border:1px solid rgba(255,255,255,0.15);border-radius:20px;padding:5px 14px;transition:var(--transition);text-decoration:none}
.footer-pill:hover{color:var(--white);border-color:rgba(255,255,255,0.4);background:rgba(255,255,255,0.06);transform:translateY(-1px)}
@media(max-width:768px){
  .footer-links-above{grid-template-columns:1fr;gap:24px}
  .footer-links-column:nth-child(2){align-items:flex-start}
  .footer-links-column:nth-child(2) .footer-links-pills{justify-content:flex-start}
  .footer-links-column:nth-child(2) .footer-links-label{text-align:start}
}
.footer-brand p{font-size:13px;line-height:1.7;color:rgba(255,255,255,0.5);margin:14px 0}
.footer-lic{display:inline-flex;align-items:center;gap:8px;background:var(--gold-pale);border:1px solid rgba(201,168,76,0.25);border-radius:6px;padding:6px 12px;font-size:11px;color:var(--gold-light)}
.footer-col h4{font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;color:rgba(255,255,255,0.4);margin-bottom:16px}
.footer-col ul{display:flex;flex-direction:column;gap:9px}
.footer-col ul a{font-size:13px;color:rgba(255,255,255,0.6);transition:var(--transition)}
.footer-col ul a:hover{color:var(--white)}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.07);padding-top:24px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px}
.footer-bottom p{font-size:12px;color:rgba(255,255,255,0.35)}

/* --- WA FLOAT --- */
.wa-float{position:fixed;bottom:26px;right:26px;z-index:400;display:flex;flex-direction:column;align-items:flex-end;gap:8px}
.wa-btn{width:56px;height:56px;background:#25d366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 18px rgba(37,211,102,0.42);text-decoration:none;transition:var(--transition)}
.wa-btn:hover{transform:scale(1.08)}
.wa-tip{background:var(--dark);color:var(--white);padding:7px 13px;border-radius:7px;font-size:12px;white-space:nowrap;opacity:0;pointer-events:none;transition:var(--transition)}
.wa-float:hover .wa-tip{opacity:1}

/* --- MISC UTILS --- */
.bg-cream{background:var(--cream)}
.bg-white{background:var(--white)}
.divider{border:none;border-top:1px solid var(--border);margin:0}
.badge{display:inline-flex;align-items:center;padding:3px 9px;border-radius:4px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:0.5px}
.badge-success{background:rgba(26,122,86,0.1);color:var(--success)}
.badge-gold{background:var(--gold-pale);color:#8a6419}
.badge-brand{background:var(--brand-pale);color:var(--brand)}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media(max-width:1024px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .hero-inner{grid-template-columns:1fr;gap:40px}
  .hero-panel{display:none}
  .compliance-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:900px){
  .grid-2{grid-template-columns:1fr;gap:32px}
  .grid-3{grid-template-columns:1fr 1fr}
  .steps-row{grid-template-columns:1fr;gap:32px}
  .steps-row::before{display:none}
  .candidates-layout{grid-template-columns:1fr}
  .filter-sidebar{position:static;display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:14px}
  .filter-sidebar h3,.filter-divider,.btn-filter-reset{display:none}
  .btn-filter-apply{grid-column:1/-1}
  .contact-grid{grid-template-columns:1fr}
  .about-visual{height:280px}
}
@media(max-width:680px){
  section{padding:40px 0}
  .nav-menu{display:none}
  .nav-cta-wrap{display:none}
  .nav-hamburger{display:flex}
  .grid-3{grid-template-columns:1fr}
  .compliance-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .form-row{grid-template-columns:1fr}
  .modal-fields{grid-template-columns:1fr}
  .modal-footer{flex-direction:column}
  .modal-footer-btn{width:100%}
  .hero-ctas{flex-direction:column}
  .trust-items{flex-direction:column;align-items:flex-start;max-width:300px;margin:0 auto}
  .candidates-grid-main{grid-template-columns:repeat(auto-fill,minmax(160px,1fr))}
  .about-features{grid-template-columns:1fr}
}

/* ============================================================
   CANDIDATE ROW CARDS (full-width, horizontal layout)
   ============================================================ */
.candidates-grid-main{display:flex;flex-direction:column;gap:20px}
.cand-card{background:var(--white);border:1px solid rgba(46,49,146,0.08);border-radius:var(--radius-lg);overflow:hidden;transition:var(--transition);cursor:pointer;display:grid;grid-template-columns:145px 1fr;align-items:stretch;box-shadow:0 4px 24px rgba(0,0,0,0.03)}
.cand-card:hover{box-shadow:0 12px 36px rgba(46,49,146,0.09);transform:translateY(-3px);border-color:rgba(46,49,146,0.2)}

/* Photo panel — left side */
.cand-card-photo{height:auto;min-height:200px;position:relative;display:flex;align-items:center;justify-content:center;overflow:hidden;background:linear-gradient(135deg,#f5f7fa 0%,#e4e8f0 100%)}
.cand-card-photo img{transition:transform 0.5s ease;filter:drop-shadow(0 4px 12px rgba(0,0,0,0.06))}
.cand-card:hover .cand-card-photo img{transform:scale(1.04)}
.cand-avatar{width:70px;height:70px;border-radius:50%;border:3px solid var(--white);display:flex;align-items:center;justify-content:center;font-size:24px;font-weight:700;color:var(--white);font-family:var(--font-display);box-shadow:0 4px 16px rgba(0,0,0,0.18);flex-shrink:0}

/* Video play button */
.cand-video-btn{position:absolute;bottom:12px;left:50%;transform:translateX(-50%);background:rgba(255,255,255,0.92);backdrop-filter:blur(6px);border:none;border-radius:20px;padding:6px 14px;font-size:11px;font-weight:600;color:var(--brand);cursor:pointer;display:flex;align-items:center;gap:5px;white-space:nowrap;transition:var(--transition);box-shadow:0 2px 10px rgba(0,0,0,0.15)}
.cand-video-btn:hover{background:var(--white);color:var(--brand-dark);transform:translateX(-50%) scale(1.04)}
.cand-video-btn svg{flex-shrink:0}
.cand-play-icon{width:20px;height:20px;background:var(--brand);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:var(--transition)}
.cand-video-btn:hover .cand-play-icon{background:var(--brand-dark)}

/* Right body */
.cand-card-body{padding:18px 20px;display:flex;flex-direction:column;justify-content:space-between;gap:6px}
.cand-card-top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
.cand-name{font-size:16.5px;font-weight:700;color:var(--dark);margin-bottom:2px;font-family:var(--font-display);letter-spacing:-0.2px;line-height:1.25}
.cand-role-line{font-size:11px;color:var(--text-muted);font-weight:600;text-transform:uppercase;letter-spacing:0.5px;margin-bottom:2px}
.cand-role-line span{background:rgba(46,49,146,0.06);color:var(--brand);padding:3px 9px;border-radius:4px}
.cand-role-sep{color:var(--border)}
.cand-meta-row{display:flex;gap:16px;flex-wrap:wrap;margin:10px 0}
.cand-meta-item{display:flex;align-items:center;gap:5px;font-size:12px;color:var(--text-muted)}
.cand-meta-item svg{flex-shrink:0;opacity:0.6}
.cand-skills{display:flex;gap:5px;flex-wrap:wrap;margin:4px 0 6px}
.skill-pill{background:#f8fafc;color:#475569;border:1px solid #e2e8f0;padding:3px 9px;border-radius:12px;font-size:10.5px;font-weight:500;transition:var(--transition)}
.cand-card:hover .skill-pill{border-color:transparent;background:var(--brand-pale);color:var(--brand)}
.cand-card-footer{display:flex;align-items:center;justify-content:space-between;border-top:1px solid rgba(0,0,0,0.05);padding-top:14px;flex-wrap:wrap;gap:10px}
.cand-salary{font-size:18px;font-weight:800;color:var(--brand);font-family:var(--font-display)}
.cand-salary-sub{font-size:10px;color:var(--text-muted);font-weight:400;margin-top:1px}
.cand-badges{display:flex;gap:6px;flex-wrap:wrap}

/* Flag & status badges */
.cand-flag{position:absolute;top:10px;right:10px;background:rgba(255,255,255,0.9);backdrop-filter:blur(4px);border:1px solid rgba(0,0,0,0.05);border-radius:12px;padding:3px 8px;font-size:10px;font-weight:600;color:var(--brand-dark);box-shadow:0 2px 8px rgba(0,0,0,0.06);display:flex;align-items:center;gap:4px}
.cand-avail{background:rgba(26,122,86,0.12);color:var(--success);border-radius:4px;padding:3px 9px;font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:0.4px;display:inline-flex;align-items:center;gap:4px}
.cand-avail::before{content:'';width:6px;height:6px;background:var(--success);border-radius:50%;display:inline-block}
.cand-new{background:var(--gold-pale);color:#8a6419;border-radius:4px;padding:3px 9px;font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:0.4px}
.cand-exp{font-size:11px;color:var(--text-muted);display:flex;align-items:center;gap:4px}

.cand-card-footer .btn-sm{padding:6px 14px;border-radius:20px;font-size:12.5px;font-weight:600;transition:var(--transition)}
.cand-card-footer .btn-primary{background:linear-gradient(135deg,var(--brand) 0%,var(--brand-dark) 100%);border:none;box-shadow:0 4px 12px rgba(46,49,146,0.15);color:#fff}
.cand-card-footer .btn-primary:hover{filter:brightness(1.08);box-shadow:0 6px 16px rgba(46,49,146,0.25);transform:translateY(-1px)}
.cand-card-footer .btn-outline{border:1.5px solid var(--brand);color:var(--brand);background:transparent}
.cand-card-footer .btn-outline:hover{background:var(--brand-pale);transform:translateY(-1px)}


/* VIDEO MODAL */
.video-modal-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.85);z-index:600;display:none;align-items:center;justify-content:center;padding:20px}
.video-modal-overlay.open{display:flex}
.video-modal-box{background:var(--dark);border-radius:var(--radius-xl);max-width:700px;width:100%;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,0.5)}
.video-modal-head{padding:16px 20px;display:flex;align-items:center;justify-content:space-between;background:linear-gradient(135deg,var(--brand) 0%,var(--dark) 100%)}
.video-modal-head h4{color:var(--white);font-size:15px;font-family:var(--font-body)}
.video-modal-close{background:rgba(255,255,255,0.12);border:none;border-radius:50%;width:28px;height:28px;color:rgba(255,255,255,0.85);font-size:22px;line-height:1;cursor:pointer;transition:var(--transition);padding:0;display:flex;align-items:center;justify-content:center}
.video-modal-close:hover{color:var(--white);background:rgba(255,255,255,0.22)}
.video-placeholder{aspect-ratio:16/9;background:linear-gradient(135deg,#1a1a2e,#2e3192);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;padding:40px}
.video-placeholder-icon{width:72px;height:72px;background:rgba(255,255,255,0.1);border:2px solid rgba(255,255,255,0.2);border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:var(--transition)}
.video-placeholder-icon:hover{background:rgba(255,255,255,0.18);transform:scale(1.06)}
.video-placeholder p{color:rgba(255,255,255,0.7);font-size:14px;text-align:center;max-width:280px;line-height:1.6}
.video-placeholder small{color:rgba(255,255,255,0.35);font-size:12px}
.video-modal-actions{display:flex;gap:10px;justify-content:center;align-items:center;flex-wrap:wrap;padding:14px 16px;background:linear-gradient(135deg,var(--dark) 0%,var(--brand-dark) 100%)}
.video-action-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:10px 22px;border-radius:24px;font-size:13px;font-weight:600;text-decoration:none;border:none;cursor:pointer;color:#fff;transition:var(--transition);flex:0 1 160px;text-align:center}
.video-action-download{background:rgba(255,255,255,0.14)}
.video-action-download:hover{background:rgba(255,255,255,0.24);transform:translateY(-1px)}
.video-action-share{background:linear-gradient(135deg,#25d366,#1eb958)}
.video-action-share:hover{filter:brightness(1.06);transform:translateY(-1px)}
@media (max-width:480px){
  .video-action-btn{flex:1 1 auto;justify-content:center}
}

/* CV MODAL */
.cv-modal-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.75);z-index:600;display:none;align-items:center;justify-content:center;padding:20px}
.cv-modal-overlay.open{display:flex}
.cv-modal-box{background:var(--white);border-radius:var(--radius-xl);max-width:900px;width:100%;height:90vh;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,0.5);display:flex;flex-direction:column}
.cv-modal-head{padding:14px 18px;display:flex;align-items:center;justify-content:space-between;background:linear-gradient(135deg,var(--brand) 0%,var(--brand-dark) 100%);flex-shrink:0}
.cv-modal-head h4{color:var(--white);font-size:15px;font-family:var(--font-body);font-weight:600}
.cv-modal-close{background:rgba(255,255,255,0.12);border:none;border-radius:50%;width:28px;height:28px;color:rgba(255,255,255,0.85);font-size:22px;line-height:1;cursor:pointer;transition:var(--transition);padding:0;display:flex;align-items:center;justify-content:center}
.cv-modal-close:hover{color:var(--white);background:rgba(255,255,255,0.22)}
.cv-modal-body{position:relative;flex:1;overflow:hidden;background:var(--cream)}
.cv-modal-loading{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:var(--cream);z-index:1}
.cv-modal-spinner{width:36px;height:36px;border:3px solid var(--border);border-top-color:var(--brand);border-radius:50%;animation:cv-spin 0.8s linear infinite}
@keyframes cv-spin{to{transform:rotate(360deg)}}
@media (max-width:640px){
  .cv-modal-box{height:95vh;border-radius:var(--radius-md)}
}

/* ============================================================
   BLOG STYLES
   ============================================================ */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.blog-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:var(--transition);display:flex;flex-direction:column}
.blog-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.blog-card-img{height:180px;position:relative;overflow:hidden}
.blog-card-img-bg{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:42px;transition:var(--transition)}
.blog-card:hover .blog-card-img-bg{transform:scale(1.06)}
.blog-card-cat{position:absolute;top:12px;left:12px;background:var(--brand);color:var(--white);padding:3px 10px;border-radius:4px;font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:0.5px}
.blog-card-body{padding:20px;flex:1;display:flex;flex-direction:column}
.blog-card-date{font-size:11px;color:var(--text-muted);margin-bottom:8px;display:flex;align-items:center;gap:6px}
.blog-card-date::before{content:'';width:16px;height:1px;background:var(--border);display:inline-block}
.blog-card h3{font-size:16px;color:var(--dark);margin-bottom:8px;line-height:1.4;font-family:var(--font-body);font-weight:600}
.blog-card p{font-size:13px;color:var(--text-muted);line-height:1.65;flex:1;margin-bottom:14px}
.blog-card-read{font-size:12px;font-weight:600;color:var(--brand);display:flex;align-items:center;gap:5px;margin-top:auto;transition:var(--transition)}
.blog-card-read:hover{gap:8px}

/* Blog listing page */
.blog-hero {
  background: var(--cream);
  padding: 60px 0 32px;
  color: var(--dark);
  text-align: left;
}
.blog-hero h1 {
  color: var(--dark);
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
}
.blog-hero p {
  color: var(--text-muted);
  font-size: 15.5px;
  max-width: 720px;
  line-height: 1.65;
}
.blog-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.blog-cat-btn {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 12.5px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  text-decoration: none;
}
.blog-cat-btn:hover {
  background: var(--brand-pale);
  color: var(--brand);
  border-color: var(--brand);
}
.blog-cat-btn.active {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.blog-list-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.blog-main-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.blog-row-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 260px 1fr;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.blog-row-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--brand-light);
}
.blog-row-img {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-pale), var(--gold-pale));
}
.blog-row-img-bg {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  transition: var(--transition);
}
.blog-row-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brand);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-row-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-row-date {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.blog-row-body h2 {
  font-size: 21px;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.35;
  font-family: var(--font-display);
  font-weight: 700;
}
.blog-row-body p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.blog-card-read {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  transition: var(--transition);
}
.blog-row-card:hover .blog-card-read {
  color: var(--brand-light);
  padding-left: 4px;
}
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 80px;
}
.blog-sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.blog-sidebar-widget h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-body);
}
.blog-recent-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.blog-recent-item:last-child {
  border-bottom: none;
}
.blog-recent-num {
  width: 24px;
  height: 24px;
  background: var(--brand-pale);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  flex-shrink: 0;
}
.blog-recent-text {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.45;
  font-weight: 500;
}
.blog-recent-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
}
.blog-tag-cloud {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-tag {
  background: var(--cream);
  color: var(--text-muted);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.blog-tag:hover {
  background: var(--brand-pale);
  color: var(--brand);
  border-color: var(--brand);
}

/* Blog single post */
.post-hero {
  background: var(--cream);
  padding: 32px 0 24px;
  color: var(--dark);
  text-align: left;
}

.post-hero h1 {
  color: var(--dark);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  margin-top: 12px;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--text-muted);
}
.post-meta-dot {
  width: 4px;
  height: 4px;
  background: var(--border);
  border-radius: 50%;
}
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.post-content {
  max-width: none;
}
.post-content h2, .post-content h3 {
  font-family: var(--font-display);
  color: var(--dark);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 18px;
  line-height: 1.35;
}
.post-content h2::before, .post-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--gold);
  border-radius: 4px;
}
.post-content p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 22px;
}
.post-content ul, .post-content ol {
  margin: 0 0 22px 24px;
}
.post-content ul {
  list-style-type: disc;
}
.post-content ol {
  list-style-type: decimal;
}
.post-content li {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 8px;
}
.post-content blockquote {
  border-left: 4px solid var(--brand);
  margin: 28px 0;
  padding: 18px 24px;
  background: var(--brand-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.post-content blockquote p {
  margin: 0;
  color: var(--brand);
  font-style: italic;
  font-size: 16px;
}
.post-cover {
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  background: linear-gradient(135deg, var(--brand-pale), var(--gold-pale));
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.post-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.post-share span {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.post-share a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
}
.post-share a:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-pale);
}
.post-sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.post-sidebar-widget h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-body);
}
.post-toc{display:flex;flex-direction:column;gap:8px}
.post-toc a{font-size:13px;color:var(--text-muted);transition:var(--transition);padding:4px 0;border-bottom:1px solid var(--border);display:block}
.post-toc a:hover{color:var(--brand)}
.post-toc a:last-child{border-bottom:none}
.related-posts{display:flex;flex-direction:column;gap:12px}
.related-item{display:flex;gap:10px;align-items:flex-start}
.related-icon{width:40px;height:40px;border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0}
.related-text{font-size:13px;color:var(--dark);line-height:1.4;font-weight:500;transition:var(--transition)}
.related-text:hover{color:var(--brand)}
.related-date{font-size:11px;color:var(--text-muted);margin-top:2px}
.post-cta{background:linear-gradient(135deg,var(--brand),#1a1f6a);color:var(--white);border-radius:var(--radius-xl);padding:28px;text-align:center;margin-bottom:20px}
.post-cta h4{color:var(--white);font-size:17px;margin-bottom:8px;font-family:var(--font-body)}
.post-cta p{color:rgba(255,255,255,0.75);font-size:13px;margin-bottom:16px}

/* Responsive blog/post */
@media(max-width:900px){
  .blog-list-grid{grid-template-columns:1fr}
  .blog-sidebar{position:static}
  .blog-row-card{grid-template-columns:1fr}
  .blog-row-img-bg{min-height:160px}
  .post-layout{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr 1fr}
  .post-hero h1{font-size:clamp(20px,4vw,32px)}
}
@media(max-width:680px){
  .blog-grid{grid-template-columns:1fr}
  .cand-card{grid-template-columns:1fr}
  .cand-card-photo{min-height:220px}
  .blog-cats{gap:6px}
}

/* --- PREMIUM SERVICE HERO --- */
.svc-hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.svc-highlights{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:28px}
.svc-highlight{display:flex;gap:12px;align-items:flex-start;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.12);border-radius:10px;padding:14px}
.svc-highlight svg{flex-shrink:0;stroke:var(--gold-light)}
.svc-highlight h4{font-size:13px;font-weight:500;color:var(--white);margin-bottom:2px}
.svc-highlight p{font-size:12px;color:rgba(255,255,255,0.65);line-height:1.5}
.svc-card-price{background:rgba(201,168,76,0.12);border:1px solid rgba(201,168,76,0.3);border-radius:12px;padding:24px;text-align:center}
.svc-card-price .label{font-size:11px;color:rgba(255,255,255,0.6);text-transform:uppercase;letter-spacing:0.8px;margin-bottom:6px}
.svc-card-price .price{font-family:var(--font-display);font-size:20px;color:var(--gold-light)}
.contract-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(201,168,76,0.15);border:1px solid rgba(201,168,76,0.4);color:var(--gold-light);padding:8px 16px;border-radius:20px;font-size:13px;margin-bottom:20px}

@media(max-width:900px){
  .svc-hero-grid{grid-template-columns:1fr;gap:40px}
  .svc-highlights{grid-template-columns:1fr}
}

/* --- LEGAL PAGES STYLE --- */
.legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  margin-top: -24px;
  position: relative;
  z-index: 10;
}
.legal-prose h3 {
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 600;
}
.legal-prose h3:first-child {
  margin-top: 0;
}
.legal-prose p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.legal-prose p:last-child {
  margin-bottom: 0;
}
.legal-prose ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 18px;
}
.legal-prose li {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 8px;
}
@media(max-width: 768px) {
  .legal-card {
    padding: 24px;
    margin-top: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

/* ============================================================
   LANDING PAGE NEW DESIGNS (Nationalities & Cities)
   ============================================================ */
.landing-page-hero {
  background: var(--cream);
  color: var(--dark);
  padding: 60px 0 0px;
  text-align: left;
}
.landing-page-hero .breadcrumb {
  justify-content: flex-start;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 18px;
}
.landing-page-hero .breadcrumb a {
  color: var(--brand);
}
.landing-page-hero .breadcrumb a:hover {
  color: var(--brand-dark);
}
.landing-page-hero .breadcrumb span {
  opacity: 0.5;
}
.landing-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 12px;
}
.landing-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
  max-width: 800px;
  margin-left: 0;
  margin-right: 0;
}
.landing-image-container {
  margin-top: 32px;
  margin-bottom: 32px;
}
.landing-main-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(46,49,146,0.08);
  display: block;
}
.landing-content-sec {
  background: var(--cream);
  padding: 20px 0 60px;
}
.landing-post-content {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  text-align: left;
}
.landing-post-content p {
  margin-bottom: 24px;
}
.landing-post-content h2, .landing-post-content h3 {
  font-family: var(--font-display);
  color: var(--dark);
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 18px;
  line-height: 1.35;
}
.landing-post-content h2 {
  font-size: clamp(20px, 2.8vw, 25px);
}
.landing-post-content h3 {
  font-size: clamp(17px, 2.3vw, 20px);
}
/* Beautiful Rounded vertical indicator on the left side of the heading */
.landing-post-content h2::before, .landing-post-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--gold);
  border-radius: 4px;
}

/* ============================================================
   USER CONTENT / EDITOR STYLING (LISTS, TABLES, QUOTES)
   ============================================================ */

.editor-content {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}
.editor-content p {
  margin-bottom: 22px;
}
.editor-content ul, .editor-content ol {
  margin: 0 0 22px 24px;
}
.editor-content ul {
  list-style-type: disc;
}
.editor-content ol {
  list-style-type: decimal;
}
.editor-content li {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 8px;
}
.editor-content h2, .editor-content h3 {
  font-family: var(--font-display);
  color: var(--dark);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 18px;
  line-height: 1.35;
}
.editor-content h2::before, .editor-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--gold);
  border-radius: 4px;
}
.editor-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.editor-content th {
  background-color: var(--brand-pale);
  color: var(--brand);
  font-weight: 600;
  text-align: left;
  padding: 14px 18px;
  border-bottom: 2px solid var(--border);
}
.editor-content td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.6;
}
.editor-content th:not(:last-child),
.editor-content td:not(:last-child) {
  border-right: 1px solid var(--border);
}
.editor-content tr:last-child td {
  border-bottom: none;
}
.editor-content tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.015);
}
.editor-content blockquote {
  border-left: 4px solid var(--brand);
  margin: 28px 0;
  padding: 18px 24px;
  background: var(--brand-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.editor-content blockquote p {
  margin: 0;
  color: var(--brand);
  font-style: italic;
  font-size: 16px;
}

/* --- SEO Rich Text --- */
.seo-rich-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}
.seo-rich-text p {
  margin-bottom: 16px;
}
.seo-rich-text h3 {
  font-size: 18px;
  color: var(--dark);
  margin: 24px 0 12px;
  font-weight: 600;
}
.seo-rich-text ul, .seo-rich-text ol {
  margin-bottom: 16px;
  padding-left: 20px;
}
.seo-rich-text li {
  margin-bottom: 6px;
}

/* --- ABOUT FLOATED LAYOUT --- */
.about-visual-container {
  float: right;
  width: 440px;
  margin-left: 36px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .about-visual-container {
    float: none;
    width: 100%;
    margin: 0 0 28px 0;
  }
  .about-visual {
    height: 280px !important;
  }
}





