/* =============================================
   SHAM GLOBAL SOURCING — MAIN STYLESHEET
   Version: 1.2.0
============================================= */

:root {
    --navy:      #0E1B4D;
    --navy2:     #162259;
    --navy3:     #1C2D70;
    --gold:      #C4901A;
    --gold2:     #D9A828;
    --gold3:     #F0C84A;
    --gold-pale: #FDF8EE;
    --white:     #FFFFFF;
    --off:       #F4F5F9;
    --border:    #D8DCEC;
    --text:      #0E1B4D;
    --text2:     #3D4775;
    --text3:     #7A82A8;
    --font-main: 'Cairo', sans-serif;
    --radius:    8px;
    --radius-lg: 12px;
    --tr:        0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
body.rtl { direction: rtl; }
body.ltr { direction: ltr; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button{ cursor: pointer; font-family: var(--font-main); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ---- SEC TAG ---- */
.sec-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.sec-tag-line { width: 28px; height: 3px; background: var(--gold); flex-shrink: 0; }
.sec-tag-txt  { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.sec-h2 { font-size: clamp(26px,3vw,38px); font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.sec-p  { font-size: 14px; color: var(--text2); line-height: 2; margin-bottom: 14px; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-main); font-weight: 700; font-size: 14px;
    padding: 13px 28px; border-radius: var(--radius); border: none;
    transition: var(--tr); cursor: pointer; white-space: nowrap;
}
.btn-gold       { background: var(--gold);  color: var(--white); }
.btn-gold:hover { background: var(--gold2); }
.btn-navy       { background: var(--navy);  color: var(--white); }
.btn-navy:hover { background: var(--navy3); }
.btn-white      { background: var(--white); color: var(--navy);  }
.btn-white:hover{ background: var(--off);   }
.btn-ghost-w    { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost-w:hover { border-color: rgba(255,255,255,0.6); }

/* =============================================
   TOP BAR
============================================= */
.topbar { background: var(--navy); border-bottom: 2px solid var(--gold); padding: 9px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-items { display: flex; gap: 24px; }
.topbar-item  { display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(255,255,255,0.7); }
.topbar-item svg { width: 13px; height: 13px; fill: var(--gold2); flex-shrink: 0; }
.topbar-right { display: flex; align-items: center; gap: 10px; }

.lang-switch { display: flex; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.ls-btn {
    padding: 5px 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.8px;
    color: rgba(255,255,255,0.5); border: none; background: none; cursor: pointer;
    transition: var(--tr); font-family: var(--font-main); text-decoration: none; display: block;
}
.ls-btn.active, .ls-btn:hover { background: var(--gold); color: var(--navy); }

/* =============================================
   NAV
============================================= */
.site-nav {
    background: var(--white); border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 12px rgba(14,27,77,0.06);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 70px; padding: 0 48px; max-width: 1200px; margin: 0 auto;
}
.site-logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.logo-mark {
    width: 44px; height: 44px; background: var(--navy); border-radius: 6px;
    display: grid; place-items: center; position: relative; flex-shrink: 0;
}
.logo-mark::after {
    content: ''; position: absolute; bottom: -3px; inset-inline-end: -3px;
    width: 44px; height: 44px; border: 2px solid var(--gold); border-radius: 6px; z-index: -1;
}
.logo-mark span  { font-size: 24px; font-weight: 900; color: var(--gold2); line-height: 1; }
.logo-texts      { line-height: 1.2; }
.logo-name       { font-size: 17px; font-weight: 900; color: var(--navy); display: block; }
.logo-sub        { font-size: 10px; font-weight: 500; color: var(--text3); letter-spacing: 1px; display: block; }

.nav-menu   { display: flex; gap: 4px; }
.nav-menu a { font-size: 13.5px; font-weight: 600; color: var(--text2); padding: 8px 14px; border-radius: 5px; transition: var(--tr); display: block; white-space: nowrap; }
.nav-menu a:hover, .nav-menu .current-menu-item > a { color: var(--navy); background: var(--off); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); display: block; transition: var(--tr); }

/* =============================================
   HERO
============================================= */
.hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: center;
}
.hero-bg-pattern {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        radial-gradient(ellipse at 70% 50%, rgba(201,150,26,0.10) 0%, transparent 55%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.012) 0, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 30px),
        repeating-linear-gradient(-45deg, rgba(255,255,255,0.012) 0, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 30px);
}

/* hero-inner: flex row — same container as all other sections */
.hero-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Content stretches, stats fixed width */
.hero-content { flex: 1; min-width: 0; }
.hero-stats   { width: 320px; flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; }

/* Separator between content and stats */
.hero-content {
    padding-inline-end: 48px;
    border-inline-end: 1px solid rgba(255,255,255,0.08);
}

/* Badge */
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,150,26,0.12);
    border: 1px solid rgba(201,150,26,0.3);
    color: var(--gold2);
    font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 14px; border-radius: 20px; margin-bottom: 24px; width: fit-content;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold2); border-radius: 50%; flex-shrink: 0; }

/* Title */
.hero-title { font-size: clamp(36px,4.5vw,60px); font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; }
.hero-title-gold { color: var(--gold3); }

/* Desc */
.hero-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.85; font-weight: 300; margin-bottom: 32px; max-width: 500px; }

/* Buttons */
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: #fff;
    font-size: 14px; font-weight: 700;
    padding: 13px 26px; border-radius: 7px; text-decoration: none;
    transition: background 0.2s, transform 0.15s; white-space: nowrap;
}
.hero-btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }

.hero-btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.85);
    font-size: 14px; font-weight: 600;
    padding: 13px 26px; border-radius: 7px;
    border: 1px solid rgba(255,255,255,0.18); text-decoration: none;
    transition: background 0.2s; white-space: nowrap;
}
.hero-btn-secondary svg { width: 15px; height: 15px; flex-shrink: 0; }
.hero-btn-secondary:hover { background: rgba(255,255,255,0.12); }

/* Trust */
.hero-trust { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.5); }
.hero-trust-item svg { width: 14px; height: 14px; fill: var(--gold2); flex-shrink: 0; }
.hero-trust-sep { width: 1px; height: 12px; background: rgba(255,255,255,0.15); }

/* Stats */
.hero-stat-featured {
    background: var(--gold); border-radius: 10px; padding: 22px 20px;
    display: flex; align-items: center; gap: 14px;
}
.hsf-num   { font-size: 48px; font-weight: 900; color: var(--navy); letter-spacing: -2px; line-height: 1; flex-shrink: 0; }
.hsf-label { font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.hsf-desc  { font-size: 11px; color: rgba(14,27,77,0.6); line-height: 1.4; }

.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-stat-grid .hero-stat-card:last-child { grid-column: 1 / -1; }

.hero-stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10px; padding: 16px 14px;
}
.hsc-num   { font-size: 30px; font-weight: 900; color: #fff; letter-spacing: -1px; line-height: 1; margin-bottom: 5px; }
.hero-stat-grid .hero-stat-card:last-child .hsc-num { font-size: 34px; }
.hsc-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.8); margin-bottom: 2px; }
.hsc-desc  { font-size: 10px; color: rgba(255,255,255,0.35); line-height: 1.4; }

/* =============================================
   GOLD STRIP
============================================= */
.gold-strip { background: var(--gold); overflow: hidden; border-top: 3px solid var(--gold3); border-bottom: 3px solid var(--gold3); }
.strip-track { display: flex; animation: stripScroll 22s linear infinite; white-space: nowrap; }
body.rtl .strip-track { animation-direction: reverse; }
.strip-item { display: inline-flex; align-items: center; gap: 14px; padding: 13px 32px; font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: 1.5px; text-transform: uppercase; flex-shrink: 0; }
.strip-sep  { width: 5px; height: 5px; background: var(--navy); transform: rotate(45deg); opacity: 0.35; flex-shrink: 0; }
@keyframes stripScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* =============================================
   STATS ROW
============================================= */
.stats-row   { background: var(--navy2); }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-col    { padding: 30px 24px; text-align: center; border-inline-end: 1px solid rgba(255,255,255,0.06); }
.stat-col:last-child { border-inline-end: none; }
.stat-big    { font-size: 42px; font-weight: 900; color: var(--gold2); letter-spacing: -2px; line-height: 1; }
.stat-lbl    { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 1px; margin-top: 6px; }

/* =============================================
   ABOUT
   KEY FIX: about-grid col order
   DOM: [text] [visual-card]
   LTR: text=left  visual=right
   RTL: direction:rtl → visual appears on LEFT, text on RIGHT ✓
============================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-points { margin: 22px 0; }
.ap { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.ap:last-child { border-bottom: none; }
.ap-check { width: 22px; height: 22px; background: var(--gold); border-radius: 4px; display: grid; place-items: center; flex-shrink: 0; font-size: 11px; color: var(--white); font-weight: 900; }
.ap-text  { font-size: 13.5px; font-weight: 600; color: var(--navy); }

.about-visual { background: var(--navy); border-radius: var(--radius-lg); overflow: hidden; }
.av-header    { background: var(--gold); padding: 24px 28px; }
.av-header-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: var(--navy); opacity: 0.7; margin-bottom: 4px; }
.av-header-val   { font-size: 13px; font-weight: 700; color: var(--navy); }
.av-body  { padding: 28px; }
.av-item  { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.av-item:last-child { border-bottom: none; }
/* KEY FIX: av-num always at inline-start */
.av-num   { font-size: 20px; font-weight: 900; color: var(--gold2); flex-shrink: 0; min-width: 26px; line-height: 1; }
.av-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.av-desc  { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.7; }

/* =============================================
   SERVICES
   KEY FIX: svc-num and icon align to inline-start
============================================= */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.svc-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 30px 26px; position: relative; overflow: hidden; transition: var(--tr);
}
.svc-card::after {
    content: ''; position: absolute; bottom: 0; inset-inline-start: 0; inset-inline-end: 0;
    height: 3px; background: var(--gold); transform: scaleX(0);
    transform-origin: inline-start; transition: transform 0.3s ease;
}
/* transform-origin doesn't take logical values — use separate rules */
body.ltr .svc-card::after { transform-origin: left; }
body.rtl .svc-card::after { transform-origin: right; }

.svc-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 14px 36px rgba(14,27,77,0.09); }
.svc-card:hover::after { transform: scaleX(1); }

/* svc-num: always inline-start aligned — direction:rtl on body handles this automatically */
.svc-num { font-size: 11px; font-weight: 700; color: var(--text3); letter-spacing: 2px; margin-bottom: 14px; }

/* KEY FIX: icon block — use margin-inline-end:auto to push to inline-start */
.svc-icon-wrap {
    width: 50px; height: 50px; background: var(--navy); border-radius: var(--radius);
    display: grid; place-items: center; margin-bottom: 18px;
    /* float to inline-start regardless of direction */
    margin-inline-end: auto;
}
.svc-icon-wrap svg { width: 23px; height: 23px; fill: var(--gold2); }
.svc-icon-wrap img { width: 24px; height: 24px; object-fit: contain; display: block; }
.svc-card h3 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.svc-card p  { font-size: 13px; color: var(--text2); line-height: 1.8; }

/* =============================================
   PROCESS
   KEY FIX: steps-grid columns
   DOM order: 01 02 03 04 05
   LTR: 01=left → 05=right
   RTL: direction:rtl reverses visual order → 01=right, 05=left ✓
   featured (.gold) should be step 01 in DOM = rightmost in RTL ✓
============================================= */
.process-section { background: var(--navy); position: relative; overflow: hidden; }
.proc-decor  { position: absolute; border-radius: 50%; pointer-events: none; }
.proc-decor-1 { bottom: -80px; inset-inline-end: -80px; width: 340px; height: 340px; border: 60px solid rgba(196,144,26,0.07); }
.proc-decor-2 { top: -60px; inset-inline-start: -60px; width: 260px; height: 260px; border: 50px solid rgba(255,255,255,0.02); }
.process-section .sec-tag-line { background: var(--gold2); }
.process-section .sec-tag-txt  { color: var(--gold2); }
.process-section .sec-h2       { color: var(--white); }

.steps-grid {
    display: grid; grid-template-columns: repeat(5,1fr);
    gap: 1px; background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg); overflow: hidden; margin-top: 48px;
}
.step-item { background: rgba(255,255,255,0.03); padding: 34px 22px; transition: background var(--tr); }
.step-item:hover    { background: rgba(255,255,255,0.06); }
.step-item.featured { background: var(--gold); }
.step-item.featured:hover { background: var(--gold2); }

.step-num  { font-size: 34px; font-weight: 900; color: rgba(255,255,255,0.07); letter-spacing: -2px; line-height: 1; margin-bottom: 18px; }
.step-item.featured .step-num   { color: rgba(14,27,77,0.15); }
.step-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-item.featured .step-title { color: var(--navy); }
.step-desc  { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.step-item.featured .step-desc  { color: rgba(14,27,77,0.55); }

/* =============================================
   WHY
============================================= */
.why-section { background: var(--gold-pale); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 44px; }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; }
/* KEY FIX: icon always at inline-start */
.why-icon {
    width: 46px; height: 46px; background: var(--navy); border-radius: var(--radius);
    display: grid; place-items: center; margin-bottom: 14px;
    margin-inline-end: auto; /* pushes to inline-start */
}
.why-icon svg { width: 22px; height: 22px; fill: var(--gold2); }
.why-card h4  { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.why-card p   { font-size: 13px; color: var(--text2); line-height: 1.8; }

/* =============================================
   MARKETS
   KEY FIX: flex row — direction:rtl already flips it,
   dot will appear on inline-start (right in RTL) ✓
============================================= */
.mkt-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 44px; }
.mkt-card {
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 18px 22px; display: flex; align-items: center; gap: 12px;
    background: var(--white); transition: var(--tr);
}
.mkt-card:hover { border-color: var(--gold); background: var(--gold-pale); }
.mkt-dot  { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.mkt-name { font-size: 14px; font-weight: 700; color: var(--navy); }

/* =============================================
   CTA
   KEY FIX: DOM order [text-col] [contact-card]
   LTR: text=left  card=right
   RTL: direction:rtl → text=right  card=left ✓
============================================= */
.cta-section { background: var(--navy2); border-top: 4px solid var(--gold); }
.cta-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.cta-h { font-size: clamp(28px,3vw,42px); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 14px; }
.cta-h .gold { color: var(--gold3); }
.cta-p    { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.9; margin-bottom: 28px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.cta-contact { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 30px; }
.cc-item { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cc-item:last-child { border-bottom: none; }
.cc-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: rgba(255,255,255,0.3); margin-bottom: 5px; }
.cc-val   { font-size: 14px; font-weight: 600; color: var(--white); }
.cc-val a { color: var(--gold2); }
/* KEY FIX: phone/email always LTR — numbers shouldn't reverse */
.cc-val.dir-ltr,
.cc-val[dir="ltr"] { direction: ltr; unicode-bidi: isolate; }

/* =============================================
   FOOTER
   KEY FIX: grid col order
   DOM: [brand] [services-col] [company-col]
   LTR: brand=left
   RTL: direction:rtl → brand=right, cols reverse ✓
============================================= */
/* =============================================
   FOOTER — REDESIGNED
============================================= */
.site-footer { background: var(--navy); }

/* ---- CTA Strip ---- */
.footer-cta-strip {
    background: var(--navy2);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 22px 0;
}
.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-cta-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.footer-cta-label {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}
.footer-cta-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}
.footer-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.footer-cta-wa {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700;
    color: #25D366; text-decoration: none;
    border: 1px solid rgba(37,211,102,0.3);
    border-radius: var(--radius); padding: 10px 18px;
    transition: background 0.2s;
}
.footer-cta-wa svg { width: 15px; height: 15px; }
.footer-cta-wa:hover { background: rgba(37,211,102,0.08); }

/* ---- Main Body ---- */
.footer-body { padding: 60px 0 48px; }
.footer-grid {
    display: grid;
    grid-template-columns: 340px 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* Brand col */
.footer-brand {}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-logo-mark {
    width: 40px; height: 40px;
    background: var(--gold);
    border-radius: 8px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.footer-logo-mark span {
    font-size: 20px; font-weight: 900;
    color: var(--navy); line-height: 1;
}
.footer-logo-name      { font-size: 18px; font-weight: 900; color: var(--white); line-height: 1.2; }
.footer-logo-name span { color: var(--gold2); }
.footer-logo-sub       { font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 1px; margin-top: 2px; }

.footer-about {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.85;
    margin-bottom: 22px;
    max-width: 300px;
}

/* Contact rows */
.footer-contacts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.footer-contact-row {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; transition: opacity 0.2s;
}
.footer-contact-row:hover { opacity: 0.8; }
.footer-contact-icon {
    width: 30px; height: 30px; border-radius: 6px;
    display: grid; place-items: center; flex-shrink: 0;
}
.footer-contact-icon svg { width: 14px; height: 14px; }
.fc-green { background: rgba(37,211,102,0.15); color: #25D366; }
.fc-gold  { background: rgba(196,144,26,0.15); color: var(--gold2); }
.fc-navy  { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); }
.footer-contact-val {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    line-height: 1.4;
}
.footer-contact-val[dir="ltr"] {
    direction: ltr; unicode-bidi: isolate; display: block;
}

/* Social */
.footer-social { margin-top: 4px; }

/* Nav cols */
.footer-col {}
.footer-col-title {
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold2); margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col-list,
.footer-col ul {
    display: flex; flex-direction: column;
    gap: 0; list-style: none;
}
.footer-col-list li,
.footer-col ul li {
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-col-list li:last-child,
.footer-col ul li:last-child { border-bottom: none; }
.footer-col-list a,
.footer-col ul a {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,0.55);
    text-decoration: none; padding: 9px 0;
    transition: color 0.2s;
}
.footer-col-list a::before,
.footer-col ul a::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
    transition: background 0.2s;
}
.footer-col-list a:hover,
.footer-col ul a:hover { color: var(--gold2); }
.footer-col-list a:hover::before,
.footer-col ul a:hover::before { background: var(--gold2); }

/* ---- Bottom Bar ---- */
.footer-bottom {
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
}
.footer-values {
    display: flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,0.2);
    letter-spacing: 1.5px; text-transform: uppercase;
}
.footer-values-dot {
    width: 3px; height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
}

/* =============================================
   WHATSAPP FLOAT
============================================= */
.whatsapp-float {
    position: fixed; bottom: 28px; inset-inline-end: 28px;
    width: 52px; height: 52px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 999; transition: transform var(--tr);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg   { width: 28px; height: 28px; fill: white; }

/* =============================================
   CONTACT FORM
============================================= */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group   { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--text2); letter-spacing: 0.5px; }
.form-group input,
.form-group textarea,
.form-group select {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 12px 16px; font-size: 14px; font-family: var(--font-main);
    color: var(--text); transition: border-color var(--tr); width: 100%;
    direction: inherit; text-align: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,144,26,0.12); }
.form-group textarea { min-height: 120px; resize: vertical; }
/* KEY FIX: tel/email always LTR */
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="url"] { direction: ltr; text-align: left; unicode-bidi: isolate; }

.form-notice { font-size: 13px; padding: 10px 14px; border-radius: var(--radius); display: none; }
.form-notice.success { background: #e6f7ef; color: #1a6b3c; display: block; }
.form-notice.error   { background: #fdecea; color: #8b1c1c; display: block; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .hero-inner           { flex-direction: column; gap: 32px; }
    .contact-grid         { grid-template-columns: 1fr; }
    .svc-detail-row       { grid-template-columns: 1fr; }
    .svc-detail-row--flip .svc-detail-icon,
    .svc-detail-row--flip .svc-detail-text  { order: unset; }
    .hero-content         { padding-inline-end: 0; border-inline-end: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 32px; }
    .hero-stats           { width: 100%; }
    .hero-stat-grid       { grid-template-columns: repeat(3, 1fr); }
    .hero-stat-grid .hero-stat-card:last-child { grid-column: auto; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .svc-grid   { grid-template-columns: repeat(2,1fr); }
    .why-grid   { grid-template-columns: repeat(2,1fr); }
    .steps-grid { grid-template-columns: repeat(3,1fr); }
    .cta-grid   { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .topbar-items { display: none; }
    .nav-menu     { display: none; }
    .nav-toggle   { display: flex; }
    .nav-menu.open {
        display: flex; flex-direction: column;
        position: absolute; top: 70px;
        inset-inline-start: 0; inset-inline-end: 0;
        background: var(--white); border-bottom: 1px solid var(--border);
        padding: 12px 20px; gap: 4px; z-index: 99;
        box-shadow: 0 8px 24px rgba(14,27,77,0.1);
    }
    .svc-grid     { grid-template-columns: 1fr; }
    .mkt-grid     { grid-template-columns: repeat(2,1fr); }
    .stats-inner  { grid-template-columns: repeat(2,1fr); }
    .why-grid     { grid-template-columns: 1fr; }
    .steps-grid   { grid-template-columns: 1fr 1fr; }
    .footer-grid  { grid-template-columns: 1fr; }
    .footer-cta-inner { flex-direction: column; align-items: flex-start; }
    .hero-content { padding: 48px 24px; }
    .container    { padding: 0 20px; }
    .nav-inner    { padding: 0 20px; }
}
@media (max-width: 480px) {
    .mkt-grid    { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: 1fr 1fr; }
    .steps-grid  { grid-template-columns: 1fr; }
    .hero-btns   { flex-direction: column; }
    .hero-btns .btn { justify-content: center; }
}

/* ---- LTR ISOLATION (phone, email, addresses) ---- */
.dir-ltr,
[dir="ltr"] { direction: ltr; unicode-bidi: isolate; }
body.rtl .dir-ltr,
body.rtl [dir="ltr"] { text-align: left; }
bdi { unicode-bidi: isolate; }

/* =============================================
   SOCIAL LINKS
============================================= */
.social-links { display: flex; gap: 8px; flex-wrap: wrap; }
.social-link {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    display: grid; place-items: center;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s;
    text-decoration: none;
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--gold2); color: var(--gold2); }
.social-link--facebook:hover  { border-color: #1877f2; color: #1877f2; }
.social-link--instagram:hover { border-color: #e1306c; color: #e1306c; }
.social-link--linkedin:hover  { border-color: #0a66c2; color: #0a66c2; }
.social-link--youtube:hover   { border-color: #ff0000; color: #ff0000; }
.social-link--twitter:hover   { border-color: #fff;    color: #fff; }
.social-link--tiktok:hover    { border-color: #69c9d0; color: #69c9d0; }
.social-link--telegram:hover  { border-color: #2ca5e0; color: #2ca5e0; }

/* In header topbar */
.topbar-social .social-link { width: 26px; height: 26px; border-radius: 4px; }
.topbar-social .social-link svg { width: 12px; height: 12px; }

/* =============================================
   BREADCRUMBS
============================================= */
.breadcrumbs { margin-bottom: 12px; }
.breadcrumbs ol { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.breadcrumbs li { font-size: 12px; color: rgba(255,255,255,0.45); }
.breadcrumbs a  { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--gold2); }
.breadcrumbs .bc-sep { color: rgba(255,255,255,0.25); font-size: 14px; }
.breadcrumbs .active { color: var(--gold2); }

/* =============================================
   BACK TO TOP
============================================= */
.back-to-top {
    position: fixed;
    bottom: 88px;
    inset-inline-end: 28px;
    width: 44px; height: 44px;
    background: var(--navy2);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    display: grid; place-items: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s, background 0.2s, transform 0.2s;
    font-family: var(--font-main);
}
.back-to-top svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.7); }
.back-to-top:hover { background: var(--gold); transform: translateY(-2px); }
.back-to-top:hover svg { stroke: var(--navy); }
.back-to-top.visible { opacity: 1; pointer-events: all; }

/* =============================================
   SINGLE POST CONTENT STYLES
============================================= */
/* =============================================
   SINGLE POST — FULL TYPOGRAPHY SYSTEM
============================================= */

/* Base */
.single-content {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text2);
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
/* body.rtl: content wrap aligns to right naturally */

/* Lead paragraph — first p after title gets bigger */
.single-content > p:first-of-type {
    font-size: 19px;
    line-height: 1.75;
    color: var(--text);
    font-weight: 400;
    margin-bottom: 28px;
}

/* Paragraphs */
.single-content p {
    margin-bottom: 20px;
}

/* Headings */
.single-content h1 {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    margin: 48px 0 16px;
    letter-spacing: -0.5px;
}
.single-content h2 {
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.25;
    margin: 44px 0 14px;
    letter-spacing: -0.3px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}
.single-content h3 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin: 36px 0 12px;
}
.single-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin: 28px 0 10px;
}
.single-content h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin: 24px 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.single-content h6 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text3);
    margin: 20px 0 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Links */
.single-content a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.single-content a:hover { color: var(--gold2); }

/* Strong / Em */
.single-content strong { font-weight: 700; color: var(--navy); }
.single-content em     { font-style: italic; color: var(--text); }
.single-content mark   { background: rgba(201,150,26,0.18); color: var(--navy); padding: 0 4px; border-radius: 3px; }

/* Lists */
.single-content ul,
.single-content ol {
    padding-inline-start: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}
.single-content ul li,
.single-content ol li {
    position: relative;
    padding-inline-start: 26px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text2);
}
/* Unordered — gold dot */
.single-content ul li::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}
/* Ordered — numbered */
.single-content ol {
    counter-reset: post-ol;
}
.single-content ol li {
    counter-increment: post-ol;
}
.single-content ol li::before {
    content: counter(post-ol);
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--navy);
    color: var(--gold2);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}
/* Nested lists */
.single-content ul ul,
.single-content ol ol,
.single-content ul ol,
.single-content ol ul {
    margin-top: 8px;
    margin-bottom: 0;
    padding-inline-start: 12px;
}
.single-content ul ul li::before { background: var(--border); }

/* Blockquote */
.single-content blockquote {
    margin: 36px 0;
    padding: 24px 28px;
    background: var(--navy);
    border-radius: var(--radius-lg);
    border-inline-start: 4px solid var(--gold);
    position: relative;
}
.single-content blockquote::before {
    content: 'C';
    position: absolute;
    top: -8px;
    inset-inline-start: 20px;
    font-size: 72px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    opacity: 0.4;
}
.single-content blockquote p {
    font-size: 18px;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}
.single-content blockquote cite {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold2);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: normal;
}
.single-content blockquote cite::before { content: '— '; }

/* Code */
.single-content code {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 7px;
    font-size: 14px;
    font-family: 'Courier New', Courier, monospace;
    color: var(--navy);
    word-break: break-all;
}
.single-content pre {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    overflow-x: auto;
    margin: 28px 0;
}
.single-content pre code {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    color: var(--gold3);
    word-break: normal;
}

/* Tables */
.single-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 14px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.single-content table thead { background: var(--navy); }
.single-content table thead th {
    padding: 12px 16px;
    text-align: start;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold2);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.single-content table tbody tr { border-bottom: 1px solid var(--border); }
.single-content table tbody tr:last-child { border-bottom: none; }
.single-content table tbody tr:nth-child(even) { background: var(--off); }
.single-content table tbody td { padding: 11px 16px; color: var(--text2); vertical-align: top; }
.single-content table tbody td strong { color: var(--navy); }

/* Images */
.single-content img {
    border-radius: var(--radius-lg);
    margin: 28px 0;
    width: 100%;
    height: auto;
    display: block;
}
.single-content figure {
    margin: 28px 0;
}
.single-content figure img { margin: 0; }
.single-content figcaption {
    font-size: 12px;
    color: var(--text3);
    text-align: center;
    margin-top: 8px;
    font-style: italic;
    line-height: 1.5;
}

/* Horizontal rule */
.single-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 44px 0;
}

/* Info / Warning / Note boxes — wp block classes */
.single-content .wp-block-info,
.single-content .note-box {
    background: rgba(55,138,221,0.08);
    border: 1px solid rgba(55,138,221,0.25);
    border-inline-start: 4px solid #378ADD;
    border-radius: var(--radius);
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 14px;
    color: var(--text);
}
.single-content .wp-block-info p,
.single-content .note-box p { margin: 0; }

/* Gutenberg alignment */
.single-content .alignleft  { float: inline-start; margin: 4px 24px 16px 0; }
.single-content .alignright { float: inline-end;   margin: 4px 0 16px 24px; }
.single-content .aligncenter { display: block; margin-inline: auto; text-align: center; }
.single-content .alignfull  { width: 100vw; margin-inline: calc(-50vw + 50%); border-radius: 0; }

/* WP Caption */
.single-content .wp-caption { max-width: 100%; }
.single-content .wp-caption-text { font-size: 12px; color: var(--text3); text-align: center; margin-top: 6px; font-style: italic; }

/* Dropcap — first letter */
.single-content.has-dropcap > p:first-of-type::first-letter {
    font-size: 72px;
    font-weight: 900;
    color: var(--navy);
    float: inline-start;
    line-height: 0.75;
    margin-inline-end: 8px;
    margin-top: 6px;
}

/* Reading progress feel — subtle bg on section headings */
.single-content h2 + p,
.single-content h3 + p { margin-top: 0; }

/* =============================================
   PAGE-SPECIFIC: SERVICES DETAIL ALTERNATING
============================================= */
.svc-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 72px;
}
/* Flip: icon on right, text on left (LTR) */
.svc-detail-row--flip .svc-detail-icon { order: 2; }
.svc-detail-row--flip .svc-detail-text  { order: 1; }

/* In RTL body: flip logic is already reversed by direction — so invert */
body.rtl .svc-detail-row--flip .svc-detail-icon { order: 1; }
body.rtl .svc-detail-row--flip .svc-detail-text  { order: 2; }

.svc-detail-icon {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.svc-detail-text { /* inherits direction from body */ }

/* =============================================
   PAGE-SPECIFIC: CONTACT PAGE
============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
    /* RTL: body.rtl reverses col order — form(1fr) stays inline-start ✓ */
}
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

/* form inputs inherit direction from body */
.contact-form-wrap input,
.contact-form-wrap textarea,
.contact-form-wrap select {
    text-align: inherit;
}
/* phone/email inputs always LTR */
.contact-form-wrap input[type="tel"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="url"] {
    direction: ltr;
    text-align: start;
}

.contact-info-col { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.contact-info-card-title {
    font-size: 11px; font-weight: 700;
    color: var(--gold2); letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 18px;
}

/* contact-channel: icon always at inline-start, text beside it */
.contact-channel {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 13px 16px;
    text-decoration: none; margin-bottom: 10px;
    transition: background 0.2s;
    /* flex direction follows body.rtl automatically */
}
.contact-channel:last-child { margin-bottom: 0; }
.contact-channel:hover { background: rgba(255,255,255,0.1); }

.contact-channel-icon {
    width: 40px; height: 40px; border-radius: 8px;
    display: grid; place-items: center; flex-shrink: 0;
}
.contact-channel-icon svg { width: 18px; height: 18px; }

.contact-channel-body { min-width: 0; }
.contact-channel-label {
    font-size: 10px; color: rgba(255,255,255,0.4);
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 3px;
}
.contact-channel-val {
    font-size: 14px; font-weight: 600; color: #fff;
}
/* phone/email values: always LTR regardless of page direction */
.contact-channel-val[dir="ltr"] {
    direction: ltr;
    unicode-bidi: isolate;
    display: block;
}

/* detail list */
.contact-detail-list { display: flex; flex-direction: column; gap: 0; }
.contact-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-detail-item:last-child { border-bottom: none; }
.contact-detail-label {
    font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px; text-transform: uppercase;
    flex-shrink: 0;
}
.contact-detail-val {
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-align: end; /* always align to inline-end — works in both LTR and RTL */
}

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

/* =============================================
   PAGE-SPECIFIC: HOW IT WORKS STEPS
============================================= */
.hiw-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}
.hiw-step:last-child { border-bottom: none; }
.hiw-step-num { text-align: center; }
.hiw-step-icon {
    width: 64px; height: 64px;
    background: var(--navy);
    border-radius: 50%;
    display: grid; place-items: center;
    border: 3px solid var(--gold);
    margin: 0 auto 8px;
}
.hiw-step-icon svg { width: 24px; height: 24px; fill: var(--gold2); }
.hiw-step-content h2 { margin-bottom: 8px; }
.hiw-step-highlight {
    font-size: 15px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px;
}
.hiw-check-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}
.hiw-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text2);
}
.hiw-check-list li::before {
    content: '';
    width: 18px; height: 18px;
    background: var(--gold-pale);
    border: 1px solid var(--gold);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23C4901A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* =============================================
   BLOG — POST CARD
============================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.post-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.post-card:hover { box-shadow: 0 12px 32px rgba(14,27,77,0.1); transform: translateY(-3px); }

.post-card-img {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--navy2);
}
.post-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card-img--no-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%); }

.post-card-cat {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
}
.post-card-body { padding: 22px 20px; display: flex; flex-direction: column; flex: 1; }
.post-card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.post-card-date, .post-card-author { font-size: 11px; color: var(--text3); font-weight: 500; }
.post-card-sep { width: 3px; height: 3px; background: var(--border); border-radius: 50%; }

.post-card-title { font-size: 16px; font-weight: 800; color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
.post-card-title a { text-decoration: none; color: inherit; transition: color 0.2s; }
.post-card-title a:hover { color: var(--gold); }

.post-card-excerpt { font-size: 13px; color: var(--text2); line-height: 1.75; flex: 1; margin-bottom: 16px; }

.post-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 700; color: var(--gold);
    text-decoration: none; margin-top: auto;
    transition: gap 0.2s;
}
.post-card-link svg { width: 14px; height: 14px; stroke: var(--gold); flex-shrink: 0; }
.post-card:hover .post-card-link { gap: 10px; }

/* Blog section head */
.blog-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0;
}
.blog-all-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 700; color: var(--navy);
    text-decoration: none; border-bottom: 1px solid var(--border);
    padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.blog-all-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.blog-all-link:hover { color: var(--gold); border-color: var(--gold); }

/* Pagination */
.blog-pagination { margin-top: 48px; }
.blog-pagination .nav-links { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.blog-pagination .page-numbers {
    width: 38px; height: 38px; border-radius: 6px;
    display: grid; place-items: center;
    font-size: 13px; font-weight: 600; color: var(--text2);
    border: 1px solid var(--border); text-decoration: none;
    transition: all 0.2s;
}
.blog-pagination .page-numbers:hover { border-color: var(--gold); color: var(--gold); }
.blog-pagination .page-numbers.current { background: var(--navy); color: #fff; border-color: var(--navy); }
.blog-pagination .page-numbers.dots { border: none; }

/* Empty state */
.blog-empty { text-align: center; padding: 60px 20px; }
.blog-empty p { font-size: 16px; color: var(--text2); margin-bottom: 24px; }


/* =============================================
   PAGE HERO — shared across archive, 404, search
============================================= */
.page-hero {
    background: var(--navy);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px,
        transparent 1px, transparent 28px
    );
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .sec-tag   { margin-top: 12px; }
.page-hero h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}
.page-hero p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    max-width: 600px;
}

/* =============================================
   SINGLE POST
============================================= */
.post-hero {
    background: var(--navy);
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.post-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(45deg,rgba(255,255,255,0.015) 0,rgba(255,255,255,0.015) 1px,transparent 1px,transparent 28px);
    pointer-events: none;
    z-index: 0;
}
.post-hero .container { position: relative; z-index: 1; }
.post-hero-cat {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 4px; text-decoration: none;
    margin-bottom: 16px; margin-top: 12px;
}
.post-hero-title {
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 900; color: #fff; line-height: 1.2;
    max-width: 760px; margin-bottom: 20px;
}
.post-hero-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.post-hero-meta-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.55); }
.post-hero-meta-item svg { width: 13px; height: 13px; fill: none; stroke: var(--gold2); stroke-width: 2; flex-shrink: 0; }
.post-hero-meta-sep { width: 3px; height: 3px; background: rgba(255,255,255,0.2); border-radius: 50%; }

/* Post layout: content + sidebar */
.post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 48px;
    align-items: start;
}
.post-content-wrap { min-width: 0; max-width: 720px; }
.post-thumbnail { margin-bottom: 36px; border-radius: var(--radius-lg); overflow: hidden; }
.post-thumbnail img { width: 100%; height: auto; display: block; }

/* Tags */
.post-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); }
.post-tags-label { font-size: 11px; font-weight: 700; color: var(--text3); letter-spacing: 1px; text-transform: uppercase; }
.post-tag {
    background: var(--off); border: 1px solid var(--border); border-radius: 20px;
    padding: 4px 14px; font-size: 12px; font-weight: 600; color: var(--text2);
    text-decoration: none; transition: all 0.2s;
}
.post-tag:hover { border-color: var(--gold); color: var(--gold); }

/* Post navigation */
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 40px; }
.post-nav-item {
    background: var(--off); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 16px 18px; text-decoration: none; display: flex; flex-direction: column; gap: 6px;
    transition: border-color 0.2s;
}
.post-nav-item:hover { border-color: var(--gold); }
.post-nav-next { text-align: end; }
.post-nav-dir { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; color: var(--text3); letter-spacing: 1.5px; text-transform: uppercase; }
.post-nav-next .post-nav-dir { justify-content: flex-end; }
.post-nav-dir svg { width: 12px; height: 12px; flex-shrink: 0; }
.post-nav-title { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.4; }

/* Sidebar */
.post-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }
.post-sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.post-sidebar-card-header { background: var(--navy); color: var(--gold2); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 12px 18px; }
.post-sidebar-card-body { padding: 18px; font-size: 13px; color: var(--text2); line-height: 1.7; }

.sidebar-post-list { list-style: none; }
.sidebar-post-item { display: flex; align-items: flex-start; gap: 10px; padding: 12px 18px; border-bottom: 1px solid var(--border); }
.sidebar-post-item:last-child { border-bottom: none; }
.sidebar-post-thumb { width: 56px; height: 56px; border-radius: 6px; overflow: hidden; flex-shrink: 0; display: block; }
.sidebar-post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sidebar-post-info { flex: 1; min-width: 0; }
.sidebar-post-title { display: block; font-size: 13px; font-weight: 700; color: var(--navy); text-decoration: none; line-height: 1.4; margin-bottom: 4px; }
.sidebar-post-title:hover { color: var(--gold); }
.sidebar-post-date { font-size: 11px; color: var(--text3); }

.sidebar-cat-list { list-style: none; }
.sidebar-cat-list li { border-bottom: 1px solid var(--border); }
.sidebar-cat-list li:last-child { border-bottom: none; }
.sidebar-cat-list a { display: flex; justify-content: space-between; align-items: center; padding: 11px 18px; font-size: 13px; font-weight: 600; color: var(--text2); text-decoration: none; transition: color 0.2s; }
.sidebar-cat-list a:hover { color: var(--gold); }
.sidebar-cat-count { background: var(--off); font-size: 11px; font-weight: 700; color: var(--text3); padding: 2px 8px; border-radius: 10px; }

/* =============================================
   RESPONSIVE — BLOG
============================================= */
@media (max-width: 1024px) {
    .post-layout { grid-template-columns: 1fr; }
    .post-sidebar { position: static; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
    .post-nav { grid-template-columns: 1fr; }
}

/* =============================================
   FLUENT FORMS — THEME INTEGRATION
   Overrides FF default styles to match SHAM brand
============================================= */

/* Grid row helper */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (max-width: 600px) {
    .form-row-2 { grid-template-columns: 1fr; }
}

/* ---- Fluent Forms wrapper ---- */
.fluentform,
.ff-el-form-control,
.ff-form-wrap {
    font-family: var(--font-main) !important;
}

/* Input / Textarea / Select */
.fluentform .ff-el-input--content input,
.fluentform .ff-el-input--content textarea,
.fluentform .ff-el-input--content select,
.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform input[type="tel"],
.fluentform input[type="url"],
.fluentform input[type="number"],
.fluentform textarea,
.fluentform select {
    background: var(--white) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-family: var(--font-main) !important;
    color: var(--text) !important;
    box-shadow: none !important;
    transition: border-color 0.2s !important;
    width: 100% !important;
    direction: inherit !important;
}
.fluentform input:focus,
.fluentform textarea:focus,
.fluentform select:focus {
    border-color: var(--gold) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(196,144,26,0.12) !important;
}

/* Labels */
.fluentform .ff-el-input--label label,
.fluentform label {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--text2) !important;
    margin-bottom: 6px !important;
    display: block !important;
    font-family: var(--font-main) !important;
    letter-spacing: 0.3px !important;
}

/* Submit button */
.fluentform .ff_submit_btn_container .ff-btn,
.fluentform button[type="submit"],
.fluentform input[type="submit"] {
    background: var(--gold) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: var(--radius) !important;
    padding: 13px 28px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: var(--font-main) !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    width: 100% !important;
    box-shadow: none !important;
}
.fluentform .ff-btn:hover,
.fluentform button[type="submit"]:hover {
    background: var(--gold2) !important;
}

/* Error messages */
.fluentform .error.text,
.fluentform .ff-el-input--error .text {
    color: #c0392b !important;
    font-size: 12px !important;
    margin-top: 4px !important;
    font-family: var(--font-main) !important;
}

/* Success message */
.fluentform .ff-message-success,
.ff_form_success_message {
    background: #e6f7ef !important;
    border: 1px solid #a3d9b8 !important;
    border-radius: var(--radius) !important;
    padding: 14px 18px !important;
    color: #1a6b3c !important;
    font-size: 14px !important;
    font-family: var(--font-main) !important;
}

/* Field groups spacing */
.fluentform .ff-el-group {
    margin-bottom: 16px !important;
}

/* Required asterisk */
.fluentform .ff-el-is-required .ff-el-input--label label::after {
    content: ' *';
    color: var(--gold);
}

/* Checkbox / Radio */
.fluentform input[type="checkbox"],
.fluentform input[type="radio"] {
    accent-color: var(--gold) !important;
    width: 16px !important;
    height: 16px !important;
}

/* =============================================
   POST CTA BLOCK
   Shown inside single posts — above related posts
============================================= */
.post-cta {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    margin: 48px 0;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}
.post-cta::before {
    content: '';
    position: absolute;
    top: -40px; inset-inline-end: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(201,150,26,0.15) 0%, transparent 65%);
    pointer-events: none;
}
.post-cta-text { position: relative; z-index: 1; }
.post-cta-tag {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 10px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold2);
    margin-bottom: 10px;
}
.post-cta-tag::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--gold2); border-radius: 50%;
}
.post-cta h3 {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 900; color: #fff;
    line-height: 1.25; margin-bottom: 8px;
}
.post-cta h3 span { color: var(--gold3); }
.post-cta p {
    font-size: 14px; color: rgba(255,255,255,0.6);
    line-height: 1.7; font-weight: 300; margin: 0;
}
.post-cta-actions {
    display: flex; flex-direction: column;
    gap: 10px; flex-shrink: 0;
    position: relative; z-index: 1;
}
.post-cta-actions .btn { white-space: nowrap; justify-content: center; }

/* ---- Inline form CTA (with embedded FF form) ---- */
.post-cta-form {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin: 48px 0;
}
.post-cta-form-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}
.post-cta-form-icon {
    width: 48px; height: 48px;
    background: var(--navy);
    border-radius: var(--radius);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.post-cta-form-icon svg { width: 22px; height: 22px; fill: var(--gold2); }
.post-cta-form-head h3 {
    font-size: 20px; font-weight: 800;
    color: var(--navy); margin-bottom: 5px;
}
.post-cta-form-head p {
    font-size: 13px; color: var(--text2);
    line-height: 1.6; margin: 0;
}

@media (max-width: 768px) {
    .post-cta { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
    .post-cta-actions { flex-direction: row; flex-wrap: wrap; }
    .post-cta-form { padding: 24px 20px; }
    .post-cta-form-head { flex-direction: column; gap: 12px; }
}

/* =============================================
   QUOTE MODAL
============================================= */
.quote-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.quote-modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.quote-modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.25s ease;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.quote-modal-overlay.is-open .quote-modal-box {
    transform: translateY(0) scale(1);
}

.quote-modal-close {
    position: absolute;
    top: 16px;
    inset-inline-end: 16px;
    width: 34px; height: 34px;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: grid; place-items: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}
.quote-modal-close:hover { background: var(--border); }
.quote-modal-close svg { width: 16px; height: 16px; stroke: var(--text2); }

.quote-modal-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 28px 28px 0;
}
.quote-modal-icon {
    width: 44px; height: 44px;
    background: var(--gold);
    border-radius: 10px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.quote-modal-icon svg { width: 20px; height: 20px; }
.quote-modal-title {
    font-size: 20px; font-weight: 900;
    color: var(--navy); margin-bottom: 4px;
    line-height: 1.2;
}
.quote-modal-sub {
    font-size: 13px; color: var(--text2);
    line-height: 1.5; margin: 0;
}

.quote-modal-form {
    padding: 24px 28px 28px;
}

/* Scrollbar inside modal */
.quote-modal-box::-webkit-scrollbar { width: 4px; }
.quote-modal-box::-webkit-scrollbar-track { background: transparent; }
.quote-modal-box::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

@media (max-width: 600px) {
    .quote-modal-head { flex-direction: column; gap: 10px; }
    .quote-modal-form { padding: 20px; }
}

/* =============================================
   SINGLE SERVICE PAGE
============================================= */

/* Back link */
.svc-back-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.5); text-decoration: none;
    margin-bottom: 22px; transition: color 0.2s;
}
.svc-back-link:hover { color: var(--gold2); }
.svc-back-link svg { width: 14px; height: 14px; }

/* Hero head */
.svc-hero-head {
    display: flex; align-items: center; gap: 20px;
}
.svc-hero-icon {
    width: 64px; height: 64px;
    background: var(--gold);
    border-radius: 14px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.svc-hero-icon svg { width: 32px; height: 32px; }
.svc-hero-icon img { width: 32px; height: 32px; object-fit: contain; display: block; }
.svc-hero-num {
    font-size: 11px; font-weight: 700;
    color: var(--gold2); letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 6px;
}
.svc-hero-title {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 900; color: #fff; line-height: 1.2;
    margin: 0;
}

/* Layout */
.svc-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
}

/* Main content */
.svc-main {}
.svc-desc {
    font-size: 16px; color: var(--text2);
    line-height: 1.9; margin-bottom: 36px;
}

/* Points */
.svc-points { margin-bottom: 36px; }
.svc-points-list {
    margin-top: 16px;
    display: flex; flex-direction: column;
    gap: 10px; list-style: none;
}
.svc-points-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; color: var(--text2); line-height: 1.75;
}
.svc-point-check {
    width: 22px; height: 22px;
    background: var(--gold); border-radius: 5px;
    display: grid; place-items: center;
    flex-shrink: 0; font-size: 11px;
    color: #fff; font-weight: 900;
    margin-top: 2px;
}

/* Inline CTA */
.svc-inline-cta {
    display: flex; align-items: center;
    justify-content: space-between; gap: 24px;
    background: var(--gold-pale);
    border: 1px solid #f0e0b0;
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.svc-inline-cta-text h3 {
    font-size: 18px; font-weight: 800;
    color: var(--navy); margin-bottom: 6px;
}
.svc-inline-cta-text p {
    font-size: 14px; color: var(--text2);
    line-height: 1.7; margin: 0;
    max-width: 380px;
}
.svc-inline-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* Sidebar */
.svc-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 88px; }

.svc-sidebar-card {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.svc-sidebar-title {
    font-size: 10px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--text3); padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    margin: 0;
}
.svc-sidebar-nav { display: flex; flex-direction: column; }

.svc-nav-item {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 18px; text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
    color: var(--text2);
    font-size: 13px; font-weight: 500;
}
.svc-nav-item:last-child { border-bottom: none; }
.svc-nav-item:hover { background: var(--border); color: var(--navy); }
.svc-nav-item.active {
    background: var(--navy);
    color: #fff; font-weight: 700;
}
.svc-nav-icon {
    width: 20px; height: 20px; flex-shrink: 0;
    display: grid; place-items: center;
}
.svc-nav-icon svg { width: 16px; height: 16px; fill: currentColor; }
.svc-nav-icon img { width: 16px; height: 16px; object-fit: contain; display: block; }
.svc-nav-num {
    font-size: 10px; font-weight: 700;
    color: var(--text3); width: 20px;
    flex-shrink: 0; text-align: center;
}
.svc-nav-item.active .svc-nav-num { color: var(--gold2); }
.svc-nav-label { flex: 1; }
.svc-nav-active-dot {
    width: 6px; height: 6px;
    background: var(--gold2);
    border-radius: 50%; flex-shrink: 0;
}

/* Sidebar CTA */
.svc-sidebar-cta {
    background: var(--navy);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.svc-sidebar-cta-body { padding: 22px; }
.svc-sidebar-cta-body h4 {
    font-size: 15px; font-weight: 800;
    color: #fff; margin-bottom: 8px;
}
.svc-sidebar-cta-body p {
    font-size: 13px; color: rgba(255,255,255,0.5);
    line-height: 1.65; margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .svc-layout { grid-template-columns: 1fr; }
    .svc-sidebar { position: static; }
}
@media (max-width: 768px) {
    .svc-hero-head { flex-direction: column; align-items: flex-start; gap: 14px; }
    .svc-inline-cta { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   UTILITY CLASSES — replace inline styles
============================================= */

/* Background helpers */
.bg-white     { background: var(--white) !important; }
.bg-off       { background: var(--off) !important; }
.bg-navy      { background: var(--navy) !important; }
.bg-gold-pale { background: var(--gold-pale) !important; }

/* Page hero variants */
.page-hero--centered .container,
.page-hero--centered .page-hero-h1,
.page-hero--centered .page-hero-p,
.page-hero--centered .sec-tag { text-align: center; }
.page-hero--centered .sec-tag { justify-content: center; }

.page-hero--center-v {
    min-height: 50vh;
    display: flex;
    align-items: center;
}
.page-hero--center-v .container { text-align: center; }

/* page-hero shared typography */
.page-hero-h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}
.page-hero-p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    max-width: 600px;
}
.page-hero--centered .page-hero-p { margin-inline: auto; }

/* sec-tag variants */
.sec-tag--center { justify-content: center; }
.sec-tag--mt     { margin-top: 12px; }

/* 404 number */
.error-404-num {
    font-family: var(--font-main);
    font-size: 120px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -6px;
    line-height: 1;
    margin-bottom: 16px;
}

/* Button modifier classes */
.btn--sm   { font-size: 13px !important; padding: 10px 20px !important; }
.btn--full { width: 100%; justify-content: center; }
.mt-sm     { margin-top: 14px; }
.mb-sm     { margin-bottom: 6px !important; }

/* Form intro text */
.form-intro-text {
    font-size: 13px;
    color: var(--text3);
    margin-bottom: 28px;
}

/* Search highlight */
.search-highlight { color: var(--gold3); font-style: italic; }

/* Icon size helpers */
.icon-sm { width: 15px; height: 15px; }
.icon-md { width: 18px; height: 18px; }

/* Blog grid spacing variant */
.blog-grid--spaced { margin-top: 32px; }

/* Section centered content */
.section--centered { text-align: center; }
.section--centered .sec-h2,
.section--centered .sec-tag { text-align: center; }
.section--centered .sec-tag { justify-content: center; }

/* =============================================
   PAGE-SPECIFIC CSS CLASSES
   (replacing inline styles)
============================================= */

/* ---- About: Vision / Mission ---- */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.vm-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 40px; }
.vm-icon { width: 48px; height: 48px; background: var(--gold); border-radius: var(--radius); display: grid; place-items: center; margin-bottom: 20px; }
.vm-icon svg { width: 22px; height: 22px; }
.vm-title { font-size: 20px; font-weight: 800; color: var(--gold2); margin-bottom: 14px; }
.vm-text  { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.9; font-weight: 300; margin: 0; }

/* About: value number */
.val-num { font-size: 28px; font-weight: 900; color: var(--gold); margin-bottom: 12px; line-height: 1; }

/* ---- Narrow container ---- */
.container--narrow { max-width: 720px; }
.text-center { text-align: center; }
.text-center .sec-tag { justify-content: center; }

/* ---- Services page ---- */
.svc-detail-icon-box { width: 64px; height: 64px; background: var(--navy); border-radius: var(--radius); display: grid; place-items: center; }
.svc-detail-icon-box svg { width: 34px; height: 34px; }
.svc-num-badge { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.svc-details-link { font-size: 13px; font-weight: 700; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; }
.svc-details-link:hover { color: var(--gold2); }
.svc-point-text { font-size: 13px; color: var(--text2); line-height: 1.75; }
.svc-divider { border: none; border-top: 1px solid var(--border); margin: 60px 0; }

/* ---- How It Works page ---- */
.hiw-step-counter { font-size: 11px; font-weight: 700; color: var(--text3); letter-spacing: 1px; }
.hiw-handles-label { font-size: 13px; font-weight: 700; color: var(--text3); margin-bottom: 10px; }
.hiw-handles-list { display: flex; flex-direction: column; gap: 8px; }
.hiw-handle-item { display: flex; align-items: center; gap: 10px; }

/* ---- Markets page ---- */
.markets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.market-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: border-color 0.2s, transform 0.2s; }
.market-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.market-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.market-dot { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.market-name { font-size: 16px; font-weight: 800; color: var(--navy); margin: 0; }
.market-countries { font-size: 12px; color: var(--text3); margin: 0 0 8px; }
.market-desc { font-size: 13px; color: var(--text2); line-height: 1.7; margin: 0; }

/* ---- Why China page ---- */
.why-china-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 16px; }
.why-china-card { background: var(--off); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; }
.why-china-num   { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.why-china-title { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.why-china-desc  { font-size: 14px; color: var(--text2); line-height: 1.8; margin: 0; }

/* ---- Responsive additions ---- */
@media (max-width: 768px) {
    .vm-grid       { grid-template-columns: 1fr; }
    .markets-grid  { grid-template-columns: repeat(2, 1fr); }
    .why-china-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .markets-grid  { grid-template-columns: 1fr; }
}

/* Extra utility classes */
.bg-navy   { background: var(--navy) !important; }
.mt-md     { margin-top: 20px; }
.hiw-step-content-wrap { background: var(--white); padding: 28px 0; }
.hiw-check {
    width: 18px; height: 18px; flex-shrink: 0;
    background: var(--gold-pale); border: 1px solid var(--gold);
    border-radius: 4px; display: grid; place-items: center;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23C4901A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 11px; background-repeat: no-repeat; background-position: center;
    font-size: 0;
}

/* Final utility classes */
.section--min  { min-height: 60vh; }
.page-main     { padding: 80px 0; min-height: 60vh; }
.mb-lg         { margin-bottom: 28px; }

/* =============================================
   FINAL UTILITY — from inline cleanup
============================================= */
.hiw-handles-wrap   { margin-top: 18px; }
.svc-page-icon      { width: 76px; height: 76px; background: var(--navy); border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; }
.svc-page-icon svg  { width: 34px; height: 34px; }
.svc-page-bignum    { font-size: 56px; font-weight: 900; color: var(--border); letter-spacing: -4px; line-height: 1; }
.sec-h2--lg         { font-size: clamp(22px, 2.5vw, 32px) !important; }

.cc-val--addr { font-size: 13px; line-height: 1.65; }

/* =============================================
   GALLERY COMPONENT
============================================= */
.sham-gallery { margin-top: 32px; }

/* Grid layouts */
.sham-gallery-grid {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}
.sham-gallery-grid--2 { grid-template-columns: repeat(2, 1fr); }
.sham-gallery-grid--3 { grid-template-columns: repeat(3, 1fr); }
.sham-gallery-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Gallery item — button for accessibility */
.sham-gallery-item {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--off);
    border: none;
    padding: 0;
    cursor: zoom-in;
}
.sham-gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    margin: 0;
    border-radius: 0;
}
.sham-gallery-item:hover img { transform: scale(1.06); }

/* Overlay on hover */
.sham-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14,27,77,0.5);
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.sham-gallery-item:hover .sham-gallery-overlay { opacity: 1; }
.sham-gallery-overlay svg {
    width: 28px; height: 28px;
    stroke: #fff;
}

/* Caption */
.sham-gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: #fff;
    font-size: 12px;
    padding: 20px 12px 10px;
    text-align: start;
    line-height: 1.4;
}

/* Context variants */
.sham-gallery--service  { margin-bottom: 8px; }
.sham-gallery--about .sham-gallery-item { aspect-ratio: 16/10; }
.sham-gallery--shipments .sham-gallery-item { aspect-ratio: 1; }

/* =============================================
   LIGHTBOX
============================================= */
.sham-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.sham-lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}
.sham-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    cursor: zoom-out;
}
.sham-lightbox-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    padding: 0 72px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.sham-lightbox-img-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.sham-lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
    display: block;
    transform: scale(0.95);
    transition: transform 0.25s ease;
    margin: 0;
}
.sham-lightbox.is-open .sham-lightbox-img { transform: scale(1); }

/* Loader */
.sham-lightbox-loader {
    position: absolute;
    inset: 0;
    display: none;
    place-items: center;
}
.sham-lightbox-loader.is-loading { display: grid; }
.sham-lightbox-spinner {
    width: 36px; height: 36px;
    border: 3px solid rgba(255,255,255,0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Nav buttons */
.sham-lightbox-prev,
.sham-lightbox-next,
.sham-lightbox-close {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s;
    flex-shrink: 0;
}
.sham-lightbox-prev:hover,
.sham-lightbox-next:hover,
.sham-lightbox-close:hover { background: rgba(255,255,255,0.2); }

.sham-lightbox-prev,
.sham-lightbox-next { width: 48px; height: 48px; }
.sham-lightbox-prev svg,
.sham-lightbox-next svg { width: 22px; height: 22px; }

.sham-lightbox-close {
    position: absolute;
    top: -48px;
    inset-inline-end: 0;
    width: 36px; height: 36px;
}
.sham-lightbox-close svg { width: 16px; height: 16px; }

/* Footer */
.sham-lightbox-footer {
    position: absolute;
    bottom: -36px;
    left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}
.sham-lightbox-caption {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}
.sham-lightbox-counter {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    flex-shrink: 0;
}

/* Gallery wrapper in service page */
.svc-gallery-wrap { margin: 36px 0; }

/* Responsive */
@media (max-width: 1024px) {
    .sham-gallery-grid--4 { grid-template-columns: repeat(3, 1fr); }
    .sham-lightbox-inner  { padding: 0 56px; }
}
@media (max-width: 768px) {
    .sham-gallery-grid--3,
    .sham-gallery-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .sham-lightbox-inner  { padding: 0 44px; }
    .sham-lightbox-prev,
    .sham-lightbox-next   { width: 38px; height: 38px; }
}
@media (max-width: 480px) {
    .sham-gallery-grid--2,
    .sham-gallery-grid--3,
    .sham-gallery-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .sham-lightbox-inner  { padding: 0 40px; }
}

/* =============================================
   HOME GALLERY SECTION
============================================= */
.home-gallery-section { background: var(--navy); }

.home-gallery-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    gap: 24px;
    flex-wrap: wrap;
}
.home-gallery-head .sec-h2 { color: #fff; margin-bottom: 0; }
.home-gallery-head .sec-tag-txt { color: var(--gold2); }
.home-gallery-head .sec-tag-line { background: var(--gold2); }

.home-gallery-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}
.home-gallery-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}
.home-gallery-trust-item svg {
    width: 14px; height: 14px;
    stroke: var(--gold2); flex-shrink: 0;
}

/* Grid migrated to bento — see below */
.hg-item--tall { grid-row: span 2; }
.hg-item--wide { grid-column: span 2; }

/* hg-item migrated to bento-cell */

/* Responsive */
@media (max-width: 1024px) {
    .home-gallery-trust { flex-direction: row; flex-wrap: wrap; }
    .home-gallery-head  { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
    .home-gallery-grid--6,
    .home-gallery-grid--7,
    .home-gallery-grid--8,
    .home-gallery-grid--9 { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .hg-item--tall  { grid-row: auto; }
    .hg-item--wide  { grid-column: auto; }
}
@media (max-width: 480px) {
    .home-gallery-grid--6,
    .home-gallery-grid--7,
    .home-gallery-grid--8,
    .home-gallery-grid--9 { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 6px; }
}

/* =============================================
   LOGO IMAGE — when uploaded via Customizer
============================================= */
.site-logo img {
    display: block;
    width: auto;
    max-width: 220px;   /* prevents oversized logos */
    object-fit: contain;
    /* NO filter — raw image as uploaded */
}

/* Footer logo image */
.footer-logo img {
    display: block;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    /* NO filter */
}

/* When image logo present, hide the mark::after decorator */
.site-logo img ~ .logo-mark::after { display: none; }

/* =============================================
   HOME GALLERY — BENTO GRID
============================================= */
.home-gallery-section { background: var(--navy); }

.home-gallery-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    gap: 24px;
    flex-wrap: wrap;
}
.home-gallery-head .sec-h2    { color: #fff; margin-bottom: 0; }
.home-gallery-head .sec-tag-txt  { color: var(--gold2); }
.home-gallery-head .sec-tag-line { background: var(--gold2); }

.home-gallery-trust { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.home-gallery-trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,0.5);
}
.home-gallery-trust-item svg { width: 13px; height: 13px; stroke: var(--gold2); flex-shrink: 0; }

/* ---- Bento Grid ---- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
}

/* Cell span classes */
.bento-cell--1x1 { grid-column: span 1; grid-row: span 1; }
.bento-cell--2x1 { grid-column: span 2; grid-row: span 1; }
.bento-cell--1x2 { grid-column: span 1; grid-row: span 2; }
.bento-cell--2x2 { grid-column: span 2; grid-row: span 2; }
.bento-cell--3x1 { grid-column: span 3; grid-row: span 1; }
.bento-cell--4x1 { grid-column: span 4; grid-row: span 1; }

/* Cell base */
.bento-cell {
    position: relative;
    display: block;
    width: 100%; height: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: var(--navy2);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 0;
    cursor: zoom-in;
}
.bento-cell img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    margin: 0; border-radius: 0;
}
.bento-cell:hover img { transform: scale(1.06); }

/* Overlay */
.bento-overlay {
    position: absolute; inset: 0;
    background: rgba(14,27,77,0.5);
    display: grid; place-items: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.bento-cell:hover .bento-overlay { opacity: 1; }
.bento-overlay svg { width: 26px; height: 26px; stroke: #fff; }

/* Caption */
.bento-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.72));
    color: #fff; font-size: 12px;
    padding: 28px 14px 12px;
    text-align: start; line-height: 1.4;
}

/* Fewer images — simpler layouts */
.bento-grid--1 { grid-template-columns: 1fr; grid-auto-rows: 400px; }
.bento-grid--2 { grid-template-columns: 1fr 1fr; grid-auto-rows: 320px; }
.bento-grid--3 { grid-template-columns: repeat(3,1fr); grid-auto-rows: 280px; }

/* For 1-3 images, override spans to 1x1 */
.bento-grid--1 .bento-cell,
.bento-grid--2 .bento-cell,
.bento-grid--3 .bento-cell { grid-column: span 1 !important; grid-row: span 1 !important; }

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
    .bento-cell--2x2 { grid-column: span 2; grid-row: span 2; }
    .bento-cell--3x1 { grid-column: span 3; }
    .bento-cell--4x1 { grid-column: span 3; }
    .home-gallery-trust { flex-direction: row; flex-wrap: wrap; }
    .home-gallery-head  { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 7px; }
    .bento-cell--2x2 { grid-column: span 2; grid-row: span 2; }
    .bento-cell--1x2 { grid-column: span 1; grid-row: span 2; }
    .bento-cell--2x1,
    .bento-cell--3x1,
    .bento-cell--4x1 { grid-column: span 2; }
}
@media (max-width: 400px) {
    .bento-grid { grid-auto-rows: 120px; gap: 6px; }
}


/* =============================================
   SERVICE CARD — anchor/link fixes
============================================= */
a.svc-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
a.svc-card:hover { text-decoration: none; color: inherit; }

/* Single service hero sub-headline */
.svc-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    line-height: 1.6;
    margin-top: 10px;
    max-width: 580px;
}
